Skip to content

Commit 2e7ba1b

Browse files
committed
[App] bump version; update changelog
1 parent 150f5e8 commit 2e7ba1b

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

Changelog.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@
22

33
## Unreleased
44

5-
* Add back buttons on every page for iOS
6-
* Add launcher/app icons for iOS
5+
* Nothing here yet
6+
7+
## v1.6-beta
8+
79
* Complaint subscription added and comments notifications work
810
* Move dropdown button to FAB in Mess Menu
911
* Fix multiple roles (Hero animation) bug
1012
* Add InstiApp launcher icon on Android
1113
* Can edit/delete comments on a Complaint
1214
* App links for Android part work
15+
* Add back buttons on every page for iOS
16+
* Add launcher/app icons for iOS
1317
* Add Batch number on App Icon as Unread Notification Number on iOS
18+
* Change map url to standalone map url for smaller js file
1419

1520
## v1.5-beta
1621

lib/src/routes/mappage.dart

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ class _MapPageState extends State<MapPage> {
1919

2020
jag.Jaguar server;
2121

22-
final String hostUrl = "127.0.0.1:9999";
22+
// final String hostUrl = "insti.app";
2323
// final String mapUrl = "https://insti.app/map/?sandbox=true";
24-
final String mapUrl = "http://127.0.0.1:9999/";
24+
25+
// final String hostUrl = "127.0.0.1:9999";
26+
// final String mapUrl = "http://127.0.0.1:9999/";
27+
28+
final String hostUrl = "pulsejet.github.io";
29+
final String mapUrl = "https://pulsejet.github.io/instimapweb-standalone/";
2530

2631
StreamSubscription<String> onUrlChangedSub;
2732
StreamSubscription<WebViewStateChanged> onStateChangedSub;
@@ -32,10 +37,11 @@ class _MapPageState extends State<MapPage> {
3237
@override
3338
void initState() {
3439
super.initState();
35-
startMapServerIfNotStarted().then((_) {
36-
flutterWebviewPlugin.reloadUrl(mapUrl);
37-
flutterWebviewPlugin.hide();
38-
});
40+
41+
// startMapServerIfNotStarted().then((_) {
42+
// flutterWebviewPlugin.reloadUrl(mapUrl);
43+
// flutterWebviewPlugin.hide();
44+
// });
3945

4046
onUrlChangedSub = flutterWebviewPlugin.onUrlChanged.listen((String url) {
4147
print("Changed URL: $url");
@@ -114,6 +120,7 @@ class _MapPageState extends State<MapPage> {
114120
return server.serve();
115121
} catch (e) {
116122
// Already server running
123+
return Future.delayed(Duration.zero);
117124
}
118125
}
119126
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Flutter App for Indian Institute of Technology, Bombay
77
# Both the version and the builder number may be overridden in flutter
88
# build by specifying --build-name and --build-number, respectively.
99
# Read more about versioning at semver.org.
10-
version: 1.5+22
10+
version: 1.6.0
1111

1212
environment:
1313
sdk: ">=2.0.0-dev.68.0 <3.0.0"

0 commit comments

Comments
 (0)