├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── COPYING ├── COPYING-DOCS ├── ChangeLog ├── NEWS ├── README.md ├── TODO ├── config.h.in ├── data ├── gnote.1 ├── icons │ ├── hicolor_actions_16x16_note-new.png │ ├── hicolor_actions_16x16_note-new.svg │ ├── hicolor_actions_16x16_notebook-new.png │ ├── hicolor_actions_16x16_notebook-new.svg │ ├── hicolor_actions_22x22_filter-note-all.png │ ├── hicolor_actions_22x22_filter-note-all.xcf.bz2 │ ├── hicolor_actions_22x22_filter-note-unfiled.png │ ├── hicolor_actions_22x22_filter-note-unfiled.svg │ ├── hicolor_actions_22x22_note-new.png │ ├── hicolor_actions_22x22_note-new.svg │ ├── hicolor_actions_22x22_notebook-new.png │ ├── hicolor_actions_22x22_notebook-new.svg │ ├── hicolor_actions_24x24_filter-note-all.png │ ├── hicolor_actions_24x24_filter-note-unfiled.png │ ├── hicolor_actions_24x24_note-new.png │ ├── hicolor_actions_24x24_notebook-new.png │ ├── hicolor_actions_48x48_notebook-new.png │ ├── hicolor_actions_scalable_notebook-new.svg │ ├── hicolor_apps_16x16_org.gnome.Gnote.png │ ├── hicolor_apps_16x16_org.gnome.Gnote.xcf.bz2 │ ├── hicolor_apps_22x22_org.gnome.Gnote.png │ ├── hicolor_apps_22x22_org.gnome.Gnote.xcf.bz2 │ ├── hicolor_apps_24x24_org.gnome.Gnote.png │ ├── hicolor_apps_256x256_org.gnome.Gnote.png │ ├── hicolor_apps_32x32_org.gnome.Gnote.png │ ├── hicolor_apps_48x48_org.gnome.Gnote.png │ ├── hicolor_apps_scalable_org.gnome.Gnote.svg │ ├── hicolor_places_16x16_note.png │ ├── hicolor_places_16x16_note.xcf.bz2 │ ├── hicolor_places_16x16_notebook.png │ ├── hicolor_places_16x16_notebook.svg │ ├── hicolor_places_22x22_active-notes.png │ ├── hicolor_places_22x22_active-notes.svg │ ├── hicolor_places_22x22_note.png │ ├── hicolor_places_22x22_note.svg │ ├── hicolor_places_22x22_notebook.png │ ├── hicolor_places_22x22_notebook.svg │ ├── hicolor_places_22x22_special-notes.png │ ├── hicolor_places_22x22_special-notes.svg │ ├── hicolor_places_24x24_note.png │ ├── hicolor_places_24x24_notebook.png │ ├── hicolor_status_16x16_pin-active.png │ ├── hicolor_status_16x16_pin-down.png │ ├── hicolor_status_16x16_pin-up.png │ └── meson.build ├── images │ ├── artwork.svg │ ├── gnote.svg │ └── tag.svg ├── meson.build ├── org.gnome.Gnote.appdata.xml.in ├── org.gnome.Gnote.desktop.in ├── org.gnome.Gnote.search-provider.ini ├── org.gnome.Gnote.service.in ├── org.gnome.gnote.gschema.xml └── shortcuts-gnote.ui ├── gnote.doap ├── help ├── C │ ├── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-addin-table-of-contents.png │ │ ├── gnote-new-note.png │ │ ├── gnote-pindown.png │ │ ├── gnote-pinup.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-preferences-synchronization.png │ │ ├── gnote-search-all-notes.png │ │ ├── gnote-sync-progress.png │ │ ├── gnote-syncprefs-advanced.png │ │ ├── gnote-syncprefs-gvfs.png │ │ ├── gnote-syncprefs-local.png │ │ ├── gnote-syncprefs-webdav.png │ │ ├── gnote-template-note.png │ │ ├── gnote-tools.png │ │ ├── logo32.png │ │ ├── note-template.png │ │ └── notebook-icon.png │ ├── gnote-addin-bugzillalink.page │ ├── gnote-addin-fixedwidth.page │ ├── gnote-addin-html.page │ ├── gnote-addin-notedirwatcher.page │ ├── gnote-addin-noteoftheday.page │ ├── gnote-addin-print.page │ ├── gnote-addin-readonly.page │ ├── gnote-addin-replacetitle.page │ ├── gnote-addin-specialnotes.page │ ├── gnote-addin-sync-gvfs.page │ ├── gnote-addin-sync-local.page │ ├── gnote-addin-sync-webdav.page │ ├── gnote-addin-tableofcontents.page │ ├── gnote-addin-timestamp.page │ ├── gnote-addin-underline.page │ ├── gnote-addins-preferences.page │ ├── gnote-bulleted-lists.page │ ├── gnote-common-problems.page │ ├── gnote-creating-notes.page │ ├── gnote-deleting-notes.page │ ├── gnote-editing-notes.page │ ├── gnote-introduction.page │ ├── gnote-links.page │ ├── gnote-notes-preferences.page │ ├── gnote-searching-notes.page │ ├── gnote-synchronization.page │ ├── gnote-template-notes.page │ ├── gnote-working-with-notebooks.page │ └── index.page ├── LINGUAS ├── ca │ └── ca.po ├── cs │ ├── cs.po │ └── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-new-note.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-preferences-synchronization.png │ │ └── note-template.png ├── da │ └── da.po ├── de │ ├── de.po │ └── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-addin-table-of-contents.png │ │ ├── gnote-new-note.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-search-all-notes.png │ │ ├── gnote-sync-progress.png │ │ ├── gnote-syncprefs-advanced.png │ │ ├── gnote-syncprefs-local.png │ │ ├── gnote-syncprefs-webdav.png │ │ ├── gnote-template-note.png │ │ └── note-template.png ├── el │ └── el.po ├── es │ └── es.po ├── fr │ ├── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-new-note.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-search-all-notes.png │ │ └── note-template.png │ └── fr.po ├── hu │ ├── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-addin-table-of-contents.png │ │ ├── gnote-new-note.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-search-all-notes.png │ │ ├── gnote-sync-progress.png │ │ ├── gnote-syncprefs-advanced.png │ │ ├── gnote-syncprefs-gvfs.png │ │ ├── gnote-syncprefs-local.png │ │ ├── gnote-syncprefs-webdav.png │ │ ├── gnote-template-note.png │ │ └── note-template.png │ └── hu.po ├── id │ └── id.po ├── lt │ ├── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-addin-table-of-contents.png │ │ ├── gnote-new-note.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-search-all-notes.png │ │ ├── gnote-sync-progress.png │ │ ├── gnote-syncprefs-advanced.png │ │ ├── gnote-syncprefs-gvfs.png │ │ ├── gnote-syncprefs-local.png │ │ ├── gnote-syncprefs-webdav.png │ │ ├── gnote-template-note.png │ │ └── note-template.png │ └── lt.po ├── meson.build ├── pl │ └── pl.po ├── ru │ └── ru.po ├── sl │ └── sl.po ├── sv │ ├── figures │ │ ├── add-notebook-search.png │ │ ├── add-to-notebook.png │ │ ├── delete-notebook.png │ │ ├── gnote-addin-table-of-contents.png │ │ ├── gnote-new-note.png │ │ ├── gnote-preferences-add-ins.png │ │ ├── gnote-preferences-editing.png │ │ ├── gnote-search-all-notes.png │ │ ├── gnote-sync-progress.png │ │ ├── gnote-syncprefs-advanced.png │ │ ├── gnote-syncprefs-gvfs.png │ │ ├── gnote-syncprefs-local.png │ │ ├── gnote-syncprefs-webdav.png │ │ ├── gnote-template-note.png │ │ └── note-template.png │ └── sv.po ├── uk │ └── uk.po └── zh_CN │ └── zh_CN.po ├── meson.build ├── po ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── ar.po ├── as.po ├── bg.po ├── bn_IN.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── eu.po ├── fi.po ├── fr.po ├── gl.po ├── gu.po ├── he.po ├── hi.po ├── hu.po ├── id.po ├── ie.po ├── it.po ├── ja.po ├── ka.po ├── kn.po ├── ko.po ├── lt.po ├── lv.po ├── meson.build ├── ml.po ├── mr.po ├── nb.po ├── ne.po ├── nl.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── uk.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── src ├── abstractaddin.cpp ├── abstractaddin.hpp ├── actionmanager.cpp ├── actionmanager.hpp ├── addininfo.cpp ├── addininfo.hpp ├── addinmanager.cpp ├── addinmanager.hpp ├── addinpreferencefactory.cpp ├── addinpreferencefactory.hpp ├── applicationaddin.cpp ├── applicationaddin.hpp ├── base │ ├── hash.hpp │ ├── macros.hpp │ ├── monitor.cpp │ └── monitor.hpp ├── dbus │ ├── gnote-introspect.xml │ ├── iremotecontrol.hpp │ ├── meson.build │ ├── remotecontrol-glue.cpp │ ├── remotecontrol-glue.hpp │ ├── remotecontrol.cpp │ ├── remotecontrol.hpp │ ├── searchprovider.cpp │ ├── searchprovider.hpp │ └── shell-search-provider-dbus-interfaces.xml ├── debug.cpp ├── debug.hpp ├── gnome_keyring │ ├── keyringexception.hpp │ ├── ring.cpp │ └── ring.hpp ├── gnote.cpp ├── gnote.hpp ├── iactionmanager.cpp ├── iactionmanager.hpp ├── iconmanager.cpp ├── iconmanager.hpp ├── ignote.cpp ├── ignote.hpp ├── importaddin.cpp ├── importaddin.hpp ├── itagmanager.cpp ├── itagmanager.hpp ├── main.cpp ├── mainwindow.cpp ├── mainwindow.hpp ├── mainwindowaction.cpp ├── mainwindowaction.hpp ├── mainwindowembeds.cpp ├── mainwindowembeds.hpp ├── meson.build ├── noncopyable.hpp ├── note.cpp ├── note.hpp ├── noteaddin.cpp ├── noteaddin.hpp ├── notebase.cpp ├── notebase.hpp ├── notebooks │ ├── createnotebookdialog.cpp │ ├── createnotebookdialog.hpp │ ├── notebook.cpp │ ├── notebook.hpp │ ├── notebookapplicationaddin.cpp │ ├── notebookapplicationaddin.hpp │ ├── notebookmanager.cpp │ ├── notebookmanager.hpp │ ├── notebooknamepopover.cpp │ ├── notebooknamepopover.hpp │ ├── notebooknoteaddin.cpp │ ├── notebooknoteaddin.hpp │ ├── notebooksview.cpp │ ├── notebooksview.hpp │ ├── specialnotebooks.cpp │ └── specialnotebooks.hpp ├── notebuffer.cpp ├── notebuffer.hpp ├── noteeditor.cpp ├── noteeditor.hpp ├── notemanager.cpp ├── notemanager.hpp ├── notemanagerbase.cpp ├── notemanagerbase.hpp ├── noterenamedialog.cpp ├── noterenamedialog.hpp ├── notetag.cpp ├── notetag.hpp ├── notewindow.cpp ├── notewindow.hpp ├── plugins │ ├── backlinks │ │ ├── backlinks.desktop.in.in │ │ ├── backlinksnoteaddin.cpp │ │ ├── backlinksnoteaddin.hpp │ │ └── meson.build │ ├── bugzilla │ │ ├── bug.png │ │ ├── bugzilla.desktop.in.in │ │ ├── bugzillalink.cpp │ │ ├── bugzillalink.hpp │ │ ├── bugzillanoteaddin.cpp │ │ ├── bugzillanoteaddin.hpp │ │ ├── bugzillapreferences.cpp │ │ ├── bugzillapreferences.hpp │ │ ├── bugzillapreferencesfactory.hpp │ │ ├── insertbugaction.cpp │ │ ├── insertbugaction.hpp │ │ └── meson.build │ ├── exporttogtg │ │ ├── exporttogtg.desktop.in.in │ │ ├── exporttogtgnoteaddin.cpp │ │ ├── exporttogtgnoteaddin.hpp │ │ └── meson.build │ ├── exporttohtml │ │ ├── exporttohtml.desktop.in.in │ │ ├── exporttohtml.xsl │ │ ├── exporttohtmldialog.cpp │ │ ├── exporttohtmldialog.hpp │ │ ├── exporttohtmlnoteaddin.cpp │ │ ├── exporttohtmlnoteaddin.hpp │ │ ├── meson.build │ │ └── notenameresolver.hpp │ ├── filesystemsyncservice │ │ ├── filesystemsyncservice.desktop.in.in │ │ ├── filesystemsyncserviceaddin.cpp │ │ ├── filesystemsyncserviceaddin.hpp │ │ └── meson.build │ ├── fixedwidth │ │ ├── fixedwidth.desktop.in.in │ │ ├── fixedwidthnoteaddin.cpp │ │ ├── fixedwidthnoteaddin.hpp │ │ ├── fixedwidthtag.hpp │ │ └── meson.build │ ├── gvfssyncservice │ │ ├── gvfssyncservice.desktop.in.in │ │ ├── gvfssyncserviceaddin.cpp │ │ ├── gvfssyncserviceaddin.hpp │ │ └── meson.build │ ├── inserttimestamp │ │ ├── inserttimestamp.desktop.in.in │ │ ├── inserttimestampnoteaddin.cpp │ │ ├── inserttimestampnoteaddin.hpp │ │ ├── inserttimestamppreferences.cpp │ │ ├── inserttimestamppreferences.hpp │ │ ├── inserttimestamppreferencesfactory.hpp │ │ └── meson.build │ ├── meson.build │ ├── notedirectorywatcher │ │ ├── meson.build │ │ ├── notedirectorywatcher.desktop.in.in │ │ ├── notedirectorywatcherapplicationaddin.cpp │ │ ├── notedirectorywatcherapplicationaddin.hpp │ │ ├── notedirectorywatcherpreferences.cpp │ │ ├── notedirectorywatcherpreferences.hpp │ │ └── notedirectorywatcherpreferencesfactory.hpp │ ├── noteoftheday │ │ ├── meson.build │ │ ├── noteoftheday.cpp │ │ ├── noteoftheday.desktop.in.in │ │ ├── noteoftheday.hpp │ │ ├── noteofthedayapplicationaddin.cpp │ │ ├── noteofthedayapplicationaddin.hpp │ │ ├── noteofthedaypreferences.cpp │ │ ├── noteofthedaypreferences.hpp │ │ └── noteofthedaypreferencesfactory.hpp │ ├── printnotes │ │ ├── meson.build │ │ ├── printnotes.desktop.in.in │ │ ├── printnotesnoteaddin.cpp │ │ └── printnotesnoteaddin.hpp │ ├── readonly │ │ ├── meson.build │ │ ├── readonly.desktop.in.in │ │ ├── readonlynoteaddin.cpp │ │ └── readonlynoteaddin.hpp │ ├── replacetitle │ │ ├── meson.build │ │ ├── replacetitle.desktop.in.in │ │ ├── replacetitlenoteaddin.cpp │ │ └── replacetitlenoteaddin.hpp │ ├── specialnotes │ │ ├── meson.build │ │ ├── specialnotes.desktop.in.in │ │ ├── specialnotesapplicationaddin.cpp │ │ └── specialnotesapplicationaddin.hpp │ ├── statistics │ │ ├── meson.build │ │ ├── statistics.desktop.in.in │ │ ├── statisticsapplicationaddin.cpp │ │ ├── statisticsapplicationaddin.hpp │ │ ├── statisticswidget.cpp │ │ └── statisticswidget.hpp │ ├── tableofcontents │ │ ├── HACKING │ │ ├── NEWS │ │ ├── TODO │ │ ├── meson.build │ │ ├── tableofcontents.desktop.in.in │ │ ├── tableofcontents.hpp │ │ ├── tableofcontentsnoteaddin.cpp │ │ ├── tableofcontentsnoteaddin.hpp │ │ ├── tableofcontentsutils.cpp │ │ └── tableofcontentsutils.hpp │ ├── todo │ │ ├── meson.build │ │ ├── todo.desktop.in.in │ │ ├── todonoteaddin.cpp │ │ └── todonoteaddin.hpp │ ├── tomboyimport │ │ ├── meson.build │ │ ├── tomboyimport.desktop.in.in │ │ ├── tomboyimportaddin.cpp │ │ └── tomboyimportaddin.hpp │ ├── underline │ │ ├── meson.build │ │ ├── underline.desktop.in.in │ │ ├── underlinenoteaddin.cpp │ │ ├── underlinenoteaddin.hpp │ │ └── underlinetag.hpp │ └── webdavsyncservice │ │ ├── meson.build │ │ ├── webdavsyncservice.desktop.in.in │ │ ├── webdavsyncserviceaddin.cpp │ │ └── webdavsyncserviceaddin.hpp ├── popoverwidgets.cpp ├── popoverwidgets.hpp ├── preferences.cpp ├── preferences.hpp ├── preferencesdialog.cpp ├── preferencesdialog.hpp ├── recentchanges.cpp ├── recentchanges.hpp ├── remotecontrolproxy.cpp ├── remotecontrolproxy.hpp ├── search.cpp ├── search.hpp ├── searchnoteswidget.cpp ├── searchnoteswidget.hpp ├── sharp │ ├── datetime.cpp │ ├── datetime.hpp │ ├── directory.cpp │ ├── directory.hpp │ ├── dynamicmodule.cpp │ ├── dynamicmodule.hpp │ ├── exception.cpp │ ├── exception.hpp │ ├── fileinfo.cpp │ ├── fileinfo.hpp │ ├── files.cpp │ ├── files.hpp │ ├── map.hpp │ ├── modulefactory.hpp │ ├── modulemanager.cpp │ ├── modulemanager.hpp │ ├── pluginsmodel.cpp │ ├── pluginsmodel.hpp │ ├── propertyeditor.cpp │ ├── propertyeditor.hpp │ ├── streamreader.cpp │ ├── streamreader.hpp │ ├── streamwriter.cpp │ ├── streamwriter.hpp │ ├── string.cpp │ ├── string.hpp │ ├── timespan.cpp │ ├── timespan.hpp │ ├── uri.cpp │ ├── uri.hpp │ ├── uuid.hpp │ ├── xml.cpp │ ├── xml.hpp │ ├── xmlconvert.cpp │ ├── xmlconvert.hpp │ ├── xmlreader.cpp │ ├── xmlreader.hpp │ ├── xmlresolver.hpp │ ├── xmlwriter.cpp │ ├── xmlwriter.hpp │ ├── xsltargumentlist.cpp │ ├── xsltargumentlist.hpp │ ├── xsltransform.cpp │ └── xsltransform.hpp ├── synchronization │ ├── filesystemsyncserver.cpp │ ├── filesystemsyncserver.hpp │ ├── gnotesyncclient.cpp │ ├── gnotesyncclient.hpp │ ├── gvfssyncservice.cpp │ ├── gvfssyncservice.hpp │ ├── gvfstransfer.cpp │ ├── gvfstransfer.hpp │ ├── isyncmanager.cpp │ ├── isyncmanager.hpp │ ├── silentui.cpp │ ├── silentui.hpp │ ├── syncdialog.cpp │ ├── syncdialog.hpp │ ├── syncmanager.cpp │ ├── syncmanager.hpp │ ├── syncserviceaddin.cpp │ ├── syncserviceaddin.hpp │ ├── syncui.cpp │ ├── syncui.hpp │ ├── syncutils.cpp │ └── syncutils.hpp ├── tag.cpp ├── tag.hpp ├── tagmanager.cpp ├── tagmanager.hpp ├── test │ ├── meson.build │ ├── runner.cpp │ ├── testgnote.cpp │ ├── testgnote.hpp │ ├── testnote.cpp │ ├── testnote.hpp │ ├── testnotemanager.cpp │ ├── testnotemanager.hpp │ ├── testsyncaddin.cpp │ ├── testsyncaddin.hpp │ ├── testsyncclient.cpp │ ├── testsyncclient.hpp │ ├── testsyncmanager.cpp │ ├── testsyncmanager.hpp │ ├── testtagmanager.cpp │ ├── testtagmanager.hpp │ └── unit │ │ ├── datetimeutests.cpp │ │ ├── directorytests.cpp │ │ ├── fileinfoutests.cpp │ │ ├── filesutests.cpp │ │ ├── gnotesyncclientutests.cpp │ │ ├── hashtests.cpp │ │ ├── notemanagerutests.cpp │ │ ├── noteutests.cpp │ │ ├── stringutests.cpp │ │ ├── syncmanagerutests.cpp │ │ ├── trieutests.cpp │ │ ├── uriutests.cpp │ │ ├── utiltests.cpp │ │ ├── xmldecodertests.cpp │ │ └── xmlreaderutests.cpp ├── trie.hpp ├── triehit.hpp ├── undo.cpp ├── undo.hpp ├── utils.cpp ├── utils.hpp ├── watchers.cpp └── watchers.hpp ├── tools ├── DBusClientTest.py └── SearchProviderTest.py └── wiki └── main.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING-DOCS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/COPYING-DOCS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/TODO -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/config.h.in -------------------------------------------------------------------------------- /data/gnote.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/gnote.1 -------------------------------------------------------------------------------- /data/icons/hicolor_actions_16x16_note-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_16x16_note-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_16x16_note-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_16x16_note-new.svg -------------------------------------------------------------------------------- /data/icons/hicolor_actions_16x16_notebook-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_16x16_notebook-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_16x16_notebook-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_16x16_notebook-new.svg -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_filter-note-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_filter-note-all.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_filter-note-all.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_filter-note-all.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_filter-note-unfiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_filter-note-unfiled.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_filter-note-unfiled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_filter-note-unfiled.svg -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_note-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_note-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_note-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_note-new.svg -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_notebook-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_notebook-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_22x22_notebook-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_22x22_notebook-new.svg -------------------------------------------------------------------------------- /data/icons/hicolor_actions_24x24_filter-note-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_24x24_filter-note-all.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_24x24_filter-note-unfiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_24x24_filter-note-unfiled.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_24x24_note-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_24x24_note-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_24x24_notebook-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_24x24_notebook-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_48x48_notebook-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_48x48_notebook-new.png -------------------------------------------------------------------------------- /data/icons/hicolor_actions_scalable_notebook-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_actions_scalable_notebook-new.svg -------------------------------------------------------------------------------- /data/icons/hicolor_apps_16x16_org.gnome.Gnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_16x16_org.gnome.Gnote.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_16x16_org.gnome.Gnote.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_16x16_org.gnome.Gnote.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/hicolor_apps_22x22_org.gnome.Gnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_22x22_org.gnome.Gnote.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_22x22_org.gnome.Gnote.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_22x22_org.gnome.Gnote.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/hicolor_apps_24x24_org.gnome.Gnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_24x24_org.gnome.Gnote.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_256x256_org.gnome.Gnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_256x256_org.gnome.Gnote.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_32x32_org.gnome.Gnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_32x32_org.gnome.Gnote.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_48x48_org.gnome.Gnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_48x48_org.gnome.Gnote.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_scalable_org.gnome.Gnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_apps_scalable_org.gnome.Gnote.svg -------------------------------------------------------------------------------- /data/icons/hicolor_places_16x16_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_16x16_note.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_16x16_note.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_16x16_note.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/hicolor_places_16x16_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_16x16_notebook.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_16x16_notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_16x16_notebook.svg -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_active-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_active-notes.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_active-notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_active-notes.svg -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_note.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_note.svg -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_notebook.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_notebook.svg -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_special-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_special-notes.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_22x22_special-notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_22x22_special-notes.svg -------------------------------------------------------------------------------- /data/icons/hicolor_places_24x24_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_24x24_note.png -------------------------------------------------------------------------------- /data/icons/hicolor_places_24x24_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_places_24x24_notebook.png -------------------------------------------------------------------------------- /data/icons/hicolor_status_16x16_pin-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_status_16x16_pin-active.png -------------------------------------------------------------------------------- /data/icons/hicolor_status_16x16_pin-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_status_16x16_pin-down.png -------------------------------------------------------------------------------- /data/icons/hicolor_status_16x16_pin-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/hicolor_status_16x16_pin-up.png -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/images/artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/images/artwork.svg -------------------------------------------------------------------------------- /data/images/gnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/images/gnote.svg -------------------------------------------------------------------------------- /data/images/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/images/tag.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/org.gnome.Gnote.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/org.gnome.Gnote.appdata.xml.in -------------------------------------------------------------------------------- /data/org.gnome.Gnote.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/org.gnome.Gnote.desktop.in -------------------------------------------------------------------------------- /data/org.gnome.Gnote.search-provider.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/org.gnome.Gnote.search-provider.ini -------------------------------------------------------------------------------- /data/org.gnome.Gnote.service.in: -------------------------------------------------------------------------------- 1 | 2 | [D-BUS Service] 3 | Name=org.gnome.Gnote 4 | Exec=@bindir@/@wrapper@ --shell-search 5 | 6 | -------------------------------------------------------------------------------- /data/org.gnome.gnote.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/org.gnome.gnote.gschema.xml -------------------------------------------------------------------------------- /data/shortcuts-gnote.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/data/shortcuts-gnote.ui -------------------------------------------------------------------------------- /gnote.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/gnote.doap -------------------------------------------------------------------------------- /help/C/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/C/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/C/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/C/figures/gnote-addin-table-of-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-addin-table-of-contents.png -------------------------------------------------------------------------------- /help/C/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/C/figures/gnote-pindown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-pindown.png -------------------------------------------------------------------------------- /help/C/figures/gnote-pinup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-pinup.png -------------------------------------------------------------------------------- /help/C/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/C/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/C/figures/gnote-preferences-synchronization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-preferences-synchronization.png -------------------------------------------------------------------------------- /help/C/figures/gnote-search-all-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-search-all-notes.png -------------------------------------------------------------------------------- /help/C/figures/gnote-sync-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-sync-progress.png -------------------------------------------------------------------------------- /help/C/figures/gnote-syncprefs-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-syncprefs-advanced.png -------------------------------------------------------------------------------- /help/C/figures/gnote-syncprefs-gvfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-syncprefs-gvfs.png -------------------------------------------------------------------------------- /help/C/figures/gnote-syncprefs-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-syncprefs-local.png -------------------------------------------------------------------------------- /help/C/figures/gnote-syncprefs-webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-syncprefs-webdav.png -------------------------------------------------------------------------------- /help/C/figures/gnote-template-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-template-note.png -------------------------------------------------------------------------------- /help/C/figures/gnote-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/gnote-tools.png -------------------------------------------------------------------------------- /help/C/figures/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/logo32.png -------------------------------------------------------------------------------- /help/C/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/note-template.png -------------------------------------------------------------------------------- /help/C/figures/notebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/figures/notebook-icon.png -------------------------------------------------------------------------------- /help/C/gnote-addin-bugzillalink.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-bugzillalink.page -------------------------------------------------------------------------------- /help/C/gnote-addin-fixedwidth.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-fixedwidth.page -------------------------------------------------------------------------------- /help/C/gnote-addin-html.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-html.page -------------------------------------------------------------------------------- /help/C/gnote-addin-notedirwatcher.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-notedirwatcher.page -------------------------------------------------------------------------------- /help/C/gnote-addin-noteoftheday.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-noteoftheday.page -------------------------------------------------------------------------------- /help/C/gnote-addin-print.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-print.page -------------------------------------------------------------------------------- /help/C/gnote-addin-readonly.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-readonly.page -------------------------------------------------------------------------------- /help/C/gnote-addin-replacetitle.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-replacetitle.page -------------------------------------------------------------------------------- /help/C/gnote-addin-specialnotes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-specialnotes.page -------------------------------------------------------------------------------- /help/C/gnote-addin-sync-gvfs.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-sync-gvfs.page -------------------------------------------------------------------------------- /help/C/gnote-addin-sync-local.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-sync-local.page -------------------------------------------------------------------------------- /help/C/gnote-addin-sync-webdav.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-sync-webdav.page -------------------------------------------------------------------------------- /help/C/gnote-addin-tableofcontents.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-tableofcontents.page -------------------------------------------------------------------------------- /help/C/gnote-addin-timestamp.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-timestamp.page -------------------------------------------------------------------------------- /help/C/gnote-addin-underline.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addin-underline.page -------------------------------------------------------------------------------- /help/C/gnote-addins-preferences.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-addins-preferences.page -------------------------------------------------------------------------------- /help/C/gnote-bulleted-lists.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-bulleted-lists.page -------------------------------------------------------------------------------- /help/C/gnote-common-problems.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-common-problems.page -------------------------------------------------------------------------------- /help/C/gnote-creating-notes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-creating-notes.page -------------------------------------------------------------------------------- /help/C/gnote-deleting-notes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-deleting-notes.page -------------------------------------------------------------------------------- /help/C/gnote-editing-notes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-editing-notes.page -------------------------------------------------------------------------------- /help/C/gnote-introduction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-introduction.page -------------------------------------------------------------------------------- /help/C/gnote-links.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-links.page -------------------------------------------------------------------------------- /help/C/gnote-notes-preferences.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-notes-preferences.page -------------------------------------------------------------------------------- /help/C/gnote-searching-notes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-searching-notes.page -------------------------------------------------------------------------------- /help/C/gnote-synchronization.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-synchronization.page -------------------------------------------------------------------------------- /help/C/gnote-template-notes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-template-notes.page -------------------------------------------------------------------------------- /help/C/gnote-working-with-notebooks.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/gnote-working-with-notebooks.page -------------------------------------------------------------------------------- /help/C/index.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/C/index.page -------------------------------------------------------------------------------- /help/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/LINGUAS -------------------------------------------------------------------------------- /help/ca/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/ca/ca.po -------------------------------------------------------------------------------- /help/cs/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/cs.po -------------------------------------------------------------------------------- /help/cs/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/cs/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/cs/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/cs/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/cs/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/cs/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/cs/figures/gnote-preferences-synchronization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/gnote-preferences-synchronization.png -------------------------------------------------------------------------------- /help/cs/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/cs/figures/note-template.png -------------------------------------------------------------------------------- /help/da/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/da/da.po -------------------------------------------------------------------------------- /help/de/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/de.po -------------------------------------------------------------------------------- /help/de/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/de/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/de/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/de/figures/gnote-addin-table-of-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-addin-table-of-contents.png -------------------------------------------------------------------------------- /help/de/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/de/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/de/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/de/figures/gnote-search-all-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-search-all-notes.png -------------------------------------------------------------------------------- /help/de/figures/gnote-sync-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-sync-progress.png -------------------------------------------------------------------------------- /help/de/figures/gnote-syncprefs-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-syncprefs-advanced.png -------------------------------------------------------------------------------- /help/de/figures/gnote-syncprefs-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-syncprefs-local.png -------------------------------------------------------------------------------- /help/de/figures/gnote-syncprefs-webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-syncprefs-webdav.png -------------------------------------------------------------------------------- /help/de/figures/gnote-template-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/gnote-template-note.png -------------------------------------------------------------------------------- /help/de/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/de/figures/note-template.png -------------------------------------------------------------------------------- /help/el/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/el/el.po -------------------------------------------------------------------------------- /help/es/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/es/es.po -------------------------------------------------------------------------------- /help/fr/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/fr/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/fr/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/fr/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/fr/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/fr/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/fr/figures/gnote-search-all-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/gnote-search-all-notes.png -------------------------------------------------------------------------------- /help/fr/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/figures/note-template.png -------------------------------------------------------------------------------- /help/fr/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/fr/fr.po -------------------------------------------------------------------------------- /help/hu/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/hu/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/hu/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-addin-table-of-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-addin-table-of-contents.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-search-all-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-search-all-notes.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-sync-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-sync-progress.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-syncprefs-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-syncprefs-advanced.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-syncprefs-gvfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-syncprefs-gvfs.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-syncprefs-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-syncprefs-local.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-syncprefs-webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-syncprefs-webdav.png -------------------------------------------------------------------------------- /help/hu/figures/gnote-template-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/gnote-template-note.png -------------------------------------------------------------------------------- /help/hu/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/figures/note-template.png -------------------------------------------------------------------------------- /help/hu/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/hu/hu.po -------------------------------------------------------------------------------- /help/id/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/id/id.po -------------------------------------------------------------------------------- /help/lt/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/lt/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/lt/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-addin-table-of-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-addin-table-of-contents.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-search-all-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-search-all-notes.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-sync-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-sync-progress.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-syncprefs-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-syncprefs-advanced.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-syncprefs-gvfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-syncprefs-gvfs.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-syncprefs-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-syncprefs-local.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-syncprefs-webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-syncprefs-webdav.png -------------------------------------------------------------------------------- /help/lt/figures/gnote-template-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/gnote-template-note.png -------------------------------------------------------------------------------- /help/lt/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/figures/note-template.png -------------------------------------------------------------------------------- /help/lt/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/lt/lt.po -------------------------------------------------------------------------------- /help/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/meson.build -------------------------------------------------------------------------------- /help/pl/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/pl/pl.po -------------------------------------------------------------------------------- /help/ru/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/ru/ru.po -------------------------------------------------------------------------------- /help/sl/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sl/sl.po -------------------------------------------------------------------------------- /help/sv/figures/add-notebook-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/add-notebook-search.png -------------------------------------------------------------------------------- /help/sv/figures/add-to-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/add-to-notebook.png -------------------------------------------------------------------------------- /help/sv/figures/delete-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/delete-notebook.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-addin-table-of-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-addin-table-of-contents.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-new-note.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-preferences-add-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-preferences-add-ins.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-preferences-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-preferences-editing.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-search-all-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-search-all-notes.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-sync-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-sync-progress.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-syncprefs-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-syncprefs-advanced.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-syncprefs-gvfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-syncprefs-gvfs.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-syncprefs-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-syncprefs-local.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-syncprefs-webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-syncprefs-webdav.png -------------------------------------------------------------------------------- /help/sv/figures/gnote-template-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/gnote-template-note.png -------------------------------------------------------------------------------- /help/sv/figures/note-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/figures/note-template.png -------------------------------------------------------------------------------- /help/sv/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/sv/sv.po -------------------------------------------------------------------------------- /help/uk/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/uk/uk.po -------------------------------------------------------------------------------- /help/zh_CN/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/help/zh_CN/zh_CN.po -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/as.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/es.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/abstractaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/abstractaddin.cpp -------------------------------------------------------------------------------- /src/abstractaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/abstractaddin.hpp -------------------------------------------------------------------------------- /src/actionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/actionmanager.cpp -------------------------------------------------------------------------------- /src/actionmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/actionmanager.hpp -------------------------------------------------------------------------------- /src/addininfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/addininfo.cpp -------------------------------------------------------------------------------- /src/addininfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/addininfo.hpp -------------------------------------------------------------------------------- /src/addinmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/addinmanager.cpp -------------------------------------------------------------------------------- /src/addinmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/addinmanager.hpp -------------------------------------------------------------------------------- /src/addinpreferencefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/addinpreferencefactory.cpp -------------------------------------------------------------------------------- /src/addinpreferencefactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/addinpreferencefactory.hpp -------------------------------------------------------------------------------- /src/applicationaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/applicationaddin.cpp -------------------------------------------------------------------------------- /src/applicationaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/applicationaddin.hpp -------------------------------------------------------------------------------- /src/base/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/base/hash.hpp -------------------------------------------------------------------------------- /src/base/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/base/macros.hpp -------------------------------------------------------------------------------- /src/base/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/base/monitor.cpp -------------------------------------------------------------------------------- /src/base/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/base/monitor.hpp -------------------------------------------------------------------------------- /src/dbus/gnote-introspect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/gnote-introspect.xml -------------------------------------------------------------------------------- /src/dbus/iremotecontrol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/iremotecontrol.hpp -------------------------------------------------------------------------------- /src/dbus/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/meson.build -------------------------------------------------------------------------------- /src/dbus/remotecontrol-glue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/remotecontrol-glue.cpp -------------------------------------------------------------------------------- /src/dbus/remotecontrol-glue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/remotecontrol-glue.hpp -------------------------------------------------------------------------------- /src/dbus/remotecontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/remotecontrol.cpp -------------------------------------------------------------------------------- /src/dbus/remotecontrol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/remotecontrol.hpp -------------------------------------------------------------------------------- /src/dbus/searchprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/searchprovider.cpp -------------------------------------------------------------------------------- /src/dbus/searchprovider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/searchprovider.hpp -------------------------------------------------------------------------------- /src/dbus/shell-search-provider-dbus-interfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/dbus/shell-search-provider-dbus-interfaces.xml -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/debug.hpp -------------------------------------------------------------------------------- /src/gnome_keyring/keyringexception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/gnome_keyring/keyringexception.hpp -------------------------------------------------------------------------------- /src/gnome_keyring/ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/gnome_keyring/ring.cpp -------------------------------------------------------------------------------- /src/gnome_keyring/ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/gnome_keyring/ring.hpp -------------------------------------------------------------------------------- /src/gnote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/gnote.cpp -------------------------------------------------------------------------------- /src/gnote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/gnote.hpp -------------------------------------------------------------------------------- /src/iactionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/iactionmanager.cpp -------------------------------------------------------------------------------- /src/iactionmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/iactionmanager.hpp -------------------------------------------------------------------------------- /src/iconmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/iconmanager.cpp -------------------------------------------------------------------------------- /src/iconmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/iconmanager.hpp -------------------------------------------------------------------------------- /src/ignote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/ignote.cpp -------------------------------------------------------------------------------- /src/ignote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/ignote.hpp -------------------------------------------------------------------------------- /src/importaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/importaddin.cpp -------------------------------------------------------------------------------- /src/importaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/importaddin.hpp -------------------------------------------------------------------------------- /src/itagmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/itagmanager.cpp -------------------------------------------------------------------------------- /src/itagmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/itagmanager.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/mainwindow.hpp -------------------------------------------------------------------------------- /src/mainwindowaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/mainwindowaction.cpp -------------------------------------------------------------------------------- /src/mainwindowaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/mainwindowaction.hpp -------------------------------------------------------------------------------- /src/mainwindowembeds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/mainwindowembeds.cpp -------------------------------------------------------------------------------- /src/mainwindowembeds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/mainwindowembeds.hpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noncopyable.hpp -------------------------------------------------------------------------------- /src/note.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/note.cpp -------------------------------------------------------------------------------- /src/note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/note.hpp -------------------------------------------------------------------------------- /src/noteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noteaddin.cpp -------------------------------------------------------------------------------- /src/noteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noteaddin.hpp -------------------------------------------------------------------------------- /src/notebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebase.cpp -------------------------------------------------------------------------------- /src/notebase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebase.hpp -------------------------------------------------------------------------------- /src/notebooks/createnotebookdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/createnotebookdialog.cpp -------------------------------------------------------------------------------- /src/notebooks/createnotebookdialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/createnotebookdialog.hpp -------------------------------------------------------------------------------- /src/notebooks/notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebook.cpp -------------------------------------------------------------------------------- /src/notebooks/notebook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebook.hpp -------------------------------------------------------------------------------- /src/notebooks/notebookapplicationaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebookapplicationaddin.cpp -------------------------------------------------------------------------------- /src/notebooks/notebookapplicationaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebookapplicationaddin.hpp -------------------------------------------------------------------------------- /src/notebooks/notebookmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebookmanager.cpp -------------------------------------------------------------------------------- /src/notebooks/notebookmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebookmanager.hpp -------------------------------------------------------------------------------- /src/notebooks/notebooknamepopover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebooknamepopover.cpp -------------------------------------------------------------------------------- /src/notebooks/notebooknamepopover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebooknamepopover.hpp -------------------------------------------------------------------------------- /src/notebooks/notebooknoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebooknoteaddin.cpp -------------------------------------------------------------------------------- /src/notebooks/notebooknoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebooknoteaddin.hpp -------------------------------------------------------------------------------- /src/notebooks/notebooksview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebooksview.cpp -------------------------------------------------------------------------------- /src/notebooks/notebooksview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/notebooksview.hpp -------------------------------------------------------------------------------- /src/notebooks/specialnotebooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/specialnotebooks.cpp -------------------------------------------------------------------------------- /src/notebooks/specialnotebooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebooks/specialnotebooks.hpp -------------------------------------------------------------------------------- /src/notebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebuffer.cpp -------------------------------------------------------------------------------- /src/notebuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notebuffer.hpp -------------------------------------------------------------------------------- /src/noteeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noteeditor.cpp -------------------------------------------------------------------------------- /src/noteeditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noteeditor.hpp -------------------------------------------------------------------------------- /src/notemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notemanager.cpp -------------------------------------------------------------------------------- /src/notemanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notemanager.hpp -------------------------------------------------------------------------------- /src/notemanagerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notemanagerbase.cpp -------------------------------------------------------------------------------- /src/notemanagerbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notemanagerbase.hpp -------------------------------------------------------------------------------- /src/noterenamedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noterenamedialog.cpp -------------------------------------------------------------------------------- /src/noterenamedialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/noterenamedialog.hpp -------------------------------------------------------------------------------- /src/notetag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notetag.cpp -------------------------------------------------------------------------------- /src/notetag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notetag.hpp -------------------------------------------------------------------------------- /src/notewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notewindow.cpp -------------------------------------------------------------------------------- /src/notewindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/notewindow.hpp -------------------------------------------------------------------------------- /src/plugins/backlinks/backlinks.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/backlinks/backlinks.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/backlinks/backlinksnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/backlinks/backlinksnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/backlinks/backlinksnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/backlinks/backlinksnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/backlinks/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/backlinks/meson.build -------------------------------------------------------------------------------- /src/plugins/bugzilla/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bug.png -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzilla.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzilla.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillalink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillalink.cpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillalink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillalink.hpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillanoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillanoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillanoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillanoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillapreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillapreferences.cpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillapreferences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillapreferences.hpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/bugzillapreferencesfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/bugzillapreferencesfactory.hpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/insertbugaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/insertbugaction.cpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/insertbugaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/insertbugaction.hpp -------------------------------------------------------------------------------- /src/plugins/bugzilla/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/bugzilla/meson.build -------------------------------------------------------------------------------- /src/plugins/exporttogtg/exporttogtg.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttogtg/exporttogtg.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/exporttogtg/exporttogtgnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttogtg/exporttogtgnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/exporttogtg/exporttogtgnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttogtg/exporttogtgnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/exporttogtg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttogtg/meson.build -------------------------------------------------------------------------------- /src/plugins/exporttohtml/exporttohtml.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/exporttohtml.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/exporttohtml/exporttohtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/exporttohtml.xsl -------------------------------------------------------------------------------- /src/plugins/exporttohtml/exporttohtmldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/exporttohtmldialog.cpp -------------------------------------------------------------------------------- /src/plugins/exporttohtml/exporttohtmldialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/exporttohtmldialog.hpp -------------------------------------------------------------------------------- /src/plugins/exporttohtml/exporttohtmlnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/exporttohtmlnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/exporttohtml/exporttohtmlnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/exporttohtmlnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/exporttohtml/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/meson.build -------------------------------------------------------------------------------- /src/plugins/exporttohtml/notenameresolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/exporttohtml/notenameresolver.hpp -------------------------------------------------------------------------------- /src/plugins/filesystemsyncservice/filesystemsyncservice.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/filesystemsyncservice/filesystemsyncservice.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/filesystemsyncservice/filesystemsyncserviceaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/filesystemsyncservice/filesystemsyncserviceaddin.cpp -------------------------------------------------------------------------------- /src/plugins/filesystemsyncservice/filesystemsyncserviceaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/filesystemsyncservice/filesystemsyncserviceaddin.hpp -------------------------------------------------------------------------------- /src/plugins/filesystemsyncservice/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/filesystemsyncservice/meson.build -------------------------------------------------------------------------------- /src/plugins/fixedwidth/fixedwidth.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/fixedwidth/fixedwidth.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/fixedwidth/fixedwidthnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/fixedwidth/fixedwidthnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/fixedwidth/fixedwidthnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/fixedwidth/fixedwidthnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/fixedwidth/fixedwidthtag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/fixedwidth/fixedwidthtag.hpp -------------------------------------------------------------------------------- /src/plugins/fixedwidth/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/fixedwidth/meson.build -------------------------------------------------------------------------------- /src/plugins/gvfssyncservice/gvfssyncservice.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/gvfssyncservice/gvfssyncservice.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/gvfssyncservice/gvfssyncserviceaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/gvfssyncservice/gvfssyncserviceaddin.cpp -------------------------------------------------------------------------------- /src/plugins/gvfssyncservice/gvfssyncserviceaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/gvfssyncservice/gvfssyncserviceaddin.hpp -------------------------------------------------------------------------------- /src/plugins/gvfssyncservice/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/gvfssyncservice/meson.build -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/inserttimestamp.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/inserttimestamp.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/inserttimestampnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/inserttimestampnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/inserttimestampnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/inserttimestampnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/inserttimestamppreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/inserttimestamppreferences.cpp -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/inserttimestamppreferences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/inserttimestamppreferences.hpp -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/inserttimestamppreferencesfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/inserttimestamppreferencesfactory.hpp -------------------------------------------------------------------------------- /src/plugins/inserttimestamp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/inserttimestamp/meson.build -------------------------------------------------------------------------------- /src/plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/meson.build -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/meson.build -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/notedirectorywatcher.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/notedirectorywatcher.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/notedirectorywatcherapplicationaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/notedirectorywatcherapplicationaddin.cpp -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/notedirectorywatcherapplicationaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/notedirectorywatcherapplicationaddin.hpp -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/notedirectorywatcherpreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/notedirectorywatcherpreferences.cpp -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/notedirectorywatcherpreferences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/notedirectorywatcherpreferences.hpp -------------------------------------------------------------------------------- /src/plugins/notedirectorywatcher/notedirectorywatcherpreferencesfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/notedirectorywatcher/notedirectorywatcherpreferencesfactory.hpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/meson.build -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteoftheday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteoftheday.cpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteoftheday.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteoftheday.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteoftheday.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteoftheday.hpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteofthedayapplicationaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteofthedayapplicationaddin.cpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteofthedayapplicationaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteofthedayapplicationaddin.hpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteofthedaypreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteofthedaypreferences.cpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteofthedaypreferences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteofthedaypreferences.hpp -------------------------------------------------------------------------------- /src/plugins/noteoftheday/noteofthedaypreferencesfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/noteoftheday/noteofthedaypreferencesfactory.hpp -------------------------------------------------------------------------------- /src/plugins/printnotes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/printnotes/meson.build -------------------------------------------------------------------------------- /src/plugins/printnotes/printnotes.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/printnotes/printnotes.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/printnotes/printnotesnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/printnotes/printnotesnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/printnotes/printnotesnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/printnotes/printnotesnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/readonly/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/readonly/meson.build -------------------------------------------------------------------------------- /src/plugins/readonly/readonly.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/readonly/readonly.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/readonly/readonlynoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/readonly/readonlynoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/readonly/readonlynoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/readonly/readonlynoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/replacetitle/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/replacetitle/meson.build -------------------------------------------------------------------------------- /src/plugins/replacetitle/replacetitle.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/replacetitle/replacetitle.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/replacetitle/replacetitlenoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/replacetitle/replacetitlenoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/replacetitle/replacetitlenoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/replacetitle/replacetitlenoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/specialnotes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/specialnotes/meson.build -------------------------------------------------------------------------------- /src/plugins/specialnotes/specialnotes.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/specialnotes/specialnotes.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/specialnotes/specialnotesapplicationaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/specialnotes/specialnotesapplicationaddin.cpp -------------------------------------------------------------------------------- /src/plugins/specialnotes/specialnotesapplicationaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/specialnotes/specialnotesapplicationaddin.hpp -------------------------------------------------------------------------------- /src/plugins/statistics/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/statistics/meson.build -------------------------------------------------------------------------------- /src/plugins/statistics/statistics.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/statistics/statistics.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/statistics/statisticsapplicationaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/statistics/statisticsapplicationaddin.cpp -------------------------------------------------------------------------------- /src/plugins/statistics/statisticsapplicationaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/statistics/statisticsapplicationaddin.hpp -------------------------------------------------------------------------------- /src/plugins/statistics/statisticswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/statistics/statisticswidget.cpp -------------------------------------------------------------------------------- /src/plugins/statistics/statisticswidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/statistics/statisticswidget.hpp -------------------------------------------------------------------------------- /src/plugins/tableofcontents/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/HACKING -------------------------------------------------------------------------------- /src/plugins/tableofcontents/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/NEWS -------------------------------------------------------------------------------- /src/plugins/tableofcontents/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/TODO -------------------------------------------------------------------------------- /src/plugins/tableofcontents/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/meson.build -------------------------------------------------------------------------------- /src/plugins/tableofcontents/tableofcontents.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/tableofcontents.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/tableofcontents/tableofcontents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/tableofcontents.hpp -------------------------------------------------------------------------------- /src/plugins/tableofcontents/tableofcontentsnoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/tableofcontentsnoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/tableofcontents/tableofcontentsnoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/tableofcontentsnoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/tableofcontents/tableofcontentsutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/tableofcontentsutils.cpp -------------------------------------------------------------------------------- /src/plugins/tableofcontents/tableofcontentsutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tableofcontents/tableofcontentsutils.hpp -------------------------------------------------------------------------------- /src/plugins/todo/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/todo/meson.build -------------------------------------------------------------------------------- /src/plugins/todo/todo.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/todo/todo.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/todo/todonoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/todo/todonoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/todo/todonoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/todo/todonoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/tomboyimport/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tomboyimport/meson.build -------------------------------------------------------------------------------- /src/plugins/tomboyimport/tomboyimport.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tomboyimport/tomboyimport.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/tomboyimport/tomboyimportaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tomboyimport/tomboyimportaddin.cpp -------------------------------------------------------------------------------- /src/plugins/tomboyimport/tomboyimportaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/tomboyimport/tomboyimportaddin.hpp -------------------------------------------------------------------------------- /src/plugins/underline/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/underline/meson.build -------------------------------------------------------------------------------- /src/plugins/underline/underline.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/underline/underline.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/underline/underlinenoteaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/underline/underlinenoteaddin.cpp -------------------------------------------------------------------------------- /src/plugins/underline/underlinenoteaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/underline/underlinenoteaddin.hpp -------------------------------------------------------------------------------- /src/plugins/underline/underlinetag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/underline/underlinetag.hpp -------------------------------------------------------------------------------- /src/plugins/webdavsyncservice/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/webdavsyncservice/meson.build -------------------------------------------------------------------------------- /src/plugins/webdavsyncservice/webdavsyncservice.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/webdavsyncservice/webdavsyncservice.desktop.in.in -------------------------------------------------------------------------------- /src/plugins/webdavsyncservice/webdavsyncserviceaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/webdavsyncservice/webdavsyncserviceaddin.cpp -------------------------------------------------------------------------------- /src/plugins/webdavsyncservice/webdavsyncserviceaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/plugins/webdavsyncservice/webdavsyncserviceaddin.hpp -------------------------------------------------------------------------------- /src/popoverwidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/popoverwidgets.cpp -------------------------------------------------------------------------------- /src/popoverwidgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/popoverwidgets.hpp -------------------------------------------------------------------------------- /src/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/preferences.cpp -------------------------------------------------------------------------------- /src/preferences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/preferences.hpp -------------------------------------------------------------------------------- /src/preferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/preferencesdialog.cpp -------------------------------------------------------------------------------- /src/preferencesdialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/preferencesdialog.hpp -------------------------------------------------------------------------------- /src/recentchanges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/recentchanges.cpp -------------------------------------------------------------------------------- /src/recentchanges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/recentchanges.hpp -------------------------------------------------------------------------------- /src/remotecontrolproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/remotecontrolproxy.cpp -------------------------------------------------------------------------------- /src/remotecontrolproxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/remotecontrolproxy.hpp -------------------------------------------------------------------------------- /src/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/search.cpp -------------------------------------------------------------------------------- /src/search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/search.hpp -------------------------------------------------------------------------------- /src/searchnoteswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/searchnoteswidget.cpp -------------------------------------------------------------------------------- /src/searchnoteswidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/searchnoteswidget.hpp -------------------------------------------------------------------------------- /src/sharp/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/datetime.cpp -------------------------------------------------------------------------------- /src/sharp/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/datetime.hpp -------------------------------------------------------------------------------- /src/sharp/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/directory.cpp -------------------------------------------------------------------------------- /src/sharp/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/directory.hpp -------------------------------------------------------------------------------- /src/sharp/dynamicmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/dynamicmodule.cpp -------------------------------------------------------------------------------- /src/sharp/dynamicmodule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/dynamicmodule.hpp -------------------------------------------------------------------------------- /src/sharp/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/exception.cpp -------------------------------------------------------------------------------- /src/sharp/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/exception.hpp -------------------------------------------------------------------------------- /src/sharp/fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/fileinfo.cpp -------------------------------------------------------------------------------- /src/sharp/fileinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/fileinfo.hpp -------------------------------------------------------------------------------- /src/sharp/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/files.cpp -------------------------------------------------------------------------------- /src/sharp/files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/files.hpp -------------------------------------------------------------------------------- /src/sharp/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/map.hpp -------------------------------------------------------------------------------- /src/sharp/modulefactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/modulefactory.hpp -------------------------------------------------------------------------------- /src/sharp/modulemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/modulemanager.cpp -------------------------------------------------------------------------------- /src/sharp/modulemanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/modulemanager.hpp -------------------------------------------------------------------------------- /src/sharp/pluginsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/pluginsmodel.cpp -------------------------------------------------------------------------------- /src/sharp/pluginsmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/pluginsmodel.hpp -------------------------------------------------------------------------------- /src/sharp/propertyeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/propertyeditor.cpp -------------------------------------------------------------------------------- /src/sharp/propertyeditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/propertyeditor.hpp -------------------------------------------------------------------------------- /src/sharp/streamreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/streamreader.cpp -------------------------------------------------------------------------------- /src/sharp/streamreader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/streamreader.hpp -------------------------------------------------------------------------------- /src/sharp/streamwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/streamwriter.cpp -------------------------------------------------------------------------------- /src/sharp/streamwriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/streamwriter.hpp -------------------------------------------------------------------------------- /src/sharp/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/string.cpp -------------------------------------------------------------------------------- /src/sharp/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/string.hpp -------------------------------------------------------------------------------- /src/sharp/timespan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/timespan.cpp -------------------------------------------------------------------------------- /src/sharp/timespan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/timespan.hpp -------------------------------------------------------------------------------- /src/sharp/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/uri.cpp -------------------------------------------------------------------------------- /src/sharp/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/uri.hpp -------------------------------------------------------------------------------- /src/sharp/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/uuid.hpp -------------------------------------------------------------------------------- /src/sharp/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xml.cpp -------------------------------------------------------------------------------- /src/sharp/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xml.hpp -------------------------------------------------------------------------------- /src/sharp/xmlconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlconvert.cpp -------------------------------------------------------------------------------- /src/sharp/xmlconvert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlconvert.hpp -------------------------------------------------------------------------------- /src/sharp/xmlreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlreader.cpp -------------------------------------------------------------------------------- /src/sharp/xmlreader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlreader.hpp -------------------------------------------------------------------------------- /src/sharp/xmlresolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlresolver.hpp -------------------------------------------------------------------------------- /src/sharp/xmlwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlwriter.cpp -------------------------------------------------------------------------------- /src/sharp/xmlwriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xmlwriter.hpp -------------------------------------------------------------------------------- /src/sharp/xsltargumentlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xsltargumentlist.cpp -------------------------------------------------------------------------------- /src/sharp/xsltargumentlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xsltargumentlist.hpp -------------------------------------------------------------------------------- /src/sharp/xsltransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xsltransform.cpp -------------------------------------------------------------------------------- /src/sharp/xsltransform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/sharp/xsltransform.hpp -------------------------------------------------------------------------------- /src/synchronization/filesystemsyncserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/filesystemsyncserver.cpp -------------------------------------------------------------------------------- /src/synchronization/filesystemsyncserver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/filesystemsyncserver.hpp -------------------------------------------------------------------------------- /src/synchronization/gnotesyncclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/gnotesyncclient.cpp -------------------------------------------------------------------------------- /src/synchronization/gnotesyncclient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/gnotesyncclient.hpp -------------------------------------------------------------------------------- /src/synchronization/gvfssyncservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/gvfssyncservice.cpp -------------------------------------------------------------------------------- /src/synchronization/gvfssyncservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/gvfssyncservice.hpp -------------------------------------------------------------------------------- /src/synchronization/gvfstransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/gvfstransfer.cpp -------------------------------------------------------------------------------- /src/synchronization/gvfstransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/gvfstransfer.hpp -------------------------------------------------------------------------------- /src/synchronization/isyncmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/isyncmanager.cpp -------------------------------------------------------------------------------- /src/synchronization/isyncmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/isyncmanager.hpp -------------------------------------------------------------------------------- /src/synchronization/silentui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/silentui.cpp -------------------------------------------------------------------------------- /src/synchronization/silentui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/silentui.hpp -------------------------------------------------------------------------------- /src/synchronization/syncdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncdialog.cpp -------------------------------------------------------------------------------- /src/synchronization/syncdialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncdialog.hpp -------------------------------------------------------------------------------- /src/synchronization/syncmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncmanager.cpp -------------------------------------------------------------------------------- /src/synchronization/syncmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncmanager.hpp -------------------------------------------------------------------------------- /src/synchronization/syncserviceaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncserviceaddin.cpp -------------------------------------------------------------------------------- /src/synchronization/syncserviceaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncserviceaddin.hpp -------------------------------------------------------------------------------- /src/synchronization/syncui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncui.cpp -------------------------------------------------------------------------------- /src/synchronization/syncui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncui.hpp -------------------------------------------------------------------------------- /src/synchronization/syncutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncutils.cpp -------------------------------------------------------------------------------- /src/synchronization/syncutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/synchronization/syncutils.hpp -------------------------------------------------------------------------------- /src/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/tag.cpp -------------------------------------------------------------------------------- /src/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/tag.hpp -------------------------------------------------------------------------------- /src/tagmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/tagmanager.cpp -------------------------------------------------------------------------------- /src/tagmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/tagmanager.hpp -------------------------------------------------------------------------------- /src/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/meson.build -------------------------------------------------------------------------------- /src/test/runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/runner.cpp -------------------------------------------------------------------------------- /src/test/testgnote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testgnote.cpp -------------------------------------------------------------------------------- /src/test/testgnote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testgnote.hpp -------------------------------------------------------------------------------- /src/test/testnote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testnote.cpp -------------------------------------------------------------------------------- /src/test/testnote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testnote.hpp -------------------------------------------------------------------------------- /src/test/testnotemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testnotemanager.cpp -------------------------------------------------------------------------------- /src/test/testnotemanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testnotemanager.hpp -------------------------------------------------------------------------------- /src/test/testsyncaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testsyncaddin.cpp -------------------------------------------------------------------------------- /src/test/testsyncaddin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testsyncaddin.hpp -------------------------------------------------------------------------------- /src/test/testsyncclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testsyncclient.cpp -------------------------------------------------------------------------------- /src/test/testsyncclient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testsyncclient.hpp -------------------------------------------------------------------------------- /src/test/testsyncmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testsyncmanager.cpp -------------------------------------------------------------------------------- /src/test/testsyncmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testsyncmanager.hpp -------------------------------------------------------------------------------- /src/test/testtagmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testtagmanager.cpp -------------------------------------------------------------------------------- /src/test/testtagmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/testtagmanager.hpp -------------------------------------------------------------------------------- /src/test/unit/datetimeutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/datetimeutests.cpp -------------------------------------------------------------------------------- /src/test/unit/directorytests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/directorytests.cpp -------------------------------------------------------------------------------- /src/test/unit/fileinfoutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/fileinfoutests.cpp -------------------------------------------------------------------------------- /src/test/unit/filesutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/filesutests.cpp -------------------------------------------------------------------------------- /src/test/unit/gnotesyncclientutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/gnotesyncclientutests.cpp -------------------------------------------------------------------------------- /src/test/unit/hashtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/hashtests.cpp -------------------------------------------------------------------------------- /src/test/unit/notemanagerutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/notemanagerutests.cpp -------------------------------------------------------------------------------- /src/test/unit/noteutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/noteutests.cpp -------------------------------------------------------------------------------- /src/test/unit/stringutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/stringutests.cpp -------------------------------------------------------------------------------- /src/test/unit/syncmanagerutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/syncmanagerutests.cpp -------------------------------------------------------------------------------- /src/test/unit/trieutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/trieutests.cpp -------------------------------------------------------------------------------- /src/test/unit/uriutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/uriutests.cpp -------------------------------------------------------------------------------- /src/test/unit/utiltests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/utiltests.cpp -------------------------------------------------------------------------------- /src/test/unit/xmldecodertests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/xmldecodertests.cpp -------------------------------------------------------------------------------- /src/test/unit/xmlreaderutests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/test/unit/xmlreaderutests.cpp -------------------------------------------------------------------------------- /src/trie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/trie.hpp -------------------------------------------------------------------------------- /src/triehit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/triehit.hpp -------------------------------------------------------------------------------- /src/undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/undo.cpp -------------------------------------------------------------------------------- /src/undo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/undo.hpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/utils.hpp -------------------------------------------------------------------------------- /src/watchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/watchers.cpp -------------------------------------------------------------------------------- /src/watchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/src/watchers.hpp -------------------------------------------------------------------------------- /tools/DBusClientTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/tools/DBusClientTest.py -------------------------------------------------------------------------------- /tools/SearchProviderTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/tools/SearchProviderTest.py -------------------------------------------------------------------------------- /wiki/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gnote/HEAD/wiki/main.md --------------------------------------------------------------------------------