File tree Expand file tree Collapse file tree 8 files changed +22
-16
lines changed
metadata/en-US/changelogs Expand file tree Collapse file tree 8 files changed +22
-16
lines changed Original file line number Diff line number Diff line change 11name : setonix_api
22description : The Linwood Setonix API
3- version : 0.2.0
3+ version : 0.1.1
44publish_to : none
55# repository: https://github.com/my_org/my_repo
66
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ AppDir:
1414 id : dev.linwood.setonix
1515 name : Linwood Setonix
1616 icon : dev.linwood.setonix
17- version : 0.2.0
17+ version : 0.1.1
1818 exec : setonix
1919 exec_args : $@
2020 apt :
Original file line number Diff line number Diff line change 1717 while the Flutter UI initializes. After that, this theme continues
1818 to determine the Window background behind the Flutter UI. -->
1919 <meta-data
20- android : name =" io.flutter.embedding.android.NormalTheme"
21- android : resource =" @style/NormalTheme"
22- />
20+ android : name =" io.flutter.embedding.android.NormalTheme"
21+ android : resource =" @style/NormalTheme"
22+ />
2323 <intent-filter >
24- <action android : name =" android.intent.action.MAIN" />
25- <category android : name =" android.intent.category.LAUNCHER" />
24+ <action android : name =" android.intent.action.MAIN" />
25+ <category android : name =" android.intent.category.LAUNCHER" />
2626 </intent-filter >
2727 </activity >
2828 <!-- Don't delete the meta-data below.
3838 In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
3939 <queries >
4040 <intent >
41- <action android : name =" android.intent.action.PROCESS_TEXT" />
42- <data android : mimeType =" text/plain" />
41+ <action android : name =" android.intent.action.PROCESS_TEXT" />
42+ <data android : mimeType =" text/plain" />
4343 </intent >
4444 </queries >
45- </manifest >
45+ <uses-permission android : name =" android.permission.INTERNET" />
46+ <uses-permission android : name =" android.permission.ACCESS_NETWORK_STATE" />
47+ </manifest >
Original file line number Diff line number Diff line change @@ -21,9 +21,11 @@ class NetworkService {
2121
2222 Future <void > init () async {
2323 if (! kIsWeb) {
24- _server = (await RawDatagramSocket .bind (
25- InternetAddress .anyIPv4, kBroadcastPort))
26- ..broadcastEnabled = true ;
24+ try {
25+ _server = (await RawDatagramSocket .bind (
26+ InternetAddress .anyIPv4, kBroadcastPort))
27+ ..broadcastEnabled = true ;
28+ } catch (_) {}
2729 }
2830 _fetchServers ().listen ((event) {
2931 _servers.add (event);
Original file line number Diff line number Diff line change 11Package: linwood-setonix
2- Version: 0.2.0
2+ Version: 0.1.1
33Section: base
44Priority: optional
55Homepage: https://github.com/LinwoodDev/Setonix
Original file line number Diff line number Diff line change @@ -983,7 +983,7 @@ packages:
983983 path: "../api"
984984 relative: true
985985 source: path
986- version: "0.2.0 "
986+ version: "0.1.1 "
987987 share_plus:
988988 dependency: transitive
989989 description:
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ description: Play games without internet
1111# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1212# Read more about iOS versioning at
1313# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14- version : 0.2.0 +2
14+ version : 0.1.1 +2
1515publish_to : none
1616
1717environment :
Original file line number Diff line number Diff line change 1+ * Add internet permission to android
2+ * Fix app crashing if socket cannot be created
You can’t perform that action at this time.
0 commit comments