Skip to content

Commit

Permalink
update assets
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-CStack committed Jul 24, 2024
1 parent ce1b1f0 commit 751adb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified asset_sources/default_themes/campfire/light.zip
Binary file not shown.
4 changes: 3 additions & 1 deletion lib/themes/theme_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ final pThemeService = Provider<ThemeService>((ref) {
});

class ThemeService {
static const _currentDefaultThemeVersion = 15;
// dumb quick conditional based on name. Should really be done better
static const _currentDefaultThemeVersion =
AppConfig.appName == "Campfire" ? 17 : 15;
ThemeService._();
static ThemeService? _instance;
static ThemeService get instance => _instance ??= ThemeService._();
Expand Down

0 comments on commit 751adb5

Please sign in to comment.