Commit 9dd741de authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx/QuincyKit: minor tweak so we can set our own app versions if needed

parent 4cec2c76
...@@ -34,7 +34,15 @@ ...@@ -34,7 +34,15 @@
#define SDK_NAME @"Quincy" #define SDK_NAME @"Quincy"
#define SDK_VERSION @"2.1.6" #define SDK_VERSION @"2.1.6"
@interface BWQuincyManager ()
{
NSString *_customAppVersion;
}
@end
@interface BWQuincyManager(private) @interface BWQuincyManager(private)
- (void) startManager; - (void) startManager;
- (void) _postXML:(NSString*)xml toURL:(NSURL*)url; - (void) _postXML:(NSString*)xml toURL:(NSURL*)url;
...@@ -86,6 +94,8 @@ ...@@ -86,6 +94,8 @@
[_crashFile release]; [_crashFile release];
[_quincyUI release]; [_quincyUI release];
if (_customAppVersion)
[_customAppVersion release];
[super dealloc]; [super dealloc];
} }
...@@ -422,7 +432,16 @@ ...@@ -422,7 +432,16 @@
return string; return string;
} }
- (void)setApplicationVersion:(NSString *)appVersion
{
_customAppVersion = appVersion;
[_customAppVersion retain];
}
- (NSString *) applicationVersion { - (NSString *) applicationVersion {
if (_customAppVersion)
return _customAppVersion;
NSString* string = [[[NSBundle mainBundle] localizedInfoDictionary] valueForKey: @"CFBundleVersion"]; NSString* string = [[[NSBundle mainBundle] localizedInfoDictionary] valueForKey: @"CFBundleVersion"];
if (!string) if (!string)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment