parent
ba2ec8339b
commit
6fad6e800f
|
@ -62,7 +62,10 @@ Chevereto has a built-in system that everyday checks for new updates via the [Ch
|
|||
To upgrade to our paid edition simply navigate to your dashboard panel and click on the `upgrade` button.
|
||||
|
||||
## Support
|
||||
Chevereto Free doesn't include any kind of support. However, feel free to browse all our [support tickets](https://chevereto.com/tech-support). If you need further assistance consider buying our paid edition.
|
||||
Chevereto Free is forked from previous paid releases and it inheriths not only the new features and improvements, but also the bugs at that prior stage of development. Since this edition is always several months behind the paid edition, **any support request or bug reporting is ignored**.
|
||||
|
||||
## License
|
||||
Copyright [Rodolfo Berríos](http://rodolfoberrios.com) - Released under the AGPLv3 license. The software is offered on an “as-is” basis and no warranty, either expressed or implied, is given.
|
||||
Copyright [Rodolfo Berríos](http://rodolfoberrios.com) - Released under the AGPLv3 license.
|
||||
|
||||
## Warranty
|
||||
This software doesn't include support, it may contain bugs, use it at your own risk. The software is offered on an “as-is” basis and no warranty, either expressed or implied, is given.
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
define('G_APP_NAME', 'Chevereto Free');
|
||||
define('G_APP_VERSION', '1.0.11');
|
||||
define('G_APP_VERSION', '1.0.12');
|
||||
define('G_APP_GITHUB_OWNER', 'Chevereto');
|
||||
define('G_APP_GITHUB_REPO', 'Chevereto-Free');
|
||||
define('G_APP_GITHUB_REPO_URL', 'https://github.com/' . G_APP_GITHUB_OWNER . '/' . G_APP_GITHUB_REPO);
|
||||
|
|
|
@ -234,7 +234,7 @@ try {
|
|||
'upload_max_image_height'=> '0',
|
||||
],
|
||||
// 3.9.5
|
||||
'1.0.9' => [
|
||||
'1.0.9' => [
|
||||
'auto_delete_guest_uploads' => NULL,
|
||||
],
|
||||
'1.0.10' => [
|
||||
|
@ -242,13 +242,15 @@ try {
|
|||
'enable_plugin_route' => 1,
|
||||
'sdk_pup_url' => NULL,
|
||||
],
|
||||
'1.0.11' => NULL,
|
||||
'1.0.12' => NULL,
|
||||
];
|
||||
// Settings that must be renamed from NAME to NEW NAME and DELETE old NAME
|
||||
$settings_rename = [];
|
||||
|
||||
|
||||
// Settings that must be renamed from NAME to NEW NAME and doesn't delete old NAME
|
||||
$settings_switch = [];
|
||||
|
||||
|
||||
$chv_initial_settings = [];
|
||||
foreach($settings_updates as $k => $v) {
|
||||
if(is_null($v)) continue;
|
||||
|
|
Loading…
Reference in New Issue