Browse Source

Update version_check.php

Antony Male 9 years ago
parent
commit
44634d80d4
1 changed files with 8 additions and 7 deletions
  1. 8 7
      server/version_check.php

+ 8 - 7
server/version_check.php

@@ -65,26 +65,27 @@ function get_with_wildcard($src, $value, $default = null)
 }
 
 $versions = [
-   '1.1.3' => [
+   '1.1.4' => [
       'installed' => [
          'direct_download_url' => [
-            'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.3/SyncTrayzorSetup-x64.exe',
-            'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.3/SyncTrayzorSetup-x86.exe',
+            'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.4/SyncTrayzorSetup-x64.exe',
+            'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.4/SyncTrayzorSetup-x86.exe',
          ],
       ],
       'portable' => [
          'direct_download_url' => [
-            'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.3/SyncTrayzorPortable-x64.zip',
-            'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.3/SyncTrayzorPortable-x86.zip',
+            'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.4/SyncTrayzorPortable-x64.zip',
+            'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.4/SyncTrayzorPortable-x86.zip',
          ],
       ],     
-      'sha1sum_download_url' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.3/sha1sum.txt.asc',
-      'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v1.1.3',
+      'sha1sum_download_url' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.1.4/sha1sum.txt.asc',
+      'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v1.1.4',
       'release_notes' => "- Disable devices which connect over a metered network (#167)\n- Don't report conflict files in the .stversions folder (#203)\n- Add a 'Browse' button (which opens a folder browser) to Syncthing's 'Add folder' dialog (#78)\n- Fix a race condition in the alerts system (#208)\n- Log file transfers to a CSV file in the logs directly (#205)\n- Upgrade the embedded browser: may fix issues with Syncthing's UI not loading at first, and adds support for touch-screen devices (#129)\n- Create chocolatey package (#189)\n- Clarify some wording in Settings and the Conflict Resolver (#204, #209)\n- Handle two instances of SyncTrayzor saving their config at the same time (#185)",
    ]
 ];
 
 $upgrades = [
+   '1.1.3' => ['to' => 'latest', 'formatter' => '4', 'overrides' => ['release_notes' => "- Fix issue with embedded browser failing to start on some systems (#211, #213)\n- Fix crash when failing to determine if a connection is metered (#210, #212)"]],
    '1.1.2' => ['to' => 'latest', 'formatter' => '4'],
    '1.1.1' => ['to' => 'latest', 'formatter' => '3'],
    '1.1.0' => ['to' => 'latest', 'formatter' => '3'],