Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🆙 version 3.9.0 #507

Merged
merged 5 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/domain/modal/release_note.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ReleaseNote extends StatelessWidget {
child: Container(
padding: EdgeInsets.only(top: 40, left: 40, right: 40),
child: Text(
"今日以外の日から休薬を開始できるように",
"ヘルスケアに生理記録が反映されるようになりました",
style: FontType.subTitle.merge(TextColorStyle.black),
textAlign: TextAlign.center,
),
Expand All @@ -57,7 +57,7 @@ class ReleaseNote extends StatelessWidget {
children: [
Text(
'''
休薬を開始したい日まで未服用にする事で休薬できます。服用済みのピルマークをタップすることで未服用にできます。
設定タブ > ヘルスケア連携から設定できます。連携後からの生理記録はヘルスケアにも反映されます
''',
style: FontType.assisting.merge(TextColorStyle.main),
),
Expand Down Expand Up @@ -85,7 +85,7 @@ class ReleaseNote extends StatelessWidget {
}

showReleaseNotePreDialog(BuildContext context) async {
final key = ReleaseNoteKey.version3_8_0;
final key = ReleaseNoteKey.version3_9_0;
final storage = await SharedPreferences.getInstance();
if (storage.getBool(key) ?? false) {
return;
Expand All @@ -103,7 +103,7 @@ openReleaseNote() async {
final ChromeSafariBrowser browser = new ChromeSafariBrowser();
await browser.open(
url: Uri.parse(
"https://pilll.wraptas.site/fcc86789fece40e39c0c03f58e58d883"),
"https://pilll.wraptas.site/9f689858e2a34cf6bc7c08ab85a192cf"),
options: ChromeSafariBrowserClassOptions(
android:
AndroidChromeCustomTabsOptions(addDefaultShareMenuItem: false),
Expand Down
1 change: 1 addition & 0 deletions lib/util/shared_preference/keys.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ extension ReleaseNoteKey on String {
static final String version3_6_0 = "release_notes_shown_3.6.0";
static final String version3_7_0 = "release_notes_shown_3.7.0";
static final String version3_8_0 = "release_notes_shown_3.8.0";
static final String version3_9_0 = "release_notes_shown_3.9.0";
}

extension IntKey on String {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 3.8.3+1671
version: 3.9.0+1671

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