Add micro bit of version number
This commit is contained in:
parent
b0c2c48dd3
commit
5f8c858658
5 changed files with 8 additions and 5 deletions
|
@ -1,3 +1,6 @@
|
|||
3.36.0
|
||||
|
||||
|
||||
3.28.0 (Sat 14 Jul, 2018):
|
||||
|
||||
Fixed a bunch of crashes and lots of under-the-hood improvements.
|
||||
|
|
|
@ -9,9 +9,9 @@
|
|||
<key>CFBundleName</key>
|
||||
<string>SparkleShare</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>3.38</string>
|
||||
<string>3.38.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>3.38</string>
|
||||
<string>3.38.0</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||
|
||||
<Product Name='SparkleShare' Id='184950D5-67F6-4D06-9717-7E2F1607A7B0' UpgradeCode='D3DF1D99-87F5-47A7-A349-863DD6E4B73A'
|
||||
Language='1033' Codepage='1252' Version='3.38' Manufacturer='SparkleShare'>
|
||||
Language='1033' Codepage='1252' Version='3.38.0' Manufacturer='SparkleShare'>
|
||||
|
||||
<Package Id='*' Keywords='Installer' Description="SparkleShare Setup" Manufacturer='SparkleShare'
|
||||
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly:AssemblyTitle ("Sparkles")]
|
||||
[assembly:AssemblyVersion ("3.38")]
|
||||
[assembly:AssemblyVersion ("3.38.0")]
|
||||
[assembly:AssemblyCopyright ("Copyright (c) 2010 Hylke Bons and others")]
|
||||
|
||||
namespace Sparkles {
|
||||
|
|
|
@ -6,7 +6,7 @@ configuration = configuration_data()
|
|||
configuration.set('ABS_INSTALL_DIR', join_paths(get_option('prefix'), install_dir))
|
||||
|
||||
# This line is changed by scripts/bump-version.sh, so keep it intact
|
||||
configuration.set('VERSION', '3.38')
|
||||
configuration.set('VERSION', '3.38.0')
|
||||
|
||||
subdir('Sparkles')
|
||||
subdir('Sparkles/Git')
|
||||
|
|
Loading…
Add table
Reference in a new issue