├── .gitignore ├── AUTHORS ├── LICENSE-ar.txt ├── LICENSE-en.txt ├── MANIFEST.in ├── PKG-INFO ├── README ├── THANKS ├── TODO ├── changelog ├── curlew ├── curlew.desktop ├── curlew.svg ├── deb_prepare.sh ├── debian ├── changelog ├── compat ├── control ├── copyright ├── curlew.1 ├── docs ├── manpages ├── patches │ ├── disable_po_files_auto_update.diff │ └── series ├── rules ├── source │ └── format └── watch ├── done.ogg ├── formats.cfg ├── install.sh ├── modules ├── __init__.py ├── about.py ├── codecsdialog.py ├── configs.py ├── consts.py ├── curlew.py ├── customwidgets.py ├── errdialog.py ├── favdialog.py ├── formateditor.py ├── formats.py ├── functions.py ├── infobars.py ├── languages.py ├── logdialog.py ├── players.py ├── tray.py └── waitdialog.py ├── po ├── ar.po ├── br.po ├── cs.po ├── curlew.pot ├── de.po ├── en.po ├── es.po ├── eu.po ├── fr.po ├── it.po ├── nl.po ├── pl.po ├── ru.po ├── sr.po └── zh_TW.po ├── setup.py └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE-ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/LICENSE-ar.txt -------------------------------------------------------------------------------- /LICENSE-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/LICENSE-en.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/TODO -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/changelog -------------------------------------------------------------------------------- /curlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/curlew -------------------------------------------------------------------------------- /curlew.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/curlew.desktop -------------------------------------------------------------------------------- /curlew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/curlew.svg -------------------------------------------------------------------------------- /deb_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/deb_prepare.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/curlew.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/curlew.1 -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/manpages: -------------------------------------------------------------------------------- 1 | debian/curlew.1 2 | -------------------------------------------------------------------------------- /debian/patches/disable_po_files_auto_update.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/patches/disable_po_files_auto_update.diff -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | disable_po_files_auto_update.diff 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/debian/watch -------------------------------------------------------------------------------- /done.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/done.ogg -------------------------------------------------------------------------------- /formats.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/formats.cfg -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/install.sh -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/about.py -------------------------------------------------------------------------------- /modules/codecsdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/codecsdialog.py -------------------------------------------------------------------------------- /modules/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/configs.py -------------------------------------------------------------------------------- /modules/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/consts.py -------------------------------------------------------------------------------- /modules/curlew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/curlew.py -------------------------------------------------------------------------------- /modules/customwidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/customwidgets.py -------------------------------------------------------------------------------- /modules/errdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/errdialog.py -------------------------------------------------------------------------------- /modules/favdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/favdialog.py -------------------------------------------------------------------------------- /modules/formateditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/formateditor.py -------------------------------------------------------------------------------- /modules/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/formats.py -------------------------------------------------------------------------------- /modules/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/functions.py -------------------------------------------------------------------------------- /modules/infobars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/infobars.py -------------------------------------------------------------------------------- /modules/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/languages.py -------------------------------------------------------------------------------- /modules/logdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/logdialog.py -------------------------------------------------------------------------------- /modules/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/players.py -------------------------------------------------------------------------------- /modules/tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/tray.py -------------------------------------------------------------------------------- /modules/waitdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/modules/waitdialog.py -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/br.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/curlew.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/curlew.pot -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/de.po -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/en.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/es.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/it.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/setup.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamfay/Curlew/HEAD/uninstall.sh --------------------------------------------------------------------------------