diff --git a/README.md b/README.md index e386d6f..b49ae59 100644 --- a/README.md +++ b/README.md @@ -33,20 +33,25 @@
-### **Features** +## **Features** -**Deasciifier:** Adapt your texts to Turkish with one click. +| Deasciifier | Asciifier | Correction Bubble | Auto | +|---|---|---|---| +| | | | | +| Adapt your texts to Turkish with one click. | Translate Turkish texts to ASCII with one click. | Use correction bubble for manuel edits. | Automatically deasciify as you type. | -**Asciifier:** Also, set your Turkish texts to ASCII with one click. +### **Other features worth mentioning** **Offline:** It works offline, no internet required. -**Tray Application:** It runs as a tray application, not bothering you with dummy screens. - -**Multiplatform:** Every platform are supported; macOS, Windows, and even Linux. +**Multiplatform:** Every platform are supported; **macOS**, **Windows**, and **Linux**. **Auto Update:** It comes with an updater, you can easily update the app. +## **Download** + +[Click go to the latest release](https://github.com/ridvanaltun/turkish-deasciifier/releases/latest) + ## **Authors** This project exists thanks to all the people who contribute. diff --git a/docs/asciify.gif b/docs/asciify.gif new file mode 100644 index 0000000..2a66ec5 Binary files /dev/null and b/docs/asciify.gif differ diff --git a/docs/auto.gif b/docs/auto.gif new file mode 100644 index 0000000..cd189bb Binary files /dev/null and b/docs/auto.gif differ diff --git a/docs/correction-bubble.gif b/docs/correction-bubble.gif new file mode 100644 index 0000000..ae687ef Binary files /dev/null and b/docs/correction-bubble.gif differ diff --git a/docs/deasciify.gif b/docs/deasciify.gif new file mode 100644 index 0000000..a22b88c Binary files /dev/null and b/docs/deasciify.gif differ diff --git a/package-lock.json b/package-lock.json index f8fa587..6024fba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "license": "MIT", "dependencies": { "electron-log": "^4.4.6", + "electron-positioner": "^4.1.0", "electron-store": "^6.0.1", "electron-updater": "^4.6.5", "electron-util": "^0.17.2" @@ -4760,6 +4761,11 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, + "node_modules/electron-positioner": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/electron-positioner/-/electron-positioner-4.1.0.tgz", + "integrity": "sha512-726DfbI9ZNoCg+Fcu6XLuTKTnzf+6nFqv7h+K/V6Ug7IbaPMI7s9S8URnGtWFCy5N5PL4HSzRFF2mXuinftDdg==" + }, "node_modules/electron-publish": { "version": "22.14.13", "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-22.14.13.tgz", @@ -17763,6 +17769,11 @@ } } }, + "electron-positioner": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/electron-positioner/-/electron-positioner-4.1.0.tgz", + "integrity": "sha512-726DfbI9ZNoCg+Fcu6XLuTKTnzf+6nFqv7h+K/V6Ug7IbaPMI7s9S8URnGtWFCy5N5PL4HSzRFF2mXuinftDdg==" + }, "electron-publish": { "version": "22.14.13", "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-22.14.13.tgz", diff --git a/package.json b/package.json index 6618a7e..aa4fd05 100755 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "homepage": "https://github.com/ridvanaltun/turkish-deasciifier#readme", "dependencies": { "electron-log": "^4.4.6", + "electron-positioner": "^4.1.0", "electron-store": "^6.0.1", "electron-updater": "^4.6.5", "electron-util": "^0.17.2" diff --git a/src/client/index.html b/src/client/index.html index 3dc54f1..461a68e 100644 --- a/src/client/index.html +++ b/src/client/index.html @@ -254,8 +254,8 @@ }); ipcRenderer.on("SET_ARROW_VISIBILITY", (_, enabled) => { - if (enabled) document.getElementById('arrow').style.display = "block" - else document.getElementById('arrow').style.display = "table" + if (enabled) document.getElementById('arrow').style.visibility = "visible" + else document.getElementById('arrow').style.visibility = "hidden" });