Browse Source

fix moonraker webcam. mention moonraker in descriptions.

Thomas Buck 1 year ago
parent
commit
83c6b7ba77
4 changed files with 4 additions and 4 deletions
  1. 1
    1
      data/de.xythobuz.octotray.desktop
  2. 1
    1
      dist/PKGBUILD
  3. 1
    1
      dist/setup_mac.py
  4. 1
    1
      src/APIMoonraker.py

+ 1
- 1
data/de.xythobuz.octotray.desktop View File

2
 Type=Application
2
 Type=Application
3
 Version=0.5
3
 Version=0.5
4
 Name=OctoTray
4
 Name=OctoTray
5
-Comment=Control OctoPrint instances from system tray
5
+Comment=Control OctoPrint/Moonraker instances from system tray
6
 Path=/usr/bin
6
 Path=/usr/bin
7
 Exec=octotray
7
 Exec=octotray
8
 Icon=/usr/share/pixmaps/octotray_icon.png
8
 Icon=/usr/share/pixmaps/octotray_icon.png

+ 1
- 1
dist/PKGBUILD View File

2
 pkgname=OctoTray
2
 pkgname=OctoTray
3
 pkgver=0.5
3
 pkgver=0.5
4
 pkgrel=1
4
 pkgrel=1
5
-pkgdesc="Control OctoPrint instances from system tray"
5
+pkgdesc="Control OctoPrint/Moonraker instances from system tray"
6
 arch=('any')
6
 arch=('any')
7
 license=('unknown')
7
 license=('unknown')
8
 depends=('python-pyqt5')
8
 depends=('python-pyqt5')

+ 1
- 1
dist/setup_mac.py View File

14
     'plist': {
14
     'plist': {
15
         'CFBundleName': APP_NAME,
15
         'CFBundleName': APP_NAME,
16
         'CFBundleDisplayName': APP_NAME,
16
         'CFBundleDisplayName': APP_NAME,
17
-        'CFBundleGetInfoString': "Control OctoPrint instances from system tray",
17
+        'CFBundleGetInfoString': "Control OctoPrint/Moonraker instances from system tray",
18
         'CFBundleIdentifier': "de.xythobuz.octotray",
18
         'CFBundleIdentifier': "de.xythobuz.octotray",
19
         'CFBundleVersion': VERSION,
19
         'CFBundleVersion': VERSION,
20
         'CFBundleShortVersionString': VERSION,
20
         'CFBundleShortVersionString': VERSION,

+ 1
- 1
src/APIMoonraker.py View File

22
     def __init__(self, parent, host, webcam):
22
     def __init__(self, parent, host, webcam):
23
         self.parent = parent
23
         self.parent = parent
24
         self.host = host
24
         self.host = host
25
-        self.webcamIndex = webcam
25
+        self.webcamIndex = int(webcam)
26
 
26
 
27
     # return list of tuples ( "name", func(name) )
27
     # return list of tuples ( "name", func(name) )
28
     # with all available commands.
28
     # with all available commands.

Loading…
Cancel
Save