diff --git a/CHANGELOG.md b/CHANGELOG.md index 8279dd0..4249891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog All notable changes to this project will be documented in this file. +[0.0.2]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.0.1 + +## [0.0.2] - 2023-02-07 +### Fixed issue +- Solved bug on opening +- Solved bug on changelog not showing. +### Added +- Release file for windows on README.md + +[0.0.1]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.0.1 + ## [0.0.1] - 2022-04-17 ### Added - This CHANGELOG file to hopefully serve as an evolving example of a diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..556abef --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contributing +If you like this project fell free to edit and share with us your improvement. + diff --git a/README.md b/README.md index 4969c25..21a1f1e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ # Link Management System -Link Management System +Link Management System for desktop is an app that enable you to have easy access to all the link you need for your study or work. It's FREE and OPEN SOURCE, so fell free to help us improving! + +## Download +### New release v. 0.0.2 +[macOS](https://www.youtube.com/watch?v=XvwX-hmYv0E) +[Windows](https://www.youtube.com/watch?v=XvwX-hmYv0E) + ## Build diff --git a/database_app/database_app b/database_app/database_app index 4416ebd..925bc57 100644 Binary files a/database_app/database_app and b/database_app/database_app differ diff --git a/lib/main.dart b/lib/main.dart index e07839d..f72d538 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -67,7 +67,6 @@ class _MyHomePageState extends State { if (await dbConfigured() && await db?.getVersion() == kDBVersion) { // if (db.getVersion()) expect(await db.getVersion(), 0); - } else { sqfliteFfiInit(); await prefs?.setBool('db_configured', true); @@ -203,8 +202,8 @@ class _MyHomePageState extends State { }, applicationLegalese: 'Copyright © Simone Porcari | Riccardo Rettore | Francesco Vezzani, {{ year }}', - applicationDescription: const Text( - 'Applicazione per la gestione dei link delle videochiamate.'), + applicationDescription: + const Text('Applicazione per la gestione dei link.'), children: [ const MarkdownPageListTile( icon: Icon(Icons.list), @@ -330,7 +329,7 @@ class _MyHomePageState extends State { TextField( decoration: const InputDecoration( border: OutlineInputBorder(), - labelText: 'Link della videochiamata', + labelText: 'Link del sito o della videochiamata', ), onChanged: (value) => url = value, ), diff --git a/pubspec.yaml b/pubspec.yaml index 0c53a54..6553d8e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -41,4 +41,6 @@ flutter: uses-material-design: true assets: - - assets/ \ No newline at end of file + - assets/ + - CHANGELOG.md + - CONTRIBUTING.md \ No newline at end of file