Details
-
Type: Bug
-
Status: Resolved
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: BridgeIt 1.0.3
-
Fix Version/s: BridgeIt 1.0.3
-
Component/s: Containers
-
Labels:None
-
Environment:BridgeIt
Description
The BridgeIt response to the browser should contain the version number to allow web applications to prompt the user to update. No immediate response is taken by BridgeIt at this time since an application may be functional with an older feature set.
Activity
Ted Goddard
created issue -
Steve Maryka
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Steve Maryka [ steve.maryka ] | Patrick Corless [ patrick.corless ] |
Patrick Corless
made changes -
Assignee | Patrick Corless [ patrick.corless ] | Ted Goddard [ ted.goddard ] |
Patrick Corless
made changes -
Assignee | Ted Goddard [ ted.goddard ] | Patrick Corless [ patrick.corless ] |
Patrick Corless
made changes -
Fix Version/s | BridgeIt 1.0.3 [ 11379 ] | |
Fix Version/s | BridgeIt 1.0.4 [ 11380 ] |
Patrick Corless
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Initially assigning to Steve for Android implementation. iOS code will contain the following:
urlExtra = [urlExtra stringByAppendingString:@"&!v="];
urlExtra = [urlExtra stringByAppendingString:
[[[NSBundle mainBundle]
objectForInfoDictionaryKey:@"CFBundleShortVersionString"]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
Which will include a !v=1.0.4 in the response to the browser. The JSON64 implementation does not have such aggressive space optimization and will use
{version:"1.0.3"}as a return parameter.