├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── CI.yml │ └── lint.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── data ├── Application.css ├── Themes.css ├── icons │ ├── classic │ │ ├── 128.svg │ │ ├── 16.svg │ │ ├── 24.svg │ │ ├── 32.svg │ │ ├── 48.svg │ │ ├── 64.svg │ │ ├── hicolor │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ └── 64.png │ │ ├── hicolor@2 │ │ │ ├── 128@2.png │ │ │ ├── 16@2.png │ │ │ ├── 24@2.png │ │ │ ├── 32@2.png │ │ │ ├── 48@2.png │ │ │ └── 64@2.png │ │ └── scalable.svg │ ├── default │ │ ├── 128.svg │ │ ├── 16.svg │ │ ├── 24.svg │ │ ├── 32.svg │ │ ├── 48.svg │ │ ├── 64.svg │ │ ├── hicolor │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ ├── 512.png │ │ │ └── 64.png │ │ ├── hicolor@2 │ │ │ ├── 128@2.png │ │ │ ├── 16@2.png │ │ │ ├── 24@2.png │ │ │ ├── 32@2.png │ │ │ ├── 48@2.png │ │ │ └── 64@2.png │ │ └── scalable.svg │ ├── halloween │ │ ├── 128.svg │ │ ├── 16.svg │ │ ├── 24.svg │ │ ├── 32.svg │ │ ├── 48.svg │ │ ├── 64.svg │ │ ├── hicolor │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ └── 64.png │ │ ├── hicolor@2 │ │ │ ├── 128@2.png │ │ │ ├── 16@2.png │ │ │ ├── 24@2.png │ │ │ ├── 32@2.png │ │ │ ├── 48@2.png │ │ │ └── 64@2.png │ │ └── scalable.svg │ └── pride │ │ ├── 128.svg │ │ ├── 16.svg │ │ ├── 24.svg │ │ ├── 32.svg │ │ ├── 48.svg │ │ ├── 64.svg │ │ ├── hicolor │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 24.png │ │ ├── 32.png │ │ ├── 48.png │ │ └── 64.png │ │ ├── hicolor@2 │ │ ├── 128@2.png │ │ ├── 16@2.png │ │ ├── 24@2.png │ │ ├── 32@2.png │ │ ├── 48@2.png │ │ └── 64@2.png │ │ └── scalable.svg ├── jorts.desktop.in ├── jorts.gresource.xml ├── jorts.gschema.xml ├── jorts.metainfo.xml.in ├── meson.build ├── screenshots │ ├── ascii.png │ ├── default.png │ ├── preferences-dark.png │ ├── preferences-light.png │ ├── scribbly.png │ └── spread.png └── stylesheets.sh ├── io.github.ellie_commons.jorts.flathub.yml ├── io.github.ellie_commons.jorts.yml ├── meson.build ├── meson_options.txt ├── po ├── LINGUAS ├── POTFILES ├── README.md ├── bn.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── bn.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── extra.pot │ ├── fi.po │ ├── fil.po │ ├── fr.po │ ├── hi.po │ ├── it.po │ ├── ja.po │ ├── lt.po │ ├── meson.build │ ├── nb.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt.po │ ├── pt_br.po │ ├── ru.po │ ├── sk.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ └── zh.po ├── fi.po ├── fil.po ├── fr.po ├── hi.po ├── io.github.ellie_commons.jorts.pot ├── it.po ├── ja.po ├── lt.po ├── meson.build ├── nb.po ├── nl.po ├── no.po ├── pl.po ├── pt.po ├── pt_br.po ├── ru.po ├── sk.po ├── sv.po ├── tr.po ├── uk.po └── zh.po ├── src ├── Application.vala ├── Config.vala.in ├── Constants.vala ├── Objects │ ├── NoteData.vala │ ├── Themes.vala │ ├── Zoom.vala │ └── Zoomkind.vala ├── Services │ ├── ColorController.vala │ ├── NoteManager.vala │ ├── ScribblyController.vala │ ├── Storage.vala │ └── ZoomController.vala ├── Utils │ ├── Libportal.vala │ └── Random.vala ├── Views │ ├── NoteView.vala │ └── PreferencesView.vala ├── Widgets │ ├── ActionBar.vala │ ├── EditableLabel.vala │ ├── Popover.vala │ ├── PopoverWidgets │ │ ├── ColorBox.vala │ │ ├── ColorPill.vala │ │ ├── MonospaceBox.vala │ │ └── ZoomBox.vala │ ├── PreferencesWidgets │ │ └── SettingsSwitch.vala │ └── TextView.vala ├── Windows │ ├── PreferenceWindow.vala │ └── StickyNoteWindow.vala └── meson.build └── windows ├── Jorts-Installer.exe ├── Jorts-Installer.nsi ├── beware.txt ├── deploy.sh ├── fonts ├── InterVariable.ttf └── RedactedScript-Regular.ttf ├── icons ├── ico.rc ├── icon-mini.ico ├── icon.ico ├── install.ico ├── settings-mini.ico ├── settings.ico └── uninstall.ico ├── loaders.cache └── prep.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/README.md -------------------------------------------------------------------------------- /data/Application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/Application.css -------------------------------------------------------------------------------- /data/Themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/Themes.css -------------------------------------------------------------------------------- /data/icons/classic/128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/128.svg -------------------------------------------------------------------------------- /data/icons/classic/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/16.svg -------------------------------------------------------------------------------- /data/icons/classic/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/24.svg -------------------------------------------------------------------------------- /data/icons/classic/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/32.svg -------------------------------------------------------------------------------- /data/icons/classic/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/48.svg -------------------------------------------------------------------------------- /data/icons/classic/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/64.svg -------------------------------------------------------------------------------- /data/icons/classic/hicolor/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor/128.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor/16.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor/24.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor/32.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor/48.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor/64.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor@2/128@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor@2/128@2.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor@2/16@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor@2/16@2.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor@2/24@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor@2/24@2.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor@2/32@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor@2/32@2.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor@2/48@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor@2/48@2.png -------------------------------------------------------------------------------- /data/icons/classic/hicolor@2/64@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/hicolor@2/64@2.png -------------------------------------------------------------------------------- /data/icons/classic/scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/classic/scalable.svg -------------------------------------------------------------------------------- /data/icons/default/128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/128.svg -------------------------------------------------------------------------------- /data/icons/default/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/16.svg -------------------------------------------------------------------------------- /data/icons/default/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/24.svg -------------------------------------------------------------------------------- /data/icons/default/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/32.svg -------------------------------------------------------------------------------- /data/icons/default/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/48.svg -------------------------------------------------------------------------------- /data/icons/default/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/64.svg -------------------------------------------------------------------------------- /data/icons/default/hicolor/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/128.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/16.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/24.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/256.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/32.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/48.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/512.png -------------------------------------------------------------------------------- /data/icons/default/hicolor/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor/64.png -------------------------------------------------------------------------------- /data/icons/default/hicolor@2/128@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor@2/128@2.png -------------------------------------------------------------------------------- /data/icons/default/hicolor@2/16@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor@2/16@2.png -------------------------------------------------------------------------------- /data/icons/default/hicolor@2/24@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor@2/24@2.png -------------------------------------------------------------------------------- /data/icons/default/hicolor@2/32@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor@2/32@2.png -------------------------------------------------------------------------------- /data/icons/default/hicolor@2/48@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor@2/48@2.png -------------------------------------------------------------------------------- /data/icons/default/hicolor@2/64@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/hicolor@2/64@2.png -------------------------------------------------------------------------------- /data/icons/default/scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/default/scalable.svg -------------------------------------------------------------------------------- /data/icons/halloween/128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/128.svg -------------------------------------------------------------------------------- /data/icons/halloween/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/16.svg -------------------------------------------------------------------------------- /data/icons/halloween/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/24.svg -------------------------------------------------------------------------------- /data/icons/halloween/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/32.svg -------------------------------------------------------------------------------- /data/icons/halloween/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/48.svg -------------------------------------------------------------------------------- /data/icons/halloween/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/64.svg -------------------------------------------------------------------------------- /data/icons/halloween/hicolor/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor/128.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor/16.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor/24.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor/32.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor/48.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor/64.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor@2/128@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor@2/128@2.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor@2/16@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor@2/16@2.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor@2/24@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor@2/24@2.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor@2/32@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor@2/32@2.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor@2/48@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor@2/48@2.png -------------------------------------------------------------------------------- /data/icons/halloween/hicolor@2/64@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/hicolor@2/64@2.png -------------------------------------------------------------------------------- /data/icons/halloween/scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/halloween/scalable.svg -------------------------------------------------------------------------------- /data/icons/pride/128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/128.svg -------------------------------------------------------------------------------- /data/icons/pride/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/16.svg -------------------------------------------------------------------------------- /data/icons/pride/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/24.svg -------------------------------------------------------------------------------- /data/icons/pride/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/32.svg -------------------------------------------------------------------------------- /data/icons/pride/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/48.svg -------------------------------------------------------------------------------- /data/icons/pride/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/64.svg -------------------------------------------------------------------------------- /data/icons/pride/hicolor/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor/128.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor/16.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor/24.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor/32.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor/48.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor/64.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor@2/128@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor@2/128@2.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor@2/16@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor@2/16@2.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor@2/24@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor@2/24@2.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor@2/32@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor@2/32@2.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor@2/48@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor@2/48@2.png -------------------------------------------------------------------------------- /data/icons/pride/hicolor@2/64@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/hicolor@2/64@2.png -------------------------------------------------------------------------------- /data/icons/pride/scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/icons/pride/scalable.svg -------------------------------------------------------------------------------- /data/jorts.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/jorts.desktop.in -------------------------------------------------------------------------------- /data/jorts.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/jorts.gresource.xml -------------------------------------------------------------------------------- /data/jorts.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/jorts.gschema.xml -------------------------------------------------------------------------------- /data/jorts.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/jorts.metainfo.xml.in -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/screenshots/ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/screenshots/ascii.png -------------------------------------------------------------------------------- /data/screenshots/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/screenshots/default.png -------------------------------------------------------------------------------- /data/screenshots/preferences-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/screenshots/preferences-dark.png -------------------------------------------------------------------------------- /data/screenshots/preferences-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/screenshots/preferences-light.png -------------------------------------------------------------------------------- /data/screenshots/scribbly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/screenshots/scribbly.png -------------------------------------------------------------------------------- /data/screenshots/spread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/screenshots/spread.png -------------------------------------------------------------------------------- /data/stylesheets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/data/stylesheets.sh -------------------------------------------------------------------------------- /io.github.ellie_commons.jorts.flathub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/io.github.ellie_commons.jorts.flathub.yml -------------------------------------------------------------------------------- /io.github.ellie_commons.jorts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/io.github.ellie_commons.jorts.yml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/README.md -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/es.po -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/LINGUAS -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/POTFILES -------------------------------------------------------------------------------- /po/extra/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/bn.po -------------------------------------------------------------------------------- /po/extra/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/cs.po -------------------------------------------------------------------------------- /po/extra/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/da.po -------------------------------------------------------------------------------- /po/extra/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/de.po -------------------------------------------------------------------------------- /po/extra/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/el.po -------------------------------------------------------------------------------- /po/extra/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/es.po -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/extra.pot -------------------------------------------------------------------------------- /po/extra/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/fi.po -------------------------------------------------------------------------------- /po/extra/fil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/fil.po -------------------------------------------------------------------------------- /po/extra/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/fr.po -------------------------------------------------------------------------------- /po/extra/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/hi.po -------------------------------------------------------------------------------- /po/extra/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/it.po -------------------------------------------------------------------------------- /po/extra/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/ja.po -------------------------------------------------------------------------------- /po/extra/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/lt.po -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/meson.build -------------------------------------------------------------------------------- /po/extra/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/nb.po -------------------------------------------------------------------------------- /po/extra/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/nl.po -------------------------------------------------------------------------------- /po/extra/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/no.po -------------------------------------------------------------------------------- /po/extra/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/pl.po -------------------------------------------------------------------------------- /po/extra/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/pt.po -------------------------------------------------------------------------------- /po/extra/pt_br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/pt_br.po -------------------------------------------------------------------------------- /po/extra/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/ru.po -------------------------------------------------------------------------------- /po/extra/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/sk.po -------------------------------------------------------------------------------- /po/extra/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/sv.po -------------------------------------------------------------------------------- /po/extra/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/tr.po -------------------------------------------------------------------------------- /po/extra/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/uk.po -------------------------------------------------------------------------------- /po/extra/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/extra/zh.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/fil.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/io.github.ellie_commons.jorts.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/io.github.ellie_commons.jorts.pot -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/no.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/pt_br.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/po/zh.po -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Application.vala -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Config.vala.in -------------------------------------------------------------------------------- /src/Constants.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Constants.vala -------------------------------------------------------------------------------- /src/Objects/NoteData.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Objects/NoteData.vala -------------------------------------------------------------------------------- /src/Objects/Themes.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Objects/Themes.vala -------------------------------------------------------------------------------- /src/Objects/Zoom.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Objects/Zoom.vala -------------------------------------------------------------------------------- /src/Objects/Zoomkind.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Objects/Zoomkind.vala -------------------------------------------------------------------------------- /src/Services/ColorController.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Services/ColorController.vala -------------------------------------------------------------------------------- /src/Services/NoteManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Services/NoteManager.vala -------------------------------------------------------------------------------- /src/Services/ScribblyController.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Services/ScribblyController.vala -------------------------------------------------------------------------------- /src/Services/Storage.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Services/Storage.vala -------------------------------------------------------------------------------- /src/Services/ZoomController.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Services/ZoomController.vala -------------------------------------------------------------------------------- /src/Utils/Libportal.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Utils/Libportal.vala -------------------------------------------------------------------------------- /src/Utils/Random.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Utils/Random.vala -------------------------------------------------------------------------------- /src/Views/NoteView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Views/NoteView.vala -------------------------------------------------------------------------------- /src/Views/PreferencesView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Views/PreferencesView.vala -------------------------------------------------------------------------------- /src/Widgets/ActionBar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/ActionBar.vala -------------------------------------------------------------------------------- /src/Widgets/EditableLabel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/EditableLabel.vala -------------------------------------------------------------------------------- /src/Widgets/Popover.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/Popover.vala -------------------------------------------------------------------------------- /src/Widgets/PopoverWidgets/ColorBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/PopoverWidgets/ColorBox.vala -------------------------------------------------------------------------------- /src/Widgets/PopoverWidgets/ColorPill.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/PopoverWidgets/ColorPill.vala -------------------------------------------------------------------------------- /src/Widgets/PopoverWidgets/MonospaceBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/PopoverWidgets/MonospaceBox.vala -------------------------------------------------------------------------------- /src/Widgets/PopoverWidgets/ZoomBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/PopoverWidgets/ZoomBox.vala -------------------------------------------------------------------------------- /src/Widgets/PreferencesWidgets/SettingsSwitch.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/PreferencesWidgets/SettingsSwitch.vala -------------------------------------------------------------------------------- /src/Widgets/TextView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Widgets/TextView.vala -------------------------------------------------------------------------------- /src/Windows/PreferenceWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Windows/PreferenceWindow.vala -------------------------------------------------------------------------------- /src/Windows/StickyNoteWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/Windows/StickyNoteWindow.vala -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/src/meson.build -------------------------------------------------------------------------------- /windows/Jorts-Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/Jorts-Installer.exe -------------------------------------------------------------------------------- /windows/Jorts-Installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/Jorts-Installer.nsi -------------------------------------------------------------------------------- /windows/beware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/beware.txt -------------------------------------------------------------------------------- /windows/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/deploy.sh -------------------------------------------------------------------------------- /windows/fonts/InterVariable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/fonts/InterVariable.ttf -------------------------------------------------------------------------------- /windows/fonts/RedactedScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/fonts/RedactedScript-Regular.ttf -------------------------------------------------------------------------------- /windows/icons/ico.rc: -------------------------------------------------------------------------------- 1 | 0 ICON "icon.ico" -------------------------------------------------------------------------------- /windows/icons/icon-mini.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/icons/icon-mini.ico -------------------------------------------------------------------------------- /windows/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/icons/icon.ico -------------------------------------------------------------------------------- /windows/icons/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/icons/install.ico -------------------------------------------------------------------------------- /windows/icons/settings-mini.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/icons/settings-mini.ico -------------------------------------------------------------------------------- /windows/icons/settings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/icons/settings.ico -------------------------------------------------------------------------------- /windows/icons/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/icons/uninstall.ico -------------------------------------------------------------------------------- /windows/loaders.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/loaders.cache -------------------------------------------------------------------------------- /windows/prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/jorts/HEAD/windows/prep.sh --------------------------------------------------------------------------------