Skip to content

Commit

Permalink
Update version_check.php
Browse files Browse the repository at this point in the history
  • Loading branch information
canton7 committed Jun 20, 2015
1 parent 36d9aa1 commit 9b05cf2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
2 changes: 0 additions & 2 deletions server/log.txt

This file was deleted.

15 changes: 8 additions & 7 deletions server/version_check.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,22 @@ function get_with_wildcard($src, $value, $default = null)
}

$versions = [
'1.0.24' => [
'1.0.25' => [
'installed' => [
'direct_download_url' => [
'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.24/SyncTrayzorSetup-x64.exe',
'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.24/SyncTrayzorSetup-x86.exe',
'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.25/SyncTrayzorSetup-x64.exe',
'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.25/SyncTrayzorSetup-x86.exe',
],
],
'sha1sum_download_url' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.24/sha1sum.txt.asc',
'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v1.0.24',
'release_notes' => "MANDATORY UPGRADE! Adds support for Syncthing 0.11.10.\nIf you do not upgrade, you may see crashes!\n\n- Support for Syncthing v0.11.10\n- Fix and improve file transfers window (#101, #106)\n- Fix various crashes (#108, #112, #114, #115, #116)\n- Add option to disable hardware rendering (#104)\n- Add Chinese translation (thanks Honpan Lung!)",
'sha1sum_download_url' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.25/sha1sum.txt.asc',
'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v1.0.25',
'release_notes' => "MANDATORY UPGRADE! Adds support for Syncthing 0.11.10.\nIf you do not upgrade, you may see crashes!\n\n- Support for Syncthing v0.11.10\n- Fix and improve file transfers window (#101, #106)\n- Fix various crashes (#108, #112, #114, #115, #116)\n- Add option to disable hardware rendering (#104)\n- Add Chinese translation (thanks Honpan Lung!)\n- Fix crash on shutdown (#117)\n- Don't show file tranfers that are 'starting'\n- Be smarter about network timeouts when resuming from sleep",
]
];

$upgrades = [
'1.0.23' => ['to' => 'latest', 'formatter' => '3', 'overrides' => ['release_notes' => "- Fix a couple of crashes (#116)\n- Add Chinese translation (thanks Honpan Lung!)"]],
'1.0.24' => ['to' => 'latest', 'formatter' => '3', 'overrides' => ['release_notes' => "- Fix crash on shutdown (#117)\n- Don't show file tranfers that are 'starting'\n- Be smarter about network timeouts when resuming from sleep"]],
'1.0.23' => ['to' => 'latest', 'formatter' => '3', 'overrides' => ['release_notes' => "- Fix a couple of crashes (#116)\n- Add Chinese translation (thanks Honpan Lung!)\n- Fix crash on shutdown (#117)\n- Don't show file tranfers that are 'starting'\n- Be smarter about network timeouts when resuming from sleep"]],
'1.0.22' => ['to' => 'latest', 'formatter' => '2'],
'1.0.21' => ['to' => 'latest', 'formatter' => '2'],
'1.0.20' => ['to' => 'latest', 'formatter' => '2'],
Expand Down

0 comments on commit 9b05cf2

Please sign in to comment.