summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-09-02 20:19:23 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-09-02 20:19:23 +0200
commit1ef14474c961ffc80dcf66df56050872ec7ece85 (patch)
treee9132e4fee8a3e7a24ec3b989c317f0928f333f9
parent55690ea5bf4211e53c3c51f57b5a97d5c1e8553d (diff)
downloadrockbox-1ef14474c961ffc80dcf66df56050872ec7ece85.tar.gz
rockbox-1ef14474c961ffc80dcf66df56050872ec7ece85.zip
Rockbox Utility: bump version to 1.3.0rbutil_1.3.0
Change-Id: I41db53976e4c0cb01e91f574277dcc90e68a6998
-rw-r--r--rbutil/rbutilqt/Info.plist2
-rw-r--r--rbutil/rbutilqt/version.h6
2 files changed, 5 insertions, 3 deletions
diff --git a/rbutil/rbutilqt/Info.plist b/rbutil/rbutilqt/Info.plist
index f44ceccade..8eeb310258 100644
--- a/rbutil/rbutilqt/Info.plist
+++ b/rbutil/rbutilqt/Info.plist
@@ -7,7 +7,7 @@
7 <key>CFBundleName</key> 7 <key>CFBundleName</key>
8 <string>Rockbox Utility</string> 8 <string>Rockbox Utility</string>
9 <key>CFBundleShortVersionString</key> 9 <key>CFBundleShortVersionString</key>
10 <string>1.2.14 ($Rev$)</string> 10 <string>1.3.0 ($Rev$)</string>
11 <key>CFBundleIconFile</key> 11 <key>CFBundleIconFile</key>
12 <string>rbutilqt.icns</string> 12 <string>rbutilqt.icns</string>
13 <key>CFBundleIdentifier</key> 13 <key>CFBundleIdentifier</key>
diff --git a/rbutil/rbutilqt/version.h b/rbutil/rbutilqt/version.h
index ac3728c630..cefb6767ba 100644
--- a/rbutil/rbutilqt/version.h
+++ b/rbutil/rbutilqt/version.h
@@ -22,6 +22,8 @@
22// contain a build timestamp because it needs to be the same in different 22// contain a build timestamp because it needs to be the same in different
23// files 23// files
24// VERSION is the plain version number, used for http User-Agent string. 24// VERSION is the plain version number, used for http User-Agent string.
25// It is concatenated from separate digits to allow reusing for the Windows
26// resource information
25// BUILDID is an additional build string to handle package updates (i.e. 27// BUILDID is an additional build string to handle package updates (i.e.
26// rebuilds because of issues like dependency problems or library updates). 28// rebuilds because of issues like dependency problems or library updates).
27// Usually empty. 29// Usually empty.
@@ -29,8 +31,8 @@
29// Version string is constructed from parts, since the Windows rc file needs it 31// Version string is constructed from parts, since the Windows rc file needs it
30// combined differently. 32// combined differently.
31#define VERSION_MAJOR 1 33#define VERSION_MAJOR 1
32#define VERSION_MINOR 2 34#define VERSION_MINOR 3
33#define VERSION_MICRO 14 35#define VERSION_MICRO 0
34#define VERSION_PATCH 0 36#define VERSION_PATCH 0
35#define STR(x) #x 37#define STR(x) #x
36#define VERSIONSTRING(a, b, c) STR(a) "." STR(b) "." STR(c) 38#define VERSIONSTRING(a, b, c) STR(a) "." STR(b) "." STR(c)