Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Oct 10, 2022
1 parent 6c398bd commit 3e34062
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 32 deletions.
2 changes: 1 addition & 1 deletion ci/version.code.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.3
v1.1.4
11 changes: 11 additions & 0 deletions ci/version.info.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
v1.1.4

- [x] 修复BUG, 发电后下一页不好用
- [x] 修复BUG, 夜间登录看不起字
- [x] 修复BUG ios11,12,13 闪退
- [x] 升级flutter

计划中

- [x] 下载和导出

v1.1.3

- [x] 长按下载可以删除
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/url_launcher_ios/ios"

SPEC CHECKSUMS:
Flutter: 405776dd0763d7e32a8f989d4e271ca1317d080c
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
permission_handler_apple: 44366e37eaf29454a1e7b1b7d736c2cceaeb17ce
url_launcher_ios: 839c58cdb4279282219f5e248c3321761ff3c4de

Expand Down
2 changes: 1 addition & 1 deletion lib/screens/components/comic_pager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ class _PagerPagerState extends State<_PagerPager> {
if (num == 0 || num > _maxPage) {
return;
}
if (_currentPage > 20) {
if (num > 20 && !isPro) {
defaultToast(context, "下一页需要发电鸭");
return;
}
Expand Down
6 changes: 3 additions & 3 deletions lib/screens/pro_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ class _RegisterDialogState extends State<_RegisterDialog> {
height: 250,
width: MediaQuery.of(context).size.width - 90,
margin: const EdgeInsets.all(30),
decoration: const BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(10)),
color: Colors.white,
decoration: BoxDecoration(
borderRadius: const BorderRadius.all(Radius.circular(10)),
color: Theme.of(context).scaffoldBackgroundColor,
),
child: Material(
color: Colors.transparent,
Expand Down
37 changes: 15 additions & 22 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,7 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.1"
version: "1.2.1"
clipboard:
dependency: "direct main"
description:
Expand All @@ -49,7 +42,7 @@ packages:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
collection:
dependency: transitive
description:
Expand Down Expand Up @@ -91,7 +84,7 @@ packages:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.3.1"
fixnum:
dependency: transitive
description:
Expand Down Expand Up @@ -143,7 +136,7 @@ packages:
name: flutter_svg
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.1+1"
version: "1.1.4"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down Expand Up @@ -181,21 +174,21 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.11"
version: "0.12.12"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.4"
version: "0.1.5"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.8.0"
modal_bottom_sheet:
dependency: "direct main"
description:
Expand All @@ -209,21 +202,21 @@ packages:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.1"
version: "1.8.2"
path_drawing:
dependency: transitive
description:
name: path_drawing
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
version: "1.0.1"
path_parsing:
dependency: transitive
description:
name: path_parsing
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
version: "1.0.1"
pedantic:
dependency: transitive
description:
Expand Down Expand Up @@ -312,7 +305,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.2"
version: "1.9.0"
stack_trace:
dependency: transitive
description:
Expand All @@ -333,21 +326,21 @@ packages:
name: string_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
term_glyph:
dependency: transitive
description:
name: term_glyph
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.1"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.9"
version: "0.4.12"
typed_data:
dependency: transitive
description:
Expand Down Expand Up @@ -403,7 +396,7 @@ packages:
name: url_launcher_web
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.12"
version: "2.0.13"
url_launcher_windows:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: wax
description: A new Flutter project.
description: A comic reader.

# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
Expand All @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# 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.1.3+4
version: 1.1.4+5

environment:
sdk: ">=2.16.1 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/bind-ios-arm64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ cd "$( cd "$( dirname "$0" )" && pwd )/.."

cd go/mobile

gomobile bind -target=ios -o lib/Mobile.xcframework ./
gomobile bind -iosversion 11.0 -target=ios -o lib/Mobile.xcframework ./
2 changes: 1 addition & 1 deletion scripts/build-ipa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cd "$( cd "$( dirname "$0" )" && pwd )/.."

cd go/mobile
go get golang.org/x/mobile/cmd/gobind
gomobile bind -target=ios -o lib/Mobile.xcframework ./
gomobile bind -iosversion 11.0 -target=ios -o lib/Mobile.xcframework ./
cd ../..
flutter build ios --release --no-codesign

Expand Down

0 comments on commit 3e34062

Please sign in to comment.