Skip to content

Commit e0599b4

Browse files
authored
remove debug setting (#30)
* remove debug setting closes #29 * build: update manifest with new version
1 parent 1929800 commit e0599b4

File tree

13 files changed

+8
-50
lines changed

13 files changed

+8
-50
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ For example playing a video should enable screen capture, if you pause the video
1414
- Setup wizard with Hyperion Server detection (zero configuration)
1515
- Token Authorization (optional)
1616
- Languages: English, German, Spanish, French, Polish, Hungarian
17-
- Debug option with notifications
1817
- Execute from settings dialog: Hyperion Server detection
1918

2019
### Installation

pyproject.toml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,7 @@ warn_unused_configs = true
1414
warn_unused_ignores = true
1515

1616
[[tool.mypy.overrides]]
17-
module = [
18-
"androguard.*",
19-
"uplink",
20-
"requests.*",
21-
"authlib.*",
22-
"pytest",
23-
"pyaxmlparser.*"
24-
]
17+
module = ["requests.*"]
2518
ignore_missing_imports = true
2619

2720
[tool.ruff]

script.service.hyperion-control/addon.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon id="script.service.hyperion-control" name="Hyperion Control" version="20.0.0" provider-name="hyperion-project">
33
<requires>
4-
<import addon="xbmc.addon" version="20.0.0"/>
4+
<import addon="xbmc.addon" version="20.0.1"/>
55
<import addon="xbmc.python" version="3.0.1"/>
66
<import addon="script.module.requests" version="2.3.0"/>
77
</requires>
@@ -17,6 +17,9 @@
1717
<website>https://hyperion-project.org/forum</website>
1818
<source>https://github.com/hyperion-project/hyperion.control</source>
1919
<news>
20+
20.0.1
21+
- Removed redundant debug setting
22+
2023
20.0.0
2124
- Kodi 20 (Nexus) support
2225
- Multi instance handling

script.service.hyperion-control/resources/language/resource.language.de_de/strings.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ msgctxt "#32005"
3737
msgid "Disable Hyperion on shutdown"
3838
msgstr "Deaktiviere Hyperion beim Beenden"
3939

40-
#:
41-
msgctxt "#32006"
42-
msgid "Enable Debug"
43-
msgstr "Aktiviere Debugging"
44-
4540
#:
4641
msgctxt "#32007"
4742
msgid "Show changelog after update"

script.service.hyperion-control/resources/language/resource.language.en_gb/strings.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ msgctxt "#32005"
3737
msgid "Disable Hyperion on shutdown"
3838
msgstr "Disable Hyperion on shutdown"
3939

40-
#:
41-
msgctxt "#32006"
42-
msgid "Enable Debug"
43-
msgstr "Enable Debug"
44-
4540
#:
4641
msgctxt "#32007"
4742
msgid "Show changelog after update"

script.service.hyperion-control/resources/language/resource.language.es_es/strings.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ msgctxt "#32005"
3737
msgid "Disable Hyperion on shutdown"
3838
msgstr "Deshabilitar Hyperion al apagar"
3939

40-
#:
41-
msgctxt "#32006"
42-
msgid "Enable Debug"
43-
msgstr "Habilitar la Depuración"
44-
4540
#:
4641
msgctxt "#32007"
4742
msgid "Show changelog after update"

script.service.hyperion-control/resources/language/resource.language.fr_fr/strings.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ msgctxt "#32005"
3737
msgid "Disable Hyperion on shutdown"
3838
msgstr "Désactiver Hyperion à l'extinction"
3939

40-
#:
41-
msgctxt "#32006"
42-
msgid "Enable Debug"
43-
msgstr "Activer le débogage"
44-
4540
#:
4641
msgctxt "#32007"
4742
msgid "Show changelog after update"

script.service.hyperion-control/resources/language/resource.language.hu_hu/strings.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ msgctxt "#32005"
3737
msgid "Disable Hyperion on shutdown"
3838
msgstr "Hyperion kikapcsolása leállításkor"
3939

40-
#:
41-
msgctxt "#32006"
42-
msgid "Enable Debug"
43-
msgstr "Hibakeresés engedélyezése"
44-
4540
#:
4641
msgctxt "#32007"
4742
msgid "Show changelog after update"

script.service.hyperion-control/resources/language/resource.language.pl_pl/strings.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ msgctxt "#32005"
3737
msgid "Disable Hyperion on shutdown"
3838
msgstr "Wyłącz Hyperion przy zamknięciu systemu"
3939

40-
#:
41-
msgctxt "#32006"
42-
msgid "Enable Debug"
43-
msgstr "Włącz debugowanie"
44-
4540
#:
4641
msgctxt "#32007"
4742
msgid "Show changelog after update"

script.service.hyperion-control/resources/lib/hyperion.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ def _initialize(self) -> None:
5252

5353
def notify(self, command: str) -> None:
5454
"""Process the commands sent by the observables."""
55-
if self._settings.debug:
56-
self._logger.log(f"received command: {command}")
55+
self._logger.log(f"received command: {command}")
5756
if command == "updateSettings":
5857
self.update_settings()
5958
else:

0 commit comments

Comments
 (0)