Skip to content

Commit

Permalink
build new version for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
NeXTormer committed Jul 4, 2023
1 parent 0e8e367 commit 40179e4
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 16 deletions.
Binary file added android/app/release.keystore
Binary file not shown.
2 changes: 2 additions & 0 deletions ios/Flutter/Release.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"

#include "Generated.xcconfig"
14 changes: 8 additions & 6 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 100;
CURRENT_PROJECT_VERSION = 105;
DEVELOPMENT_TEAM = GYVQ5BCFR6;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -411,7 +411,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.0.5;
PRODUCT_BUNDLE_IDENTIFIER = io.hawkford.fredericapp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -538,7 +538,9 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 100;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 105;
DEVELOPMENT_TEAM = GYVQ5BCFR6;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -557,7 +559,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.0.5;
PRODUCT_BUNDLE_IDENTIFIER = io.hawkford.fredericapp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -576,7 +578,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 100;
CURRENT_PROJECT_VERSION = 105;
DEVELOPMENT_TEAM = GYVQ5BCFR6;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -595,7 +597,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.0.5;
PRODUCT_BUNDLE_IDENTIFIER = io.hawkford.fredericapp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
1 change: 1 addition & 0 deletions lib/widgets/add_progress_screen/add_progress_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class AddProgressCard extends StatelessWidget {
left: 0, right: 0, top: 16),
child: FredericButton(
tr('save'),
haptics: true,
onPressed: () {
if (FredericBackend.instance.canUseApp) {
onSave(false);
Expand Down
12 changes: 7 additions & 5 deletions lib/widgets/home_screen/home_screen_appbar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ class HomeScreenAppbar extends StatelessWidget {
height: 124,
title: tr('home.title'),
subtitle: tr('home.subtitle', args: [timeOfDay, userName]),
icon: GestureDetector(
onTap: () {},
child: Icon(Icons.app_settings_alt,
color: theme.textColorColorfulBackground),
),
icon: true //TODO: add back
? Container()
: GestureDetector(
onTap: () {},
child: Icon(Icons.app_settings_alt,
color: theme.textColorColorfulBackground),
),
leading: Row(
children: [
Stack(
Expand Down
4 changes: 2 additions & 2 deletions macos/Flutter/ephemeral/Flutter-Generated.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FLUTTER_ROOT=/Users/felix/Developer/SDKs/flutter
FLUTTER_APPLICATION_PATH=/Users/felix/Developer/Projects/NeverSkip
COCOAPODS_PARALLEL_CODE_SIGN=true
FLUTTER_BUILD_DIR=build
FLUTTER_BUILD_NAME=1.0.1
FLUTTER_BUILD_NUMBER=22120501
FLUTTER_BUILD_NAME=1.0.5
FLUTTER_BUILD_NUMBER=23070201
DART_OBFUSCATION=false
TRACK_WIDGET_CREATION=true
TREE_SHAKE_ICONS=false
Expand Down
4 changes: 2 additions & 2 deletions macos/Flutter/ephemeral/flutter_export_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export "FLUTTER_ROOT=/Users/felix/Developer/SDKs/flutter"
export "FLUTTER_APPLICATION_PATH=/Users/felix/Developer/Projects/NeverSkip"
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
export "FLUTTER_BUILD_DIR=build"
export "FLUTTER_BUILD_NAME=1.0.1"
export "FLUTTER_BUILD_NUMBER=22120501"
export "FLUTTER_BUILD_NAME=1.0.5"
export "FLUTTER_BUILD_NUMBER=23070201"
export "DART_OBFUSCATION=false"
export "TRACK_WIDGET_CREATION=true"
export "TREE_SHAKE_ICONS=false"
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish_to: 'none'
# 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: 1.0.1+22120501
version: 1.0.5+23070201

environment:
sdk: '>=2.12.0 <3.0.0'
Expand Down

0 comments on commit 40179e4

Please sign in to comment.