Skip to content

Commit

Permalink
feat: 0.0.13 candidate release, latest before beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurBeaulieu committed Jan 8, 2025
1 parent 69c40a5 commit 5f85d92
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ linter:
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
use_build_context_synchronously: false
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule

Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {
multiDexEnabled true
minSdkVersion flutter.minSdkVersion
versionCode 11
versionName "0.0.12"
versionName "0.0.13"
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down
2 changes: 1 addition & 1 deletion lib/src/help/welcome_screen_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class WelcomeScreenViewState extends State<WelcomeScreenView> {
Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(SizeConfig.borderRadius),
color: Theme.of(context).colorScheme.surface,
color: Theme.of(context).colorScheme.surface.withOpacity(0.3),
),
padding: EdgeInsets.all(
SizeConfig.padding,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/utils/app_const.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter_dotenv/flutter_dotenv.dart';

class AppConst {
static const String appVersion = '0.0.12';
static const String appVersion = '0.0.13';
static const String serverVersion = '0.1.0';
// The server URL to reach, ensure no trailing slash remains
static const String baseURL = 'https://beercrackerz.org';
Expand Down
6 changes: 3 additions & 3 deletions lib/src/utils/theme_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ThemeConfig {
onTertiary: Color(0xff000000),
error: Color(0xffDE716D),
onError: Color.fromARGB(255, 255, 255, 255),
surface: Color.fromARGB(255, 240, 240, 240),
surface: Color.fromARGB(255, 173, 173, 173),
onSurface: Color.fromARGB(255, 0, 0, 0),
surfaceContainer: Color.fromARGB(255, 214, 207, 184),
shadow: Color.fromARGB(84, 228, 182, 181),
Expand All @@ -37,10 +37,10 @@ class ThemeConfig {
onTertiary: Color(0xff000000),
error: Color(0xffDE716D),
onError: Color(0xff000000),
surface: Color(0xff151515),
surface: Color.fromARGB(255, 37, 37, 37),
onSurface: Color(0xffffffff),
surfaceContainer: Color.fromARGB(255, 95, 77, 22),
shadow: Color(0x55DE716D),
shadow: Color.fromARGB(84, 219, 182, 181),
),
);
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "The app for beer lovers, to share the best spot to crack a beer, o

publish_to: 'none'

version: 0.0.12+12
version: 0.0.13+13

environment:
sdk: '>=3.2.5 <4.0.0'
Expand Down

0 comments on commit 5f85d92

Please sign in to comment.