├── .github └── FUNDING.yml ├── .gitignore ├── Assets └── showcase │ ├── darkmode │ └── switching.gif │ ├── notifications │ ├── badgecount.png │ ├── fullscreen_dark.png │ ├── fullscreen_light.png │ ├── notificationcenter_dark.png │ ├── notificationcenter_light.png │ ├── tracked_changes_dark.png │ └── tracked_changes_light.png │ ├── preferences │ ├── preferences_font_family.png │ ├── preferences_notifications_tracked_changes.png │ ├── preferences_pane.png │ ├── preferences_pane_extended.png │ ├── preferences_pane_theme_selection_pdf.png │ └── preferences_wordcount_tracking.png │ ├── updates │ ├── changelog_dark.png │ ├── changelog_extended_dark.png │ ├── changelog_extended_light.png │ └── changelog_light.png │ └── wordcount │ ├── wordcount_notification_hour.png │ ├── wordcount_notification_target.png │ ├── wordcount_overview_dark.png │ └── wordcount_overview_light.png ├── Icons ├── Mac.icns ├── Mac_darkmode.icns ├── Mac_lightmode.icns ├── Windows.ico ├── base_icon.png └── base_icon_white.png ├── LICENSE ├── README.md ├── Scripts ├── appversion.js ├── backup.js ├── bundle_scripts.sh ├── chart.js ├── colormode.js ├── css.js ├── extension_writefull.js ├── main.js ├── notifications.js ├── notificationsbadge.js ├── preferences.js ├── update.js ├── util.js └── wordcount.js ├── Tests ├── update.spec.js └── util.spec.js ├── bundled_script.js ├── compile-all.sh ├── jest.config.js └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [fjwillemsen] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/showcase/darkmode/switching.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/darkmode/switching.gif -------------------------------------------------------------------------------- /Assets/showcase/notifications/badgecount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/badgecount.png -------------------------------------------------------------------------------- /Assets/showcase/notifications/fullscreen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/fullscreen_dark.png -------------------------------------------------------------------------------- /Assets/showcase/notifications/fullscreen_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/fullscreen_light.png -------------------------------------------------------------------------------- /Assets/showcase/notifications/notificationcenter_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/notificationcenter_dark.png -------------------------------------------------------------------------------- /Assets/showcase/notifications/notificationcenter_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/notificationcenter_light.png -------------------------------------------------------------------------------- /Assets/showcase/notifications/tracked_changes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/tracked_changes_dark.png -------------------------------------------------------------------------------- /Assets/showcase/notifications/tracked_changes_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/notifications/tracked_changes_light.png -------------------------------------------------------------------------------- /Assets/showcase/preferences/preferences_font_family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/preferences/preferences_font_family.png -------------------------------------------------------------------------------- /Assets/showcase/preferences/preferences_notifications_tracked_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/preferences/preferences_notifications_tracked_changes.png -------------------------------------------------------------------------------- /Assets/showcase/preferences/preferences_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/preferences/preferences_pane.png -------------------------------------------------------------------------------- /Assets/showcase/preferences/preferences_pane_extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/preferences/preferences_pane_extended.png -------------------------------------------------------------------------------- /Assets/showcase/preferences/preferences_pane_theme_selection_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/preferences/preferences_pane_theme_selection_pdf.png -------------------------------------------------------------------------------- /Assets/showcase/preferences/preferences_wordcount_tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/preferences/preferences_wordcount_tracking.png -------------------------------------------------------------------------------- /Assets/showcase/updates/changelog_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/updates/changelog_dark.png -------------------------------------------------------------------------------- /Assets/showcase/updates/changelog_extended_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/updates/changelog_extended_dark.png -------------------------------------------------------------------------------- /Assets/showcase/updates/changelog_extended_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/updates/changelog_extended_light.png -------------------------------------------------------------------------------- /Assets/showcase/updates/changelog_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/updates/changelog_light.png -------------------------------------------------------------------------------- /Assets/showcase/wordcount/wordcount_notification_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/wordcount/wordcount_notification_hour.png -------------------------------------------------------------------------------- /Assets/showcase/wordcount/wordcount_notification_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/wordcount/wordcount_notification_target.png -------------------------------------------------------------------------------- /Assets/showcase/wordcount/wordcount_overview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/wordcount/wordcount_overview_dark.png -------------------------------------------------------------------------------- /Assets/showcase/wordcount/wordcount_overview_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Assets/showcase/wordcount/wordcount_overview_light.png -------------------------------------------------------------------------------- /Icons/Mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Icons/Mac.icns -------------------------------------------------------------------------------- /Icons/Mac_darkmode.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Icons/Mac_darkmode.icns -------------------------------------------------------------------------------- /Icons/Mac_lightmode.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Icons/Mac_lightmode.icns -------------------------------------------------------------------------------- /Icons/Windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Icons/Windows.ico -------------------------------------------------------------------------------- /Icons/base_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Icons/base_icon.png -------------------------------------------------------------------------------- /Icons/base_icon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Icons/base_icon_white.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/appversion.js: -------------------------------------------------------------------------------- 1 | const appversion = "1.9.3"; 2 | -------------------------------------------------------------------------------- /Scripts/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/backup.js -------------------------------------------------------------------------------- /Scripts/bundle_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/bundle_scripts.sh -------------------------------------------------------------------------------- /Scripts/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/chart.js -------------------------------------------------------------------------------- /Scripts/colormode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/colormode.js -------------------------------------------------------------------------------- /Scripts/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/css.js -------------------------------------------------------------------------------- /Scripts/extension_writefull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/extension_writefull.js -------------------------------------------------------------------------------- /Scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/main.js -------------------------------------------------------------------------------- /Scripts/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/notifications.js -------------------------------------------------------------------------------- /Scripts/notificationsbadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/notificationsbadge.js -------------------------------------------------------------------------------- /Scripts/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/preferences.js -------------------------------------------------------------------------------- /Scripts/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/update.js -------------------------------------------------------------------------------- /Scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/util.js -------------------------------------------------------------------------------- /Scripts/wordcount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Scripts/wordcount.js -------------------------------------------------------------------------------- /Tests/update.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Tests/update.spec.js -------------------------------------------------------------------------------- /Tests/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/Tests/util.spec.js -------------------------------------------------------------------------------- /bundled_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/bundled_script.js -------------------------------------------------------------------------------- /compile-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/compile-all.sh -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjwillemsen/NativeOverleaf/HEAD/package.json --------------------------------------------------------------------------------