Skip to content

Commit

Permalink
ios 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Notsfsssf committed Apr 20, 2021
1 parent 73fb23b commit 8549922
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 25 deletions.
12 changes: 6 additions & 6 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 105;
CURRENT_PROJECT_VERSION = 110;
DEVELOPMENT_TEAM = L9F8ZWCR8Z;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -497,7 +497,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.4.3;
MARKETING_VERSION = 1.4.6;
PRODUCT_BUNDLE_IDENTIFIER = com.perol.pixez;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -717,7 +717,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 105;
CURRENT_PROJECT_VERSION = 110;
DEVELOPMENT_TEAM = L9F8ZWCR8Z;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -733,7 +733,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.4.3;
MARKETING_VERSION = 1.4.6;
PRODUCT_BUNDLE_IDENTIFIER = com.perol.pixez;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand All @@ -751,7 +751,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 105;
CURRENT_PROJECT_VERSION = 110;
DEVELOPMENT_TEAM = L9F8ZWCR8Z;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -767,7 +767,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.4.3;
MARKETING_VERSION = 1.4.6;
PRODUCT_BUNDLE_IDENTIFIER = com.perol.pixez;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down
18 changes: 9 additions & 9 deletions ios/SSSGridman/SSSGridman.swift
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,15 @@ struct SSSGridmanEntryView : View {
GeometryReader{ geometry in
ZStack{
Image(uiImage: entry.i!).resizable().scaledToFill().frame(width: geometry.size.width, height: geometry.size.height, alignment: .center)
VStack (alignment: .leading, spacing: 10){
Text(entry.title)
.font(.caption)
.foregroundColor(.white)

Text(entry.userName)
.font(.caption)
.foregroundColor(.white)
}.padding(EdgeInsets(top: 3, leading: 15, bottom: 3, trailing: 0))
// VStack (alignment: .leading, spacing: 10){
// Text(entry.title)
// .font(.caption)
// .foregroundColor(.white)
//
// Text(entry.userName)
// .font(.caption)
// .foregroundColor(.white)
// }.padding(EdgeInsets(top: 3, leading: 15, bottom: 3, trailing: 0))
}
}
}
Expand Down
15 changes: 7 additions & 8 deletions lib/page/hello/setting/setting_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,13 @@ class _SettingPageState extends State<SettingPage> {
Divider(),
Column(
children: <Widget>[
if (!Platform.isIOS)
ListTile(
leading: Icon(Icons.book),
title: Text('Novel(Beta)'),
onTap: () => Navigator.of(context, rootNavigator: true)
.pushReplacement(MaterialPageRoute(
builder: (context) => NovelRail())),
),
ListTile(
leading: Icon(Icons.book),
title: Text('Novel'),
onTap: () => Navigator.of(context, rootNavigator: true)
.pushReplacement(MaterialPageRoute(
builder: (context) => NovelRail())),
),
if (kDebugMode)
ListTile(
title: Text("网络诊断"),
Expand Down
1 change: 0 additions & 1 deletion lib/page/novel/novel_rail.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class _NovelRailState extends State<NovelRail> {
Constants.type = 1;
fetcher.context = context;
super.initState();
BotToast.showText(text: 'Beta');
}

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: A new Flutter project.
# 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.4.3+105
version: 1.4.6+110

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

0 comments on commit 8549922

Please sign in to comment.