Skip to content

Commit

Permalink
Merge branch 'release/1.0.21'
Browse files Browse the repository at this point in the history
  • Loading branch information
canton7 committed May 27, 2015
2 parents e087a28 + d059c5c commit 63f9324
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

v1.0.21
-------

- Fix version bump script, which was causing incorrect assembly version to be written

v1.0.20
-------

Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ task :version, [:version] do |t, args|
version = parts.join('.')
ASSEMBLY_INFOS.each do |info|
content = IO.read(info)
content[/\[assembly: AssemblyVersion\(\"(.+?)\"\)\]/, 1] = version
content[/\[assembly: AssemblyFileVersion\(\"(.+?)\"\)\]/, 1] = version
content[/^\[assembly: AssemblyVersion\(\"(.+?)\"\)\]/, 1] = version
content[/^\[assembly: AssemblyFileVersion\(\"(.+?)\"\)\]/, 1] = version
File.open(info, 'w'){ |f| f.write(content) }
end
end
Expand Down
9 changes: 5 additions & 4 deletions server/version_check.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,20 @@ function get_with_wildcard($src, $value, $default = null)
}

$versions = [
'1.0.20' => [
'1.0.21' => [
'installed' => [
'direct_download_url' => [
'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.20/SyncTrayzorSetup-x64.exe',
'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.20/SyncTrayzorSetup-x86.exe',
'x64' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.21/SyncTrayzorSetup-x64.exe',
'x86' => 'https://github.com/canton7/SyncTrayzor/releases/download/v1.0.21/SyncTrayzorSetup-x86.exe',
],
],
'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v1.0.20',
'release_page_url' => 'https://github.com/canton7/SyncTrayzor/releases/tag/v1.0.21',
'release_notes' => "- Add Dropbox-style window with current file transfers. Single-click the icon to view (#18)\n- Remember Syncthing langauge selection (#87)\n- Reword 'use custom home for Syncthing' option in Settings to be clearer (#88)\n- Don't show main window outside of desktop on very small screens (#84)\n- Don't crash if watched folder is a symlink (#89)\n- Improve error message if Syncthing cannot start (#90)\n- Fix possible crash if computer locale is changed (#91)\n- Allow custom Syncthing paths (by hand-editing config file, useful for edge case setups) (#86)\n- Add context menu to web browser (cut/copy/paste) (#85)\n- Allow multiple SyncTrayzor installations (portable and installed) to co-exist (#81)\n- Ignore system proxy settings when connecting to Syncthing (#80)\n- Update translations:\n - Updates to all languages\n - New languages: Catalan (Valencian), Portuguese (Brazil)",
]
];

$upgrades = [
'1.0.20' => ['to' => 'latest', 'formatter' => '2', 'overrides' => ['release_notes' => "- Fix issue where SyncTrayzor thought it was older than it was"]],
// 1.0.19 was never actually released, so no need to represent it
'1.0.18' => ['to' => 'latest', 'formatter' => '2'],
'1.0.17' => ['to' => 'latest', 'formatter' => '2'],
Expand Down
4 changes: 2 additions & 2 deletions src/ProcessRunner/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.20.0")]
[assembly: AssemblyVersion("1.0.18.0")]
[assembly: AssemblyFileVersion("1.0.20.0")]
[assembly: AssemblyVersion("1.0.21.0")]
[assembly: AssemblyFileVersion("1.0.21.0")]
4 changes: 2 additions & 2 deletions src/SyncTrayzor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.20.0")]
[assembly: AssemblyVersion("1.0.18.0")]
[assembly: AssemblyFileVersion("1.0.20.0")]
[assembly: AssemblyVersion("1.0.21.0")]
[assembly: AssemblyFileVersion("1.0.21.0")]

0 comments on commit 63f9324

Please sign in to comment.