├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── README.md ├── colors └── word.lua ├── docs ├── .nojekyll ├── CNAME ├── index.html ├── logo.png └── screenshot1.png ├── manifest.json ├── plugins ├── autocorrect.lua ├── chapters.lua ├── formatting.lua ├── gitsave.lua ├── sessionclock.lua ├── synonyms │ ├── init.lua │ └── synonyms ├── tag_highlight.lua └── write-xl.lua ├── resources └── icons │ ├── icon.ico │ ├── icon.inl │ ├── icon.png │ ├── icon.rc │ └── icon.res ├── scripts ├── convert-to-md.pl └── dictionary │ ├── DA.json │ ├── DB.json │ ├── DC.json │ ├── DD.json │ ├── DE.json │ ├── DF.json │ ├── DG.json │ ├── DH.json │ ├── DI.json │ ├── DJ.json │ ├── DK.json │ ├── DL.json │ ├── DM.json │ ├── DN.json │ ├── DO.json │ ├── DP.json │ ├── DQ.json │ ├── DR.json │ ├── DS.json │ ├── DT.json │ ├── DU.json │ ├── DV.json │ ├── DW.json │ ├── DX.json │ ├── DY.json │ └── DZ.json └── template └── app ├── build.gradle └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── litexl │ └── writexl │ └── writexlActivity.java └── res ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi └── ic_launcher.png ├── mipmap-xxxhdpi └── ic_launcher.png └── values └── strings.xml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | user 2 | *.so 3 | *.a 4 | write-xl.apk 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/README.md -------------------------------------------------------------------------------- /colors/word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/colors/word.lua -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | write.lite-xl.com -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/docs/screenshot1.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/manifest.json -------------------------------------------------------------------------------- /plugins/autocorrect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/autocorrect.lua -------------------------------------------------------------------------------- /plugins/chapters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/chapters.lua -------------------------------------------------------------------------------- /plugins/formatting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/formatting.lua -------------------------------------------------------------------------------- /plugins/gitsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/gitsave.lua -------------------------------------------------------------------------------- /plugins/sessionclock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/sessionclock.lua -------------------------------------------------------------------------------- /plugins/synonyms/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/synonyms/init.lua -------------------------------------------------------------------------------- /plugins/synonyms/synonyms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/synonyms/synonyms -------------------------------------------------------------------------------- /plugins/tag_highlight.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/tag_highlight.lua -------------------------------------------------------------------------------- /plugins/write-xl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/plugins/write-xl.lua -------------------------------------------------------------------------------- /resources/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/resources/icons/icon.ico -------------------------------------------------------------------------------- /resources/icons/icon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/resources/icons/icon.inl -------------------------------------------------------------------------------- /resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/resources/icons/icon.png -------------------------------------------------------------------------------- /resources/icons/icon.rc: -------------------------------------------------------------------------------- 1 | id ICON "icon.ico" 2 | 3 | -------------------------------------------------------------------------------- /resources/icons/icon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/resources/icons/icon.res -------------------------------------------------------------------------------- /scripts/convert-to-md.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/convert-to-md.pl -------------------------------------------------------------------------------- /scripts/dictionary/DA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DA.json -------------------------------------------------------------------------------- /scripts/dictionary/DB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DB.json -------------------------------------------------------------------------------- /scripts/dictionary/DC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DC.json -------------------------------------------------------------------------------- /scripts/dictionary/DD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DD.json -------------------------------------------------------------------------------- /scripts/dictionary/DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DE.json -------------------------------------------------------------------------------- /scripts/dictionary/DF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DF.json -------------------------------------------------------------------------------- /scripts/dictionary/DG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DG.json -------------------------------------------------------------------------------- /scripts/dictionary/DH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DH.json -------------------------------------------------------------------------------- /scripts/dictionary/DI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DI.json -------------------------------------------------------------------------------- /scripts/dictionary/DJ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DJ.json -------------------------------------------------------------------------------- /scripts/dictionary/DK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DK.json -------------------------------------------------------------------------------- /scripts/dictionary/DL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DL.json -------------------------------------------------------------------------------- /scripts/dictionary/DM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DM.json -------------------------------------------------------------------------------- /scripts/dictionary/DN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DN.json -------------------------------------------------------------------------------- /scripts/dictionary/DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DO.json -------------------------------------------------------------------------------- /scripts/dictionary/DP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DP.json -------------------------------------------------------------------------------- /scripts/dictionary/DQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DQ.json -------------------------------------------------------------------------------- /scripts/dictionary/DR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DR.json -------------------------------------------------------------------------------- /scripts/dictionary/DS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DS.json -------------------------------------------------------------------------------- /scripts/dictionary/DT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DT.json -------------------------------------------------------------------------------- /scripts/dictionary/DU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DU.json -------------------------------------------------------------------------------- /scripts/dictionary/DV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DV.json -------------------------------------------------------------------------------- /scripts/dictionary/DW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DW.json -------------------------------------------------------------------------------- /scripts/dictionary/DX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DX.json -------------------------------------------------------------------------------- /scripts/dictionary/DY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DY.json -------------------------------------------------------------------------------- /scripts/dictionary/DZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/scripts/dictionary/DZ.json -------------------------------------------------------------------------------- /template/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/build.gradle -------------------------------------------------------------------------------- /template/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template/app/src/main/java/com/litexl/writexl/writexlActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/java/com/litexl/writexl/writexlActivity.java -------------------------------------------------------------------------------- /template/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamharrison/write-xl/HEAD/template/app/src/main/res/values/strings.xml --------------------------------------------------------------------------------