├── .gitignore ├── CMakeLists.txt ├── COPYING ├── CREDITS ├── ChangeLog ├── INSTALL ├── README ├── cmake ├── AddVersionCompileDefinition.cmake ├── BundleResources.cmake └── TranslateMetainfo.cmake ├── doc └── kapow.1 ├── icons ├── hicolor │ ├── 1024x1024 │ │ └── apps │ │ │ └── kapow.png │ ├── 128x128 │ │ └── apps │ │ │ └── kapow.png │ ├── 16x16 │ │ └── apps │ │ │ └── kapow.png │ ├── 22x22 │ │ └── apps │ │ │ └── kapow.png │ ├── 24x24 │ │ └── apps │ │ │ └── kapow.png │ ├── 256x256 │ │ └── apps │ │ │ └── kapow.png │ ├── 32x32 │ │ └── apps │ │ │ └── kapow.png │ ├── 48x48 │ │ └── apps │ │ │ └── kapow.png │ ├── 512x512 │ │ └── apps │ │ │ └── kapow.png │ ├── 64x64 │ │ └── apps │ │ │ └── kapow.png │ └── scalable │ │ └── apps │ │ └── kapow.svg ├── icons.qrc ├── kapow.appdata.xml.in ├── kapow.desktop.in ├── kapow.icns ├── kapow.ico └── po │ ├── LINGUAS │ ├── ar.po │ ├── bg.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── description.pot │ ├── el.po │ ├── es.po │ ├── et.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sv.po │ ├── tr.po │ └── uk.po ├── mac ├── Info.plist.in └── background.tiff ├── mac_deploy.sh ├── src ├── 3rdparty │ └── qtsingleapplication │ │ ├── QtSingleApplication │ │ ├── qtlocalpeer.cpp │ │ ├── qtlocalpeer.h │ │ ├── qtsingleapplication.cpp │ │ └── qtsingleapplication.h ├── contact.cpp ├── contact.h ├── date_editor.cpp ├── date_editor.h ├── filter_model.cpp ├── filter_model.h ├── locale_dialog.cpp ├── locale_dialog.h ├── main.cpp ├── paths.cpp ├── paths.h ├── project.cpp ├── project.h ├── project_delegate.cpp ├── project_delegate.h ├── rates.cpp ├── rates.h ├── report.cpp ├── report.h ├── session.cpp ├── session.h ├── session_delegate.cpp ├── session_delegate.h ├── session_dialog.cpp ├── session_dialog.h ├── session_model.cpp ├── session_model.h ├── settings.cpp ├── settings.h ├── time_editor.cpp ├── time_editor.h ├── window.cpp └── window.h ├── tests ├── CMakeLists.txt ├── test_filters │ ├── test_filters.cpp │ └── test_filters.h └── test_sessions │ ├── test_sessions.cpp │ └── test_sessions.h ├── translations ├── kapow_ar.ts ├── kapow_bg.ts ├── kapow_cs.ts ├── kapow_da.ts ├── kapow_de.ts ├── kapow_el.ts ├── kapow_en.ts ├── kapow_es.ts ├── kapow_et.ts ├── kapow_fr.ts ├── kapow_it.ts ├── kapow_lt.ts ├── kapow_nl.ts ├── kapow_no.ts ├── kapow_pl.ts ├── kapow_pt.ts ├── kapow_pt_BR.ts ├── kapow_ro.ts ├── kapow_ru.ts ├── kapow_sv.ts ├── kapow_tr.ts └── kapow_uk.ts ├── windows ├── installer.nsi └── removeprevious.nsh └── windows_deploy.bat /.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | build 3 | kapow 4 | *.qm 5 | *~ 6 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/README -------------------------------------------------------------------------------- /cmake/AddVersionCompileDefinition.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/cmake/AddVersionCompileDefinition.cmake -------------------------------------------------------------------------------- /cmake/BundleResources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/cmake/BundleResources.cmake -------------------------------------------------------------------------------- /cmake/TranslateMetainfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/cmake/TranslateMetainfo.cmake -------------------------------------------------------------------------------- /doc/kapow.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/doc/kapow.1 -------------------------------------------------------------------------------- /icons/hicolor/1024x1024/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/1024x1024/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/128x128/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/128x128/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/16x16/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/16x16/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/22x22/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/22x22/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/24x24/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/24x24/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/256x256/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/256x256/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/32x32/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/32x32/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/48x48/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/48x48/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/512x512/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/512x512/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/64x64/apps/kapow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/64x64/apps/kapow.png -------------------------------------------------------------------------------- /icons/hicolor/scalable/apps/kapow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/hicolor/scalable/apps/kapow.svg -------------------------------------------------------------------------------- /icons/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/icons.qrc -------------------------------------------------------------------------------- /icons/kapow.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/kapow.appdata.xml.in -------------------------------------------------------------------------------- /icons/kapow.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/kapow.desktop.in -------------------------------------------------------------------------------- /icons/kapow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/kapow.icns -------------------------------------------------------------------------------- /icons/kapow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/kapow.ico -------------------------------------------------------------------------------- /icons/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/LINGUAS -------------------------------------------------------------------------------- /icons/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/ar.po -------------------------------------------------------------------------------- /icons/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/bg.po -------------------------------------------------------------------------------- /icons/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/cs.po -------------------------------------------------------------------------------- /icons/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/da.po -------------------------------------------------------------------------------- /icons/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/de.po -------------------------------------------------------------------------------- /icons/po/description.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/description.pot -------------------------------------------------------------------------------- /icons/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/el.po -------------------------------------------------------------------------------- /icons/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/es.po -------------------------------------------------------------------------------- /icons/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/et.po -------------------------------------------------------------------------------- /icons/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/fr.po -------------------------------------------------------------------------------- /icons/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/it.po -------------------------------------------------------------------------------- /icons/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/lt.po -------------------------------------------------------------------------------- /icons/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/nl.po -------------------------------------------------------------------------------- /icons/po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/no.po -------------------------------------------------------------------------------- /icons/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/pl.po -------------------------------------------------------------------------------- /icons/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/pt.po -------------------------------------------------------------------------------- /icons/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/pt_BR.po -------------------------------------------------------------------------------- /icons/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/ro.po -------------------------------------------------------------------------------- /icons/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/ru.po -------------------------------------------------------------------------------- /icons/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/sv.po -------------------------------------------------------------------------------- /icons/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/tr.po -------------------------------------------------------------------------------- /icons/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/icons/po/uk.po -------------------------------------------------------------------------------- /mac/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/mac/Info.plist.in -------------------------------------------------------------------------------- /mac/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/mac/background.tiff -------------------------------------------------------------------------------- /mac_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/mac_deploy.sh -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/3rdparty/qtsingleapplication/qtlocalpeer.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/3rdparty/qtsingleapplication/qtlocalpeer.h -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/3rdparty/qtsingleapplication/qtsingleapplication.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/3rdparty/qtsingleapplication/qtsingleapplication.h -------------------------------------------------------------------------------- /src/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/contact.cpp -------------------------------------------------------------------------------- /src/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/contact.h -------------------------------------------------------------------------------- /src/date_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/date_editor.cpp -------------------------------------------------------------------------------- /src/date_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/date_editor.h -------------------------------------------------------------------------------- /src/filter_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/filter_model.cpp -------------------------------------------------------------------------------- /src/filter_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/filter_model.h -------------------------------------------------------------------------------- /src/locale_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/locale_dialog.cpp -------------------------------------------------------------------------------- /src/locale_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/locale_dialog.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/paths.cpp -------------------------------------------------------------------------------- /src/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/paths.h -------------------------------------------------------------------------------- /src/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/project.cpp -------------------------------------------------------------------------------- /src/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/project.h -------------------------------------------------------------------------------- /src/project_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/project_delegate.cpp -------------------------------------------------------------------------------- /src/project_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/project_delegate.h -------------------------------------------------------------------------------- /src/rates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/rates.cpp -------------------------------------------------------------------------------- /src/rates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/rates.h -------------------------------------------------------------------------------- /src/report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/report.cpp -------------------------------------------------------------------------------- /src/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/report.h -------------------------------------------------------------------------------- /src/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session.cpp -------------------------------------------------------------------------------- /src/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session.h -------------------------------------------------------------------------------- /src/session_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session_delegate.cpp -------------------------------------------------------------------------------- /src/session_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session_delegate.h -------------------------------------------------------------------------------- /src/session_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session_dialog.cpp -------------------------------------------------------------------------------- /src/session_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session_dialog.h -------------------------------------------------------------------------------- /src/session_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session_model.cpp -------------------------------------------------------------------------------- /src/session_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/session_model.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/time_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/time_editor.cpp -------------------------------------------------------------------------------- /src/time_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/time_editor.h -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/src/window.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_filters/test_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/tests/test_filters/test_filters.cpp -------------------------------------------------------------------------------- /tests/test_filters/test_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/tests/test_filters/test_filters.h -------------------------------------------------------------------------------- /tests/test_sessions/test_sessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/tests/test_sessions/test_sessions.cpp -------------------------------------------------------------------------------- /tests/test_sessions/test_sessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/tests/test_sessions/test_sessions.h -------------------------------------------------------------------------------- /translations/kapow_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_ar.ts -------------------------------------------------------------------------------- /translations/kapow_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_bg.ts -------------------------------------------------------------------------------- /translations/kapow_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_cs.ts -------------------------------------------------------------------------------- /translations/kapow_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_da.ts -------------------------------------------------------------------------------- /translations/kapow_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_de.ts -------------------------------------------------------------------------------- /translations/kapow_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_el.ts -------------------------------------------------------------------------------- /translations/kapow_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_en.ts -------------------------------------------------------------------------------- /translations/kapow_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_es.ts -------------------------------------------------------------------------------- /translations/kapow_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_et.ts -------------------------------------------------------------------------------- /translations/kapow_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_fr.ts -------------------------------------------------------------------------------- /translations/kapow_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_it.ts -------------------------------------------------------------------------------- /translations/kapow_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_lt.ts -------------------------------------------------------------------------------- /translations/kapow_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_nl.ts -------------------------------------------------------------------------------- /translations/kapow_no.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_no.ts -------------------------------------------------------------------------------- /translations/kapow_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_pl.ts -------------------------------------------------------------------------------- /translations/kapow_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_pt.ts -------------------------------------------------------------------------------- /translations/kapow_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_pt_BR.ts -------------------------------------------------------------------------------- /translations/kapow_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_ro.ts -------------------------------------------------------------------------------- /translations/kapow_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_ru.ts -------------------------------------------------------------------------------- /translations/kapow_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_sv.ts -------------------------------------------------------------------------------- /translations/kapow_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_tr.ts -------------------------------------------------------------------------------- /translations/kapow_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/translations/kapow_uk.ts -------------------------------------------------------------------------------- /windows/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/windows/installer.nsi -------------------------------------------------------------------------------- /windows/removeprevious.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/windows/removeprevious.nsh -------------------------------------------------------------------------------- /windows_deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/kapow/HEAD/windows_deploy.bat --------------------------------------------------------------------------------