├── .github ├── FUNDING.yml └── workflows │ └── flatpak.yml ├── .gitignore ├── AUTHORS ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── data ├── assets │ └── map.png ├── icons │ ├── io.github.lainsce.Notejot.svg │ ├── marker.svg │ ├── meson.build │ └── quote-symbolic.svg ├── io.github.lainsce.Notejot.desktop.in ├── io.github.lainsce.Notejot.gresource.xml ├── io.github.lainsce.Notejot.gschema.xml ├── io.github.lainsce.Notejot.metainfo.xml.in ├── meson.build ├── shot-dark.png ├── shot.png ├── style.css └── style_dark.css ├── io.github.lainsce.Notejot.Devel.json ├── io.github.lainsce.Notejot.doap ├── meson.build ├── meson_options.txt ├── po ├── LINGUAS ├── POTFILES ├── README.md ├── ca.po ├── cs.po ├── da.po ├── de.po ├── es.po ├── fr.po ├── gl.po ├── hr.po ├── io.github.lainsce.Notejot.pot ├── it.po ├── ja.po ├── lt.po ├── meson.build ├── nl.po ├── oc.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ru.po ├── sv.po └── tr.po └── src ├── Application.vala ├── Window.vala ├── dialogs ├── AddTagDialog.vala ├── EntryImagesDialog.vala ├── EntryLocationDialog.vala └── EntryTagsDialog.vala ├── models ├── DataManager.vala └── DataModels.vala ├── services ├── JsonObject.vala ├── MapStyle.vala └── ReminderService.vala ├── settings ├── SettingsManager.vala └── SettingsWindow.vala ├── views ├── DeletedEmptyStateView.vala ├── EmptyStateView.vala ├── EntriesView.vala ├── EntryEditorView.vala ├── InsightsView.vala ├── PlacesView.vala └── Sidebar.vala └── widgets ├── TagRow.vala └── WelcomeScreen.vala /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/flatpak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/.github/workflows/flatpak.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/AUTHORS -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/README.md -------------------------------------------------------------------------------- /data/assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/assets/map.png -------------------------------------------------------------------------------- /data/icons/io.github.lainsce.Notejot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/icons/io.github.lainsce.Notejot.svg -------------------------------------------------------------------------------- /data/icons/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/icons/marker.svg -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/icons/quote-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/icons/quote-symbolic.svg -------------------------------------------------------------------------------- /data/io.github.lainsce.Notejot.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/io.github.lainsce.Notejot.desktop.in -------------------------------------------------------------------------------- /data/io.github.lainsce.Notejot.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/io.github.lainsce.Notejot.gresource.xml -------------------------------------------------------------------------------- /data/io.github.lainsce.Notejot.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/io.github.lainsce.Notejot.gschema.xml -------------------------------------------------------------------------------- /data/io.github.lainsce.Notejot.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/io.github.lainsce.Notejot.metainfo.xml.in -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/shot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/shot-dark.png -------------------------------------------------------------------------------- /data/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/shot.png -------------------------------------------------------------------------------- /data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/style.css -------------------------------------------------------------------------------- /data/style_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/data/style_dark.css -------------------------------------------------------------------------------- /io.github.lainsce.Notejot.Devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/io.github.lainsce.Notejot.Devel.json -------------------------------------------------------------------------------- /io.github.lainsce.Notejot.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/io.github.lainsce.Notejot.doap -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/README.md -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/io.github.lainsce.Notejot.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/io.github.lainsce.Notejot.pot -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(app_id, preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/po/tr.po -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/Application.vala -------------------------------------------------------------------------------- /src/Window.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/Window.vala -------------------------------------------------------------------------------- /src/dialogs/AddTagDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/dialogs/AddTagDialog.vala -------------------------------------------------------------------------------- /src/dialogs/EntryImagesDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/dialogs/EntryImagesDialog.vala -------------------------------------------------------------------------------- /src/dialogs/EntryLocationDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/dialogs/EntryLocationDialog.vala -------------------------------------------------------------------------------- /src/dialogs/EntryTagsDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/dialogs/EntryTagsDialog.vala -------------------------------------------------------------------------------- /src/models/DataManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/models/DataManager.vala -------------------------------------------------------------------------------- /src/models/DataModels.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/models/DataModels.vala -------------------------------------------------------------------------------- /src/services/JsonObject.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/services/JsonObject.vala -------------------------------------------------------------------------------- /src/services/MapStyle.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/services/MapStyle.vala -------------------------------------------------------------------------------- /src/services/ReminderService.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/services/ReminderService.vala -------------------------------------------------------------------------------- /src/settings/SettingsManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/settings/SettingsManager.vala -------------------------------------------------------------------------------- /src/settings/SettingsWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/settings/SettingsWindow.vala -------------------------------------------------------------------------------- /src/views/DeletedEmptyStateView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/DeletedEmptyStateView.vala -------------------------------------------------------------------------------- /src/views/EmptyStateView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/EmptyStateView.vala -------------------------------------------------------------------------------- /src/views/EntriesView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/EntriesView.vala -------------------------------------------------------------------------------- /src/views/EntryEditorView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/EntryEditorView.vala -------------------------------------------------------------------------------- /src/views/InsightsView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/InsightsView.vala -------------------------------------------------------------------------------- /src/views/PlacesView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/PlacesView.vala -------------------------------------------------------------------------------- /src/views/Sidebar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/views/Sidebar.vala -------------------------------------------------------------------------------- /src/widgets/TagRow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/widgets/TagRow.vala -------------------------------------------------------------------------------- /src/widgets/WelcomeScreen.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lainsce/notejot/HEAD/src/widgets/WelcomeScreen.vala --------------------------------------------------------------------------------