Skip to content

Commit

Permalink
Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrth1 committed Jun 10, 2024
1 parent 0eef992 commit 565ce30
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions lib/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class _NotepadHomePageState extends State<NotepadHomePage> {
child: const MouseRegion(
cursor: SystemMouseCursors.click,
child: Text(
"Notease - v0.5.1 | 4 April 2024",
"Notease - v0.5.1 | 10 Juni 2024",
style: TextStyle(
color: Color.fromARGB(255, 30, 29, 29),
fontWeight: FontWeight.bold,
Expand Down Expand Up @@ -133,14 +133,16 @@ class _NotepadHomePageState extends State<NotepadHomePage> {
try {
await GoogleSignIn().disconnect();
} on Exception catch (e) {
print("---------- ERROR -------------------------------------");
print(
"---------- ERROR -------------------------------------");
print(e);
}
}
try {
await _auth.signOut();
} on Exception catch (e) {
print("---------- ERROR -------------------------------------");
print(
"---------- ERROR -------------------------------------");
print(e);
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.0+3
version: 1.0.0+5

environment:
sdk: ">=3.3.0 <4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>

<title>asd</title>
<title>Notease</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion web/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "A new Flutter project.",
"description": "Cleanest Note-taking app.",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
Expand Down

0 comments on commit 565ce30

Please sign in to comment.