├── .clang-format ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── README.md ├── data ├── com.github.jkotra.unlockr.desktop.in ├── com.github.jkotra.unlockr.gschema.xml ├── com.github.jkotra.unlockr.metainfo.xml.in ├── css │ └── main.css ├── icons │ ├── com.github.jkotra.unlockr.ico │ ├── com.github.jkotra.unlockr.png │ ├── com.github.jkotra.unlockr.svg │ ├── favicon.rc │ ├── hero.png │ └── hero.svg ├── meson.build └── unlockr.gresource.xml ├── include ├── about.h ├── details.h ├── libunlockr.h ├── main.h ├── meson.build ├── process.h └── utils.h ├── meson.build ├── meson_options.txt ├── meson_post_install.py ├── po ├── LINGUAS ├── POTFILES ├── README.md ├── ar.po ├── de.po ├── es.po ├── hr.po ├── it.po ├── meson.build ├── nl.po ├── pt_BR.po ├── te.po ├── tr.po └── unlockr.pot ├── run_program_debug.ps1 ├── run_program_debug.sh ├── src ├── about.c ├── main.c ├── meson.build ├── process.c └── utils.c ├── static ├── dark.png ├── light.png ├── ok.png └── process.png ├── subprojects └── libunlockr │ ├── libunlockr.cpp │ └── meson.build └── windows_portable.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/README.md -------------------------------------------------------------------------------- /data/com.github.jkotra.unlockr.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/com.github.jkotra.unlockr.desktop.in -------------------------------------------------------------------------------- /data/com.github.jkotra.unlockr.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/com.github.jkotra.unlockr.gschema.xml -------------------------------------------------------------------------------- /data/com.github.jkotra.unlockr.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/com.github.jkotra.unlockr.metainfo.xml.in -------------------------------------------------------------------------------- /data/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/css/main.css -------------------------------------------------------------------------------- /data/icons/com.github.jkotra.unlockr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/icons/com.github.jkotra.unlockr.ico -------------------------------------------------------------------------------- /data/icons/com.github.jkotra.unlockr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/icons/com.github.jkotra.unlockr.png -------------------------------------------------------------------------------- /data/icons/com.github.jkotra.unlockr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/icons/com.github.jkotra.unlockr.svg -------------------------------------------------------------------------------- /data/icons/favicon.rc: -------------------------------------------------------------------------------- 1 | id ICON "com.github.jkotra.unlockr.ico" -------------------------------------------------------------------------------- /data/icons/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/icons/hero.png -------------------------------------------------------------------------------- /data/icons/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/icons/hero.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/unlockr.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/data/unlockr.gresource.xml -------------------------------------------------------------------------------- /include/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/about.h -------------------------------------------------------------------------------- /include/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/details.h -------------------------------------------------------------------------------- /include/libunlockr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/libunlockr.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/main.h -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/process.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/include/utils.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/meson_options.txt -------------------------------------------------------------------------------- /meson_post_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/meson_post_install.py -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | ar 2 | de 3 | es 4 | hr 5 | it 6 | nl 7 | te 8 | tr 9 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/README.md -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/es.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/it.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('unlockr', preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/unlockr.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/po/unlockr.pot -------------------------------------------------------------------------------- /run_program_debug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/run_program_debug.ps1 -------------------------------------------------------------------------------- /run_program_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/run_program_debug.sh -------------------------------------------------------------------------------- /src/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/src/about.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/src/main.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/src/process.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/src/utils.c -------------------------------------------------------------------------------- /static/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/static/dark.png -------------------------------------------------------------------------------- /static/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/static/light.png -------------------------------------------------------------------------------- /static/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/static/ok.png -------------------------------------------------------------------------------- /static/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/static/process.png -------------------------------------------------------------------------------- /subprojects/libunlockr/libunlockr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/subprojects/libunlockr/libunlockr.cpp -------------------------------------------------------------------------------- /subprojects/libunlockr/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/subprojects/libunlockr/meson.build -------------------------------------------------------------------------------- /windows_portable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkotra/unlockr/HEAD/windows_portable.py --------------------------------------------------------------------------------