diff --git a/README.md b/README.md index 9a4b005..4a3b646 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,26 @@ Take for instance the SHA-256 hash of the initial version of this app is: **d046 Any other hash means it was modified some way. +## Installation + +Currently this is app is only available for Windows and Linux. + +### Windows + +On Windows, just download the latest release on the Releases tab and open the `filechecksum.exe` inside the .rar file. + +### Linux + +1. Install dependencies: + +```shell +sudo apt-get libgcrypt20 libgtk-3-0 liblz4-1 liblzma5 libstdc++6 +``` + +2. Download the latest release `linux-arm64-v0.1.0.zip`. + +3. Double-click to open `filechecksum`. + ## App screenshot and usage Some desktop app screenshots: diff --git a/debian/debian.yaml b/debian/debian.yaml deleted file mode 100644 index ba4cce4..0000000 --- a/debian/debian.yaml +++ /dev/null @@ -1,17 +0,0 @@ -flutter_app: - command: filechecksum - arch: x64 - parent: /usr/local/lib - -control: - Package: filechecksum - Version: 0.1.0 - Architecture: amd64 - Essential: no - Priority: optional - Homepage: https://github.com/alexrintt/filechecksum - # To find packages you depend on run: - # flutter_to_debian dependencies - Depends: libgcrypt20,libgtk-3-0,liblz4-1,liblzma5,libstdc++6 - Maintainer: Alex Rintt - Description: Windows application to generate file hashes (checksum) for SHA and MD5 algorithms. diff --git a/debian/gui/filechecksum.desktop b/debian/gui/filechecksum.desktop deleted file mode 100644 index d9982b9..0000000 --- a/debian/gui/filechecksum.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Version=0.1.0 -Name=File Checksum -GenericName=File Checksum -Comment=Windows application to generate file hashes (checksum) for SHA and MD5 algorithms. -Terminal=false -Type=Application -Categories=Utility -Keywords=flutter;md5;sha;checksum;file; \ No newline at end of file diff --git a/debian/gui/filechecksum.png b/debian/gui/filechecksum.png deleted file mode 100644 index 35b11b8..0000000 Binary files a/debian/gui/filechecksum.png and /dev/null differ diff --git a/pubspec.yaml b/pubspec.yaml index 749f128..1e5cd39 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -21,6 +21,7 @@ dev_dependencies: sdk: flutter flutter_launcher_icons: ^0.10.0 flutter_lints: ^2.0.0 + # Use to find required dependencies flutter_to_debian: git: url: https://github.com/alexrintt/flutter_to_debian