Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
v1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rodber committed Apr 22, 2018
1 parent ba2ec83 commit 6fad6e8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion app/app.php
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
8 changes: 5 additions & 3 deletions app/install/installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,21 +234,23 @@
'upload_max_image_height'=> '0',
],
// 3.9.5
'1.0.9' => [
'1.0.9' => [
'auto_delete_guest_uploads' => NULL,
],
'1.0.10' => [
'enable_user_content_delete' => 1,
'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;
Expand Down

0 comments on commit 6fad6e8

Please sign in to comment.