From 0e057bb13d8c10e8b004f9e9734e2b514a3969d2 Mon Sep 17 00:00:00 2001 From: Antony Male Date: Thu, 31 Dec 2020 10:48:34 +0000 Subject: [PATCH] Update version_check.php --- server/version_check.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/version_check.php b/server/version_check.php index e011755f..0d6d56b7 100644 --- a/server/version_check.php +++ b/server/version_check.php @@ -47,7 +47,7 @@ */ set_error_handler('error_handler'); -date_default_timezone_set('UCT'); +date_default_timezone_set('UTC'); header('Content-Type: application/json'); function error_handler($severity, $message, $filename, $lineno) @@ -65,7 +65,7 @@ function get_with_wildcard($src, $value, $default = null) } $versions = [ - '1.1.25' => [ + '1.1.26' => [ 'base_url' => 'https://github.com/canton7/SyncTrayzor/releases/download', 'installed' => [ 'direct_download_url' => [ @@ -82,7 +82,7 @@ function get_with_wildcard($src, $value, $default = null) 'sha1sum_download_url' => "{base_url}/v{version}/sha1sum.txt.asc", 'sha512sum_download_url' => "{base_url}/v{version}/sha512sum.txt.asc", 'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v{version}', - 'release_notes' => "- Add touch support\n- Minor UI updates (#538, #540, #541, #543)", + 'release_notes' => "- Add touch support\n- Minor UI updates (#538, #540, #541, #543)\n- Uninstaller tries to remove autostart registry keys (#586)", ], '1.1.21' => [ 'base_url' => 'https://synctrayzor.antonymale.co.uk/download', @@ -106,7 +106,7 @@ function get_with_wildcard($src, $value, $default = null) ]; $upgrades = [ - // No point in upgrading from 1.1.23 for something so minor + '1.1.25' => ['to' => 'latest', 'formatter' => '5', 'overrides' => ['release_notes' => "- Fix the problems in v1.1.25 (#594, #595, #596, #597)\n- Uninstaller tries to remove autostart registry keys (#586)"]], '1.1.24' => ['to' => 'latest', 'formatter' => '5'], '1.1.23' => ['to' => 'latest', 'formatter' => '5'], '1.1.22' => ['to' => 'latest', 'formatter' => '5'],