├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data ├── README.md ├── flathub.json ├── icons │ ├── org.small_tech.Gnomit.png │ └── org.small_tech.Gnomit.svg ├── meson.build ├── org.small_tech.Gnomit.appdata.xml.in ├── org.small_tech.Gnomit.desktop.in └── org.small_tech.Gnomit.gschema.xml ├── gnomit.png ├── meson.build ├── org.small_tech.Gnomit.json ├── po ├── LINGUAS ├── POTFILES └── meson.build ├── publish-to-flathub ├── src ├── application.js ├── main.js ├── meson.build ├── org.small_tech.Gnomit.data.gresource.xml ├── org.small_tech.Gnomit.in ├── org.small_tech.Gnomit.src.gresource.xml ├── window.glade └── window.js └── tests ├── add-p-edit-hunk ├── merge ├── message-with-body ├── message-without-body ├── rebase └── tag-message /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/README.md -------------------------------------------------------------------------------- /data/flathub.json: -------------------------------------------------------------------------------- 1 | { 2 | "publish-delay-hours": 0 3 | } -------------------------------------------------------------------------------- /data/icons/org.small_tech.Gnomit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/icons/org.small_tech.Gnomit.png -------------------------------------------------------------------------------- /data/icons/org.small_tech.Gnomit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/icons/org.small_tech.Gnomit.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/org.small_tech.Gnomit.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/org.small_tech.Gnomit.appdata.xml.in -------------------------------------------------------------------------------- /data/org.small_tech.Gnomit.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/org.small_tech.Gnomit.desktop.in -------------------------------------------------------------------------------- /data/org.small_tech.Gnomit.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/data/org.small_tech.Gnomit.gschema.xml -------------------------------------------------------------------------------- /gnomit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/gnomit.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/meson.build -------------------------------------------------------------------------------- /org.small_tech.Gnomit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/org.small_tech.Gnomit.json -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('gnomit', preset: 'glib') 2 | -------------------------------------------------------------------------------- /publish-to-flathub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/publish-to-flathub -------------------------------------------------------------------------------- /src/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/application.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/main.js -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/org.small_tech.Gnomit.data.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/org.small_tech.Gnomit.data.gresource.xml -------------------------------------------------------------------------------- /src/org.small_tech.Gnomit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/org.small_tech.Gnomit.in -------------------------------------------------------------------------------- /src/org.small_tech.Gnomit.src.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/org.small_tech.Gnomit.src.gresource.xml -------------------------------------------------------------------------------- /src/window.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/window.glade -------------------------------------------------------------------------------- /src/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/src/window.js -------------------------------------------------------------------------------- /tests/add-p-edit-hunk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/tests/add-p-edit-hunk -------------------------------------------------------------------------------- /tests/merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/tests/merge -------------------------------------------------------------------------------- /tests/message-with-body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/tests/message-with-body -------------------------------------------------------------------------------- /tests/message-without-body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/tests/message-without-body -------------------------------------------------------------------------------- /tests/rebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/tests/rebase -------------------------------------------------------------------------------- /tests/tag-message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/gnomit/HEAD/tests/tag-message --------------------------------------------------------------------------------