Skip to content

Commit

Permalink
Minor fix and update to changelogs.
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fbriere committed Feb 22, 2024
1 parent 2451010 commit 89031d4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions android/fastlane/metadata/android/en-GB/changelogs/38.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
- Allows video to continue to play when Squawker is in the background
- Allows video/music of other apps to play in the background while a video is playing in Squawker.
* Implement feature #219 Allow to set a proxy HTTP(S) or SOCKS5.
The proxy can be set under Settings / General then tap on the Proxy item.
The format is: scheme://[user:pwd@]host:port.
Eg https://1.2.3.4:5678 or socks5://who:[email protected]:2468.
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/38.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
- Allows video to continue to play when Squawker is in the background
- Allows video/music of other apps to play in the background while a video is playing in Squawker.
* Implement feature #219 Allow to set a proxy HTTP(S) or SOCKS5.
The proxy can be set under Settings / General then tap on the Proxy item.
The format is: scheme://[user:pwd@]host:port.
Eg https://1.2.3.4:5678 or socks5://who:[email protected]:2468.
2 changes: 1 addition & 1 deletion lib/settings/_general.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class SettingsGeneralFragment extends StatelessWidget {
width: mediaQuery.size.width,
child: TextFormField(
controller: controller,
decoration: InputDecoration(hintText: 'host:port', hintStyle: TextStyle(color: Theme.of(context).disabledColor)),
decoration: InputDecoration(hintText: 'scheme://[user:pwd@]host:port', hintStyle: TextStyle(color: Theme.of(context).disabledColor)),
),
)
]);
Expand Down

0 comments on commit 89031d4

Please sign in to comment.