diff --git a/README.md b/README.md index 86b166c..6756860 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # Bangla Dictionary -A feature-riched dictionary for translating words from English to Bangla and vice-versa. - +A feature-rich dictionary for translating words from English to Bangla and vice-versa. ## Features @@ -17,7 +16,6 @@ A feature-riched dictionary for translating words from English to Bangla and vic 1. Stay Above Other Windows 1. Auto Detect Language - ## Build and Run You need `Python v3.5+` and `PyQt5` installed to run this app from source. @@ -37,8 +35,16 @@ You can also create standalone executable from the source. ### Create Standalone Executable +#### Linux + +```sh +pyinstaller -w -i assets/icon.ico -n "Bangla Dictionary" --add-data "assets:assets" -F main.py +``` + +#### Windows + ```sh -pyinstaller -w -i assets/icon.ico -n "Bangla Dictionary" --add-data assets:assets -F main.py +pyinstaller -w -i assets/icon.ico -n "Bangla Dictionary" --add-data "assets;assets" -F main.py ``` Now look inside the `dist` directory (created automatically) for the standalone executable. @@ -61,7 +67,7 @@ sudo cp assets/icon.png /opt/apps/bangla-dictionary/icon.png #### Create Desktop Entry: ```sh -cat < /usr/share/applications/bangla-dictionary.desktop +cat <