Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
New version release
  • Loading branch information
kekko7072 committed Feb 7, 2023
1 parent 234a3d2 commit fc1c7e9
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Contributing
If you like this project fell free to edit and share with us your improvement.

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file modified database_app/database_app
Binary file not shown.
7 changes: 3 additions & 4 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class _MyHomePageState extends State<MyHomePage> {

if (await dbConfigured() && await db?.getVersion() == kDBVersion) {
// if (db.getVersion()) expect(await db.getVersion(), 0);

} else {
sqfliteFfiInit();
await prefs?.setBool('db_configured', true);
Expand Down Expand Up @@ -203,8 +202,8 @@ class _MyHomePageState extends State<MyHomePage> {
},
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: <Widget>[
const MarkdownPageListTile(
icon: Icon(Icons.list),
Expand Down Expand Up @@ -330,7 +329,7 @@ class _MyHomePageState extends State<MyHomePage> {
TextField(
decoration: const InputDecoration(
border: OutlineInputBorder(),
labelText: 'Link della videochiamata',
labelText: 'Link del sito o della videochiamata',
),
onChanged: (value) => url = value,
),
Expand Down
4 changes: 3 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ flutter:
uses-material-design: true

assets:
- assets/
- assets/
- CHANGELOG.md
- CONTRIBUTING.md

0 comments on commit fc1c7e9

Please sign in to comment.