Skip to content

Commit

Permalink
style(update version info)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xmarmalade committed Nov 20, 2022
1 parent 86f437d commit 4bd15a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/pages/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class SettingsPage extends StatelessWidget {
settingKey: 'use_custom_resolution_for_huya',
),
const SwitchTile(
title: 'Use .m3u8 for Bilibili',
title: '[Deprecated]Use .m3u8 for Bilibili',
subtitle:
'Use .m3u8 format to play Bilibili live stream instead of the default .flv format, when you find that Bilibili live stream cannot be played, you can try this option.',
settingKey: 'use_m3u8',
Expand Down
10 changes: 6 additions & 4 deletions lib/utils/init/ioinit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ void init() async {
create: (_) => AppThemeProvider(),
lazy: false,
),
ChangeNotifierProvider(
create: (_) => RoomsProvider(),
lazy: false,
),
//TODO: ChangeNotifierProvider temporary disabled

// ChangeNotifierProvider(
// create: (_) => RoomsProvider(),
// lazy: false,
// ),
], child: const MyApp()));
}
2 changes: 1 addition & 1 deletion lib/widgets/about.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:url_launcher/url_launcher.dart';

class About extends StatelessWidget {
const About({
this.version = '0.3.5',
this.version = '0.3.6',
Key? key,
}) : super(key: key);

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: "0.3.5"
version: "0.3.6"

environment:
sdk: ">=2.16.1 <3.0.0"
Expand Down

0 comments on commit 4bd15a0

Please sign in to comment.