├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .tx └── config ├── AUTHORS.md ├── COPYING ├── Makefile ├── NEWS.md ├── README.md ├── bin ├── nfoview └── nfoview.in ├── data ├── io.otsaloma.nfoview-symbolic.svg ├── io.otsaloma.nfoview.appdata.xml.in ├── io.otsaloma.nfoview.desktop.in ├── io.otsaloma.nfoview.svg ├── menu.ui └── nfoview.1 ├── flatpak ├── Makefile └── io.otsaloma.nfoview.yml ├── nfoview ├── __init__.py ├── about.py ├── action.py ├── actions.py ├── application.py ├── config.py ├── errors.py ├── export.py ├── i18n.py ├── open.py ├── paths.py ├── preferences.py ├── schemes.py ├── test │ ├── __init__.py │ ├── test_about.py │ ├── test_config.py │ ├── test_export.py │ ├── test_open.py │ ├── test_preferences.py │ ├── test_util.py │ ├── test_view.py │ └── test_window.py ├── unittest.py ├── util.py ├── view.py └── window.py ├── po ├── LINGUAS ├── README.md ├── bg.po ├── br.po ├── cs.po ├── de.po ├── de_CH.po ├── el.po ├── es_ES.po ├── fi.po ├── fr.po ├── he.po ├── hu.po ├── it.po ├── ka.po ├── nfoview.pot ├── nl.po ├── pl.po ├── pt_BR.po ├── pt_PT.po ├── ro.po ├── ru.po ├── sr.po ├── sv.po ├── tr.po └── zh_CN.po └── tools ├── check-translations ├── extract-translations ├── release └── update-translations /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/README.md -------------------------------------------------------------------------------- /bin/nfoview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/bin/nfoview -------------------------------------------------------------------------------- /bin/nfoview.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/bin/nfoview.in -------------------------------------------------------------------------------- /data/io.otsaloma.nfoview-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/data/io.otsaloma.nfoview-symbolic.svg -------------------------------------------------------------------------------- /data/io.otsaloma.nfoview.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/data/io.otsaloma.nfoview.appdata.xml.in -------------------------------------------------------------------------------- /data/io.otsaloma.nfoview.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/data/io.otsaloma.nfoview.desktop.in -------------------------------------------------------------------------------- /data/io.otsaloma.nfoview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/data/io.otsaloma.nfoview.svg -------------------------------------------------------------------------------- /data/menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/data/menu.ui -------------------------------------------------------------------------------- /data/nfoview.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/data/nfoview.1 -------------------------------------------------------------------------------- /flatpak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/flatpak/Makefile -------------------------------------------------------------------------------- /flatpak/io.otsaloma.nfoview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/flatpak/io.otsaloma.nfoview.yml -------------------------------------------------------------------------------- /nfoview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/__init__.py -------------------------------------------------------------------------------- /nfoview/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/about.py -------------------------------------------------------------------------------- /nfoview/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/action.py -------------------------------------------------------------------------------- /nfoview/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/actions.py -------------------------------------------------------------------------------- /nfoview/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/application.py -------------------------------------------------------------------------------- /nfoview/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/config.py -------------------------------------------------------------------------------- /nfoview/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/errors.py -------------------------------------------------------------------------------- /nfoview/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/export.py -------------------------------------------------------------------------------- /nfoview/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/i18n.py -------------------------------------------------------------------------------- /nfoview/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/open.py -------------------------------------------------------------------------------- /nfoview/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/paths.py -------------------------------------------------------------------------------- /nfoview/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/preferences.py -------------------------------------------------------------------------------- /nfoview/schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/schemes.py -------------------------------------------------------------------------------- /nfoview/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nfoview/test/test_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_about.py -------------------------------------------------------------------------------- /nfoview/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_config.py -------------------------------------------------------------------------------- /nfoview/test/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_export.py -------------------------------------------------------------------------------- /nfoview/test/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_open.py -------------------------------------------------------------------------------- /nfoview/test/test_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_preferences.py -------------------------------------------------------------------------------- /nfoview/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_util.py -------------------------------------------------------------------------------- /nfoview/test/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_view.py -------------------------------------------------------------------------------- /nfoview/test/test_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/test/test_window.py -------------------------------------------------------------------------------- /nfoview/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/unittest.py -------------------------------------------------------------------------------- /nfoview/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/util.py -------------------------------------------------------------------------------- /nfoview/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/view.py -------------------------------------------------------------------------------- /nfoview/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/nfoview/window.py -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/README.md -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/br.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/de.po -------------------------------------------------------------------------------- /po/de_CH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/de_CH.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/nfoview.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/nfoview.pot -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /tools/check-translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/tools/check-translations -------------------------------------------------------------------------------- /tools/extract-translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/tools/extract-translations -------------------------------------------------------------------------------- /tools/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/tools/release -------------------------------------------------------------------------------- /tools/update-translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otsaloma/nfoview/HEAD/tools/update-translations --------------------------------------------------------------------------------