File tree 4 files changed +25
-8
lines changed
4 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 31
31
32
32
1 . Linux Support.
33
33
2 . Dark mode support.
34
- 3 . Shorebird support.
34
+ 3 . Shorebird support. ✅
35
35
4 . Websocket connection history.
36
36
5 . Websocket speed metrics and custom logs.
37
37
6 . modern UI re-design.
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
3
<plist version =" 1.0" >
4
- <dict >
5
- <key >com.apple.security.app-sandbox</key >
6
- <true />
7
- <key >com.apple.security.network.client</key >
8
- <true />
9
- </dict >
10
- </plist >
4
+ <dict >
5
+ <key >com.apple.security.app-sandbox</key >
6
+ <true />
7
+ <key >com.apple.security.cs.allow-unsigned-executable-memory</key >
8
+ <true />
9
+ <key >com.apple.security.network.client</key >
10
+ <true />
11
+ </dict >
12
+ </plist >
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ flutter:
59
59
60
60
assets :
61
61
- assets/images/
62
+ - shorebird.yaml
62
63
63
64
fonts :
64
65
- family : Nunito
Original file line number Diff line number Diff line change
1
+ # This file is used to configure the Shorebird updater used by your app.
2
+ # Learn more at https://docs.shorebird.dev
3
+ # This file does not contain any sensitive information and should be checked into version control.
4
+
5
+ # Your app_id is the unique identifier assigned to your app.
6
+ # It is used to identify your app when requesting patches from Shorebird's servers.
7
+ # It is not a secret and can be shared publicly.
8
+ app_id : 70bdc34b-eb7d-4c7e-a57f-7350854618aa
9
+
10
+ # auto_update controls if Shorebird should automatically update in the background on launch.
11
+ # If auto_update: false, you will need to use package:shorebird_code_push to trigger updates.
12
+ # https://pub.dev/packages/shorebird_code_push
13
+ # Uncomment the following line to disable automatic updates.
14
+ # auto_update: false
You can’t perform that action at this time.
0 commit comments