├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── app ├── __init__.py ├── commons.py ├── connections.py ├── eparser │ ├── __init__.py │ ├── ecommons.py │ ├── enigma │ │ ├── __init__.py │ │ ├── blacklist.py │ │ ├── bouquets.py │ │ ├── lamedb.py │ │ └── streamrelay.py │ ├── iptv.py │ ├── neutrino │ │ ├── __init__.py │ │ ├── bouquets.py │ │ ├── nxml.py │ │ └── services.py │ └── satxml.py ├── settings.py ├── tools │ ├── __init__.py │ ├── epg.py │ ├── media.py │ ├── mpv.py │ ├── picons.py │ ├── satellites.py │ ├── vlc.py │ └── yt.py └── ui │ ├── __init__.py │ ├── app_menu.ui │ ├── backup.py │ ├── backup_dialog.glade │ ├── bootlogo.py │ ├── control.glade │ ├── control.py │ ├── dialogs.glade │ ├── dialogs.py │ ├── epg │ ├── __init__.py │ ├── dialog.glade │ ├── epg.py │ ├── settings.glade │ └── tab.glade │ ├── extensions │ ├── __init__.py │ └── management.py │ ├── ftp.glade │ ├── ftp.py │ ├── icons │ └── hicolor │ │ ├── 96x96 │ │ └── apps │ │ │ └── demon-editor.png │ │ └── scalable │ │ └── apps │ │ └── demon-editor.svg │ ├── imports.glade │ ├── imports.py │ ├── iptv.glade │ ├── iptv.py │ ├── lang │ ├── be │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── de │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── es │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── it │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── demon-editor.mo │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── demon-editor.mo │ ├── logs.glade │ ├── logs.py │ ├── m3u.glade │ ├── mac_style.css │ ├── main.glade │ ├── main.py │ ├── main_helper.py │ ├── picons.glade │ ├── picons.py │ ├── playback.glade │ ├── playback.py │ ├── recordings.glade │ ├── recordings.py │ ├── search.py │ ├── service_details_dialog.glade │ ├── service_details_dialog.py │ ├── settings_dialog.glade │ ├── settings_dialog.py │ ├── style.css │ ├── tasks.py │ ├── telnet.glade │ ├── telnet.py │ ├── timers.glade │ ├── timers.py │ ├── transmitter.glade │ ├── transmitter.py │ ├── uicommons.py │ ├── win_style.css │ └── xml │ ├── __init__.py │ ├── dialogs.glade │ ├── dialogs.py │ ├── edit.py │ ├── editor.glade │ └── update.glade ├── demon-editor.desktop ├── extensions ├── README.md └── __init__.py ├── po ├── be │ └── demon-editor.po ├── build.sh ├── de │ └── demon-editor.po ├── es │ └── demon-editor.po ├── it │ └── demon-editor.po ├── nl │ └── demon-editor.po ├── pl │ └── demon-editor.po ├── pt │ └── demon-editor.po ├── ru │ └── demon-editor.po ├── sk │ └── demon-editor.po ├── tr │ └── demon-editor.po └── zh_CN │ └── demon-editor.po └── start.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/_config.yml -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/commons.py -------------------------------------------------------------------------------- /app/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/connections.py -------------------------------------------------------------------------------- /app/eparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/__init__.py -------------------------------------------------------------------------------- /app/eparser/ecommons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/ecommons.py -------------------------------------------------------------------------------- /app/eparser/enigma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/eparser/enigma/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/enigma/blacklist.py -------------------------------------------------------------------------------- /app/eparser/enigma/bouquets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/enigma/bouquets.py -------------------------------------------------------------------------------- /app/eparser/enigma/lamedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/enigma/lamedb.py -------------------------------------------------------------------------------- /app/eparser/enigma/streamrelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/enigma/streamrelay.py -------------------------------------------------------------------------------- /app/eparser/iptv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/iptv.py -------------------------------------------------------------------------------- /app/eparser/neutrino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/neutrino/__init__.py -------------------------------------------------------------------------------- /app/eparser/neutrino/bouquets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/neutrino/bouquets.py -------------------------------------------------------------------------------- /app/eparser/neutrino/nxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/neutrino/nxml.py -------------------------------------------------------------------------------- /app/eparser/neutrino/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/neutrino/services.py -------------------------------------------------------------------------------- /app/eparser/satxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/eparser/satxml.py -------------------------------------------------------------------------------- /app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/settings.py -------------------------------------------------------------------------------- /app/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tools/epg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/epg.py -------------------------------------------------------------------------------- /app/tools/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/media.py -------------------------------------------------------------------------------- /app/tools/mpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/mpv.py -------------------------------------------------------------------------------- /app/tools/picons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/picons.py -------------------------------------------------------------------------------- /app/tools/satellites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/satellites.py -------------------------------------------------------------------------------- /app/tools/vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/vlc.py -------------------------------------------------------------------------------- /app/tools/yt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/tools/yt.py -------------------------------------------------------------------------------- /app/ui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/ui/app_menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/app_menu.ui -------------------------------------------------------------------------------- /app/ui/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/backup.py -------------------------------------------------------------------------------- /app/ui/backup_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/backup_dialog.glade -------------------------------------------------------------------------------- /app/ui/bootlogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/bootlogo.py -------------------------------------------------------------------------------- /app/ui/control.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/control.glade -------------------------------------------------------------------------------- /app/ui/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/control.py -------------------------------------------------------------------------------- /app/ui/dialogs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/dialogs.glade -------------------------------------------------------------------------------- /app/ui/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/dialogs.py -------------------------------------------------------------------------------- /app/ui/epg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ui/epg/dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/epg/dialog.glade -------------------------------------------------------------------------------- /app/ui/epg/epg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/epg/epg.py -------------------------------------------------------------------------------- /app/ui/epg/settings.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/epg/settings.glade -------------------------------------------------------------------------------- /app/ui/epg/tab.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/epg/tab.glade -------------------------------------------------------------------------------- /app/ui/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ui/extensions/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/extensions/management.py -------------------------------------------------------------------------------- /app/ui/ftp.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/ftp.glade -------------------------------------------------------------------------------- /app/ui/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/ftp.py -------------------------------------------------------------------------------- /app/ui/icons/hicolor/96x96/apps/demon-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/icons/hicolor/96x96/apps/demon-editor.png -------------------------------------------------------------------------------- /app/ui/icons/hicolor/scalable/apps/demon-editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/icons/hicolor/scalable/apps/demon-editor.svg -------------------------------------------------------------------------------- /app/ui/imports.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/imports.glade -------------------------------------------------------------------------------- /app/ui/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/imports.py -------------------------------------------------------------------------------- /app/ui/iptv.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/iptv.glade -------------------------------------------------------------------------------- /app/ui/iptv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/iptv.py -------------------------------------------------------------------------------- /app/ui/lang/be/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/be/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/de/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/de/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/es/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/es/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/it/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/it/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/nl/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/nl/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/pl/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/pl/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/pt/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/pt/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/ru/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/ru/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/sk/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/sk/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/tr/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/tr/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/lang/zh_CN/LC_MESSAGES/demon-editor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/lang/zh_CN/LC_MESSAGES/demon-editor.mo -------------------------------------------------------------------------------- /app/ui/logs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/logs.glade -------------------------------------------------------------------------------- /app/ui/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/logs.py -------------------------------------------------------------------------------- /app/ui/m3u.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/m3u.glade -------------------------------------------------------------------------------- /app/ui/mac_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/mac_style.css -------------------------------------------------------------------------------- /app/ui/main.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/main.glade -------------------------------------------------------------------------------- /app/ui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/main.py -------------------------------------------------------------------------------- /app/ui/main_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/main_helper.py -------------------------------------------------------------------------------- /app/ui/picons.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/picons.glade -------------------------------------------------------------------------------- /app/ui/picons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/picons.py -------------------------------------------------------------------------------- /app/ui/playback.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/playback.glade -------------------------------------------------------------------------------- /app/ui/playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/playback.py -------------------------------------------------------------------------------- /app/ui/recordings.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/recordings.glade -------------------------------------------------------------------------------- /app/ui/recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/recordings.py -------------------------------------------------------------------------------- /app/ui/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/search.py -------------------------------------------------------------------------------- /app/ui/service_details_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/service_details_dialog.glade -------------------------------------------------------------------------------- /app/ui/service_details_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/service_details_dialog.py -------------------------------------------------------------------------------- /app/ui/settings_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/settings_dialog.glade -------------------------------------------------------------------------------- /app/ui/settings_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/settings_dialog.py -------------------------------------------------------------------------------- /app/ui/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/style.css -------------------------------------------------------------------------------- /app/ui/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/tasks.py -------------------------------------------------------------------------------- /app/ui/telnet.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/telnet.glade -------------------------------------------------------------------------------- /app/ui/telnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/telnet.py -------------------------------------------------------------------------------- /app/ui/timers.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/timers.glade -------------------------------------------------------------------------------- /app/ui/timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/timers.py -------------------------------------------------------------------------------- /app/ui/transmitter.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/transmitter.glade -------------------------------------------------------------------------------- /app/ui/transmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/transmitter.py -------------------------------------------------------------------------------- /app/ui/uicommons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/uicommons.py -------------------------------------------------------------------------------- /app/ui/win_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/win_style.css -------------------------------------------------------------------------------- /app/ui/xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ui/xml/dialogs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/xml/dialogs.glade -------------------------------------------------------------------------------- /app/ui/xml/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/xml/dialogs.py -------------------------------------------------------------------------------- /app/ui/xml/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/xml/edit.py -------------------------------------------------------------------------------- /app/ui/xml/editor.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/xml/editor.glade -------------------------------------------------------------------------------- /app/ui/xml/update.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/app/ui/xml/update.glade -------------------------------------------------------------------------------- /demon-editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/demon-editor.desktop -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/extensions/README.md -------------------------------------------------------------------------------- /extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/extensions/__init__.py -------------------------------------------------------------------------------- /po/be/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/be/demon-editor.po -------------------------------------------------------------------------------- /po/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/build.sh -------------------------------------------------------------------------------- /po/de/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/de/demon-editor.po -------------------------------------------------------------------------------- /po/es/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/es/demon-editor.po -------------------------------------------------------------------------------- /po/it/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/it/demon-editor.po -------------------------------------------------------------------------------- /po/nl/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/nl/demon-editor.po -------------------------------------------------------------------------------- /po/pl/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/pl/demon-editor.po -------------------------------------------------------------------------------- /po/pt/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/pt/demon-editor.po -------------------------------------------------------------------------------- /po/ru/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/ru/demon-editor.po -------------------------------------------------------------------------------- /po/sk/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/sk/demon-editor.po -------------------------------------------------------------------------------- /po/tr/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/tr/demon-editor.po -------------------------------------------------------------------------------- /po/zh_CN/demon-editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/po/zh_CN/demon-editor.po -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DYefremov/DemonEditor/HEAD/start.py --------------------------------------------------------------------------------