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

Prepare release 0.6.0 #97

Merged
merged 3 commits into from
Oct 27, 2023
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
2 changes: 1 addition & 1 deletion lib/class/class_userPreferences.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class UserPreferences {
bool showAllWarnings = false;
bool areWarningsFromCache = false;

String versionNumber = "0.6.0-alpha_3 "; // shown in the about view
String versionNumber = "0.6.0"; // shown in the about view

bool activateAlertSwiss = false;
bool isFirstStart = true;
Expand Down
10 changes: 10 additions & 0 deletions lib/widgets/dialogs/ChangeLogDialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ class ChangeLogDialog extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(
"0.6.0 (beta)",
style: TextStyle(fontSize: 15, fontWeight: FontWeight.bold),
),
Text("* Der Code ist jetzt neu strukturiert und besser organisiert\n"
"* Die Daten werden jetzt intern besser verwaltet, dadurch müssen die Einstellungen und Orte neu eingestellt werden.\n"
"* Die Sortierung funktioniert jetzt wieder wie erwartet \n"
"* Die App stürzt jetzt bei einem Systemneustart nicht mehr ab. \n"
"* Das Erkennen von Telefonnummern funktioniert jetzt zuverlässiger. \n"
"* sonstige Fehlerbehebungen \n"),
Text(
"0.5.1 (beta)",
style: TextStyle(fontSize: 15, fontWeight: FontWeight.bold),
Expand Down
12 changes: 3 additions & 9 deletions lib/widgets/dialogs/legacyWarningDialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,13 @@ class _LegacyWarningDialogState extends State<LegacyWarningDialog> {
@override
Widget build(BuildContext context) {
return AlertDialog(
title: Text("Updated version to ${userPreferences.versionNumber}"),
title: Text("${AppLocalizations.of(context)!.legacy_warning_dialog_title} ${userPreferences.versionNumber}"),
content: Container(
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
"FOSSWarn is now updated to a new version."
" With this new version we have improved the internal "
"structure of the app. Externally there is no big change,"
" but we had to reset all settings and saved locations."
" Please check your settings and add your places again. "
"\n\nThank you for your understanding and sorry for the inconvenience.")
children: [ //
Text(AppLocalizations.of(context)!.legacy_warning_dialog_text)
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: foss_warn
description: Eine FOSS Umsetzung von NINA
publish_to: 'none'
version: 0.5.1+27
version: 0.6.0+28

environment:
sdk: ">=2.17.0 <3.13.3"
Expand Down
Loading