We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20a47c2 commit ae09efcCopy full SHA for ae09efc
Source/LinkApp/Classes/Module/Login/Controller/TIoTMainVC.m
@@ -202,7 +202,11 @@ - (void)firstShowBirthdayView {
202
- (void)versionUpdateAlertView {
203
204
NSString *appVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
205
- bool versionBool = [TIoTAppUtilOC isTheVersion:appVersion laterThanLocalVersion:@"1.5.3"]; //要求在1.5.4 以上
+ bool versionBool = NO;
206
+ ////要求在1.5.4 以上 或持续集成版
207
+ if ([TIoTAppUtilOC isTheVersion:appVersion laterThanLocalVersion:@"1.5.3"] || [appVersion containsString:@"master+git"]) {
208
+ versionBool = YES;
209
+ }
210
211
if ([NSString isNullOrNilWithObject:[TIoTCoreUserManage shared].isVersionUpdateView] && versionBool) {
212
0 commit comments