diff --git a/.github/workflows/deploy_playground_netlify.yml b/.github/workflows/deploy_playground_netlify.yml index c73d72ec..6fe593c9 100644 --- a/.github/workflows/deploy_playground_netlify.yml +++ b/.github/workflows/deploy_playground_netlify.yml @@ -45,8 +45,8 @@ jobs: - name: "Themes playground START BUILD - Flutter clean before build" run: flutter clean && cd example && flutter clean - name: "Themes playground WEB WASM-GC release build" - run: cd example && flutter build web --wasm --release -t lib/example5_themes_playground/main.dart - #run: cd example && flutter build web --wasm --release --no-strip-wasm -t lib/example5_themes_playground/main.dart + #run: cd example && flutter build web --wasm --release -t lib/example5_themes_playground/main.dart + run: cd example && flutter build web --wasm --release --no-strip-wasm -t lib/example5_themes_playground/main.dart - name: Deploy to Netlify uses: nwtgck/actions-netlify@v3.0 with: diff --git a/example/lib/shared/const/app.dart b/example/lib/shared/const/app.dart index 93adab43..7b7c23d7 100644 --- a/example/lib/shared/const/app.dart +++ b/example/lib/shared/const/app.dart @@ -47,7 +47,7 @@ sealed class App { static const String versionMajor = '8'; static const String versionMinor = '0'; static const String versionPatch = '1'; - static const String versionBuild = '05'; + static const String versionBuild = '06'; static const String versionFull = '$versionMajor.$versionMinor.$versionPatch' '\nBuild-$versionBuild'; static const String version = '$versionMajor.$versionMinor.$versionPatch'; diff --git a/example/lib/shared/services/theme_service_hive.dart b/example/lib/shared/services/theme_service_hive.dart index 88b99a59..3861dd60 100644 --- a/example/lib/shared/services/theme_service_hive.dart +++ b/example/lib/shared/services/theme_service_hive.dart @@ -10,7 +10,7 @@ import 'theme_service_hive_adapters.dart'; // The handy part is that if it gets in the way in debugging, it is an easy // toggle to turn it off here too. Often I just leave them true if it is one // I want to see in dev mode, unless it is too chatty. -const bool _debug = !kReleaseMode || true; +const bool _debug = !kReleaseMode && false; /// A [ThemeService] implementation that stores and retrieves theme settings /// locally using the package Hive: https://pub.dev/packages/hive