Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
alextselegidis committed Dec 9, 2020
2 parents 8c836bf + 9133aee commit f4ab6ee
Show file tree
Hide file tree
Showing 189 changed files with 4,085 additions and 2,389 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
/assets/js/**/*.min.js
/assets/css/**/*.min.css
/config.php
/storage/backups/*
!/storage/backups/.htaccess
!/storage/backups/index.html
/storage/cache/*
!/storage/cache/.htaccess
!/storage/cache/index.html
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This file contains the code changes that were introduced into each release (starting from v1.1.0) so that is easy for
developers to maintain and readjust their custom modifications on the main project codebase.

## [1.4.0] - TBA
## [1.4.0] - 2020-12-09

### Added

Expand Down
6 changes: 3 additions & 3 deletions application/config/autoload.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
| -------------------------------------------------------------------
Expand Down Expand Up @@ -30,7 +30,7 @@

/*
| -------------------------------------------------------------------
| Auto-load Packges
| Auto-load Packages
| -------------------------------------------------------------------
| Prototype:
|
Expand All @@ -53,7 +53,7 @@
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/

$autoload['libraries'] = ['database'];
$autoload['libraries'] = ['database', 'session'];


/*
Expand Down
8 changes: 4 additions & 4 deletions application/config/config.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
|--------------------------------------------------------------------------
Expand All @@ -9,7 +9,7 @@
|
*/
$config['version'] = '1.4.0'; // This must be changed manually.
$config['release_label'] = 'Beta.1'; // Leave empty for no title or add Alpha, Beta etc ...
$config['release_label'] = ''; // Leave empty for no title or add Alpha, Beta etc ...
$config['debug'] = Config::DEBUG_MODE;

/*
Expand Down Expand Up @@ -304,7 +304,7 @@
| new release.
|
*/
$config['cache_busting_token'] = '824HX';
$config['cache_busting_token'] = '729RF';

/*
|--------------------------------------------------------------------------
Expand All @@ -315,7 +315,7 @@
| MUST set an encryption key. See the user guide for info.
|
*/
$config['encryption_key'] = Config::BASE_URL;
$config['encryption_key'] = base64_encode(APPPATH);

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion application/config/constants.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion application/config/database.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
| -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion application/config/doctypes.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

$_doctypes = [
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
Expand Down
6 changes: 3 additions & 3 deletions application/config/email.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

// Add custom values by settings them to the $config array.
// Example: $config['smtp_host'] = 'smtp.gmail.com';
// Example: $config['smtp_host'] = 'smtp.gmail.com';
// @link https://codeigniter.com/user_guide/libraries/email.html

$config['useragent'] = 'Easy!Appointments';
$config['protocol'] = 'mail'; // or 'smtp'
$config['mailtype'] = 'html'; // or 'text'
// $config['smtp_host'] = '';
// $config['smtp_user'] = '';
// $config['smtp_user'] = '';
// $config['smtp_pass'] = '';
// $config['smtp_crypto'] = 'ssl'; // or 'tls'
// $config['smtp_port'] = 25;
2 changes: 1 addition & 1 deletion application/config/foreign_chars.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
| -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion application/config/hooks.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
| -------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions application/config/migration.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php defined('BASEPATH') or exit('No direct script access allowed');

/*
|--------------------------------------------------------------------------
Expand All @@ -21,7 +21,7 @@
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 20;
$config['migration_version'] = 21;


/*
Expand Down
Loading

0 comments on commit f4ab6ee

Please sign in to comment.