├── .gitignore ├── .tx └── config ├── LICENSE ├── README.md ├── data ├── HasteApplet.plugin ├── com.github.cybre.budgie-haste-applet.appdata.xml ├── com.github.cybre.budgie-haste-applet.gresource.xml ├── com.github.cybre.budgie-haste-applet.gschema.xml ├── images │ ├── screenshot.png │ └── screenshot1.png ├── meson.build ├── meson_post_install.py ├── style │ └── style.css └── ui │ ├── editor_view.ui │ ├── history_item.ui │ ├── history_placeholder.ui │ ├── history_view.ui │ └── settings_view.ui ├── meson.build ├── po ├── POTFILES ├── budgie-haste-applet.pot ├── ca.po ├── da.po ├── de.po ├── id_ID.po ├── lt.po ├── meson.build ├── nl_BE.po ├── nl_NL.po ├── sr_RS.po ├── sr_RS@latin.po └── update_linguas.sh ├── src ├── Backend │ ├── BackendUtil.vala │ ├── Providers │ │ ├── GPaste.vala │ │ ├── GitHubGist.vala │ │ ├── Hastebin.vala │ │ ├── IProvider.vala │ │ └── Pastebin.vala │ ├── SettingsManager.vala │ └── Uploader.vala ├── HasteApplet.vala ├── Views │ ├── EditorView.vala │ ├── HistoryView.vala │ └── SettingsView.vala ├── Widgets │ ├── AutomaticScrollBox.vala │ ├── HistoryItem.vala │ ├── IndicatorWindow.vala │ └── MainStack.vala ├── config.h.in └── meson.build └── vapi └── config.vapi /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *~ -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/.tx/config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/README.md -------------------------------------------------------------------------------- /data/HasteApplet.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/HasteApplet.plugin -------------------------------------------------------------------------------- /data/com.github.cybre.budgie-haste-applet.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/com.github.cybre.budgie-haste-applet.appdata.xml -------------------------------------------------------------------------------- /data/com.github.cybre.budgie-haste-applet.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/com.github.cybre.budgie-haste-applet.gresource.xml -------------------------------------------------------------------------------- /data/com.github.cybre.budgie-haste-applet.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/com.github.cybre.budgie-haste-applet.gschema.xml -------------------------------------------------------------------------------- /data/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/images/screenshot.png -------------------------------------------------------------------------------- /data/images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/images/screenshot1.png -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/meson_post_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/meson_post_install.py -------------------------------------------------------------------------------- /data/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/style/style.css -------------------------------------------------------------------------------- /data/ui/editor_view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/ui/editor_view.ui -------------------------------------------------------------------------------- /data/ui/history_item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/ui/history_item.ui -------------------------------------------------------------------------------- /data/ui/history_placeholder.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/ui/history_placeholder.ui -------------------------------------------------------------------------------- /data/ui/history_view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/ui/history_view.ui -------------------------------------------------------------------------------- /data/ui/settings_view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/data/ui/settings_view.ui -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/meson.build -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/budgie-haste-applet.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/budgie-haste-applet.pot -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/de.po -------------------------------------------------------------------------------- /po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/id_ID.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/nl_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/nl_BE.po -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/sr_RS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/sr_RS.po -------------------------------------------------------------------------------- /po/sr_RS@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/sr_RS@latin.po -------------------------------------------------------------------------------- /po/update_linguas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/po/update_linguas.sh -------------------------------------------------------------------------------- /src/Backend/BackendUtil.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/BackendUtil.vala -------------------------------------------------------------------------------- /src/Backend/Providers/GPaste.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/Providers/GPaste.vala -------------------------------------------------------------------------------- /src/Backend/Providers/GitHubGist.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/Providers/GitHubGist.vala -------------------------------------------------------------------------------- /src/Backend/Providers/Hastebin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/Providers/Hastebin.vala -------------------------------------------------------------------------------- /src/Backend/Providers/IProvider.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/Providers/IProvider.vala -------------------------------------------------------------------------------- /src/Backend/Providers/Pastebin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/Providers/Pastebin.vala -------------------------------------------------------------------------------- /src/Backend/SettingsManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/SettingsManager.vala -------------------------------------------------------------------------------- /src/Backend/Uploader.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Backend/Uploader.vala -------------------------------------------------------------------------------- /src/HasteApplet.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/HasteApplet.vala -------------------------------------------------------------------------------- /src/Views/EditorView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Views/EditorView.vala -------------------------------------------------------------------------------- /src/Views/HistoryView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Views/HistoryView.vala -------------------------------------------------------------------------------- /src/Views/SettingsView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Views/SettingsView.vala -------------------------------------------------------------------------------- /src/Widgets/AutomaticScrollBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Widgets/AutomaticScrollBox.vala -------------------------------------------------------------------------------- /src/Widgets/HistoryItem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Widgets/HistoryItem.vala -------------------------------------------------------------------------------- /src/Widgets/IndicatorWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Widgets/IndicatorWindow.vala -------------------------------------------------------------------------------- /src/Widgets/MainStack.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/Widgets/MainStack.vala -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/src/meson.build -------------------------------------------------------------------------------- /vapi/config.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybre/budgie-haste-applet/HEAD/vapi/config.vapi --------------------------------------------------------------------------------