File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131
32321 . Linux Support.
33332 . Dark mode support.
34- 3 . Shorebird support.
34+ 3 . Shorebird support. ✅
35354 . Websocket connection history.
36365 . Websocket speed metrics and custom logs.
37376 . modern UI re-design.
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33<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:
5959
6060 assets :
6161 - assets/images/
62+ - shorebird.yaml
6263
6364 fonts :
6465 - 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