🐛 Fix linux compile issue
This commit is contained in:
parent
610ddec05c
commit
38e1c51b45
9
.github/workflows/nightly.yml
vendored
9
.github/workflows/nightly.yml
vendored
@ -52,10 +52,11 @@ jobs:
|
|||||||
- run: |
|
- run: |
|
||||||
sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
sudo apt-get install -y ninja-build libgtk-3-dev
|
sudo apt-get install -y ninja-build libgtk-3-dev
|
||||||
sudo apt-get install libmpv-dev mpv
|
sudo apt-get install -y libmpv-dev mpv
|
||||||
sudo apt-get install libayatana-appindicator3-dev
|
sudo apt-get install -y libayatana-appindicator3-dev
|
||||||
sudo apt-get install keybinder-3.0
|
sudo apt-get install -y keybinder-3.0
|
||||||
sudo apt-get install libnotify-dev
|
sudo apt-get install -y libnotify-dev
|
||||||
|
sudo apt-get install -y gstreamer-1.0
|
||||||
- run: flutter pub get
|
- run: flutter pub get
|
||||||
- run: flutter build linux
|
- run: flutter build linux
|
||||||
- name: Archive production artifacts
|
- name: Archive production artifacts
|
||||||
|
@ -933,5 +933,7 @@
|
|||||||
"punishmentExpiredAt": "Expired at {}",
|
"punishmentExpiredAt": "Expired at {}",
|
||||||
"punishmentExpiredNever": "Never expired",
|
"punishmentExpiredNever": "Never expired",
|
||||||
"punishmentModerator": "Moderator who made this punishment",
|
"punishmentModerator": "Moderator who made this punishment",
|
||||||
"punishmentMadeBySystem": "Made by auto-mod system"
|
"punishmentMadeBySystem": "Made by auto-mod system",
|
||||||
|
"settingsAprilFoolFeatures": "April Fool Features",
|
||||||
|
"settingsAprilFoolFeaturesDescription": "Enable April Fool features during April Fool, this option will only be visible during April Fool."
|
||||||
}
|
}
|
||||||
|
@ -930,5 +930,7 @@
|
|||||||
"punishmentExpiredAt": "到期于 {}",
|
"punishmentExpiredAt": "到期于 {}",
|
||||||
"punishmentExpiredNever": "永久生效",
|
"punishmentExpiredNever": "永久生效",
|
||||||
"punishmentModerator": "责任管理员",
|
"punishmentModerator": "责任管理员",
|
||||||
"punishmentMadeBySystem": "由系统自动裁决"
|
"punishmentMadeBySystem": "由系统自动裁决",
|
||||||
|
"settingsAprilFoolFeatures": "愚人节特性",
|
||||||
|
"settingsAprilFoolFeaturesDescription": "在愚人节期间启用愚人节特性,该选项只会在愚人节期间显示。"
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,7 @@ const kAppCustomFonts = 'app_custom_fonts';
|
|||||||
const kAppMixedFeed = 'app_mixed_feed';
|
const kAppMixedFeed = 'app_mixed_feed';
|
||||||
const kAppAutoTranslate = 'app_auto_translate';
|
const kAppAutoTranslate = 'app_auto_translate';
|
||||||
const kAppHideBottomNav = 'app_hide_bottom_nav';
|
const kAppHideBottomNav = 'app_hide_bottom_nav';
|
||||||
|
const kAppAprilFoolFeatures = 'app_april_fool_features';
|
||||||
|
|
||||||
const Map<String, FilterQuality> kImageQualityLevel = {
|
const Map<String, FilterQuality> kImageQualityLevel = {
|
||||||
'settingsImageQualityLowest': FilterQuality.none,
|
'settingsImageQualityLowest': FilterQuality.none,
|
||||||
@ -96,6 +97,15 @@ class ConfigProvider extends ChangeNotifier {
|
|||||||
return prefs.getBool(kAppHideBottomNav) ?? false;
|
return prefs.getBool(kAppHideBottomNav) ?? false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool get aprilFoolFeatures {
|
||||||
|
return prefs.getBool(kAppAprilFoolFeatures) ?? true;
|
||||||
|
}
|
||||||
|
|
||||||
|
set aprilFoolFeatures(bool value) {
|
||||||
|
prefs.setBool(kAppAprilFoolFeatures, value);
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
set hideBottomNav(bool value) {
|
set hideBottomNav(bool value) {
|
||||||
prefs.setBool(kAppHideBottomNav, value);
|
prefs.setBool(kAppHideBottomNav, value);
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
|
@ -100,7 +100,7 @@ class NotificationProvider extends ChangeNotifier {
|
|||||||
if (doHaptic) HapticFeedback.mediumImpact();
|
if (doHaptic) HapticFeedback.mediumImpact();
|
||||||
|
|
||||||
// April fool notification sfx
|
// April fool notification sfx
|
||||||
if (doHaptic) {
|
if (_cfg.prefs.getBool(kAppAprilFoolFeatures) ?? true) {
|
||||||
final now = DateTime.now();
|
final now = DateTime.now();
|
||||||
if (now.day == 1 && now.month == 4) {
|
if (now.day == 1 && now.month == 4) {
|
||||||
_notifySoundPlayer.play(
|
_notifySoundPlayer.play(
|
||||||
|
@ -80,6 +80,9 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final sn = context.read<SnNetworkProvider>();
|
final sn = context.read<SnNetworkProvider>();
|
||||||
final dt = context.read<DatabaseProvider>();
|
final dt = context.read<DatabaseProvider>();
|
||||||
|
final cfg = context.watch<ConfigProvider>();
|
||||||
|
|
||||||
|
final now = DateTime.now();
|
||||||
|
|
||||||
return AppScaffold(
|
return AppScaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
@ -741,6 +744,18 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
|||||||
GoRouter.of(context).pushNamed('about');
|
GoRouter.of(context).pushNamed('about');
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
if (now.day == 1 && now.month == 4)
|
||||||
|
CheckboxListTile(
|
||||||
|
title: Text('settingsAprilFoolFeatures').tr(),
|
||||||
|
subtitle: Text('settingsAprilFoolFeaturesDescription').tr(),
|
||||||
|
contentPadding: const EdgeInsets.only(left: 24, right: 17),
|
||||||
|
secondary: const Icon(Symbols.new_releases),
|
||||||
|
value: cfg.aprilFoolFeatures,
|
||||||
|
onChanged: (value) {
|
||||||
|
cfg.aprilFoolFeatures = value ?? false;
|
||||||
|
setState(() {});
|
||||||
|
},
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user