streamdeck-gui-ng 4.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamdeck_gui_ng-4.1.3.dist-info/METADATA +141 -0
- streamdeck_gui_ng-4.1.3.dist-info/RECORD +62 -0
- streamdeck_gui_ng-4.1.3.dist-info/WHEEL +4 -0
- streamdeck_gui_ng-4.1.3.dist-info/entry_points.txt +4 -0
- streamdeck_gui_ng-4.1.3.dist-info/licenses/LICENSE +21 -0
- streamdeck_ui/__init__.py +6 -0
- streamdeck_ui/api.py +712 -0
- streamdeck_ui/button.ui +1214 -0
- streamdeck_ui/cli/__init__.py +0 -0
- streamdeck_ui/cli/commands.py +191 -0
- streamdeck_ui/cli/server.py +292 -0
- streamdeck_ui/config.py +244 -0
- streamdeck_ui/dimmer.py +93 -0
- streamdeck_ui/display/__init__.py +0 -0
- streamdeck_ui/display/background_color_filter.py +41 -0
- streamdeck_ui/display/display_grid.py +265 -0
- streamdeck_ui/display/empty_filter.py +43 -0
- streamdeck_ui/display/filter.py +65 -0
- streamdeck_ui/display/image_filter.py +144 -0
- streamdeck_ui/display/keypress_filter.py +63 -0
- streamdeck_ui/display/pipeline.py +74 -0
- streamdeck_ui/display/pulse_filter.py +54 -0
- streamdeck_ui/display/text_filter.py +142 -0
- streamdeck_ui/fonts/roboto/LICENSE.txt +202 -0
- streamdeck_ui/fonts/roboto/Roboto-Black.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Bold.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Italic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Light.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-LightItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Medium.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Regular.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Thin.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
- streamdeck_ui/gui.py +1423 -0
- streamdeck_ui/icons/add_page.png +0 -0
- streamdeck_ui/icons/cross.png +0 -0
- streamdeck_ui/icons/gear.png +0 -0
- streamdeck_ui/icons/horizontal-align.png +0 -0
- streamdeck_ui/icons/remove_page.png +0 -0
- streamdeck_ui/icons/vertical-align.png +0 -0
- streamdeck_ui/icons/warning_icon_button.png +0 -0
- streamdeck_ui/logger.py +11 -0
- streamdeck_ui/logo.png +0 -0
- streamdeck_ui/main.ui +407 -0
- streamdeck_ui/mock_streamdeck.py +204 -0
- streamdeck_ui/model.py +78 -0
- streamdeck_ui/modules/__init__.py +0 -0
- streamdeck_ui/modules/fonts.py +150 -0
- streamdeck_ui/modules/keyboard.py +447 -0
- streamdeck_ui/modules/utils/__init__.py +0 -0
- streamdeck_ui/modules/utils/timers.py +35 -0
- streamdeck_ui/resources.qrc +10 -0
- streamdeck_ui/resources_rc.py +324 -0
- streamdeck_ui/semaphore.py +38 -0
- streamdeck_ui/settings.ui +155 -0
- streamdeck_ui/stream_deck_monitor.py +157 -0
- streamdeck_ui/ui_button.py +421 -0
- streamdeck_ui/ui_main.py +267 -0
- streamdeck_ui/ui_settings.py +119 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: streamdeck-gui-ng
|
|
3
|
+
Version: 4.1.3
|
|
4
|
+
Summary: Next Generation Linux UI for the Elgato Stream Deck - Modernized fork with Python 3.11+ support
|
|
5
|
+
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Author: Timothy Crosley
|
|
8
|
+
Author-email: timothy.crosley@gmail.com
|
|
9
|
+
Maintainer: millaguie
|
|
10
|
+
Maintainer-email: millaguie@users.noreply.github.com
|
|
11
|
+
Requires-Python: >=3.11,<3.14
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Dist: CairoSVG (>=2.5.2,<3.0.0)
|
|
18
|
+
Requires-Dist: evdev (>=1.6.1,<2.0.0)
|
|
19
|
+
Requires-Dist: filetype (>=1.0.10,<2.0.0)
|
|
20
|
+
Requires-Dist: importlib-metadata (>=6.8.0,<7.0.0)
|
|
21
|
+
Requires-Dist: pillow (>=10.3.0)
|
|
22
|
+
Requires-Dist: pyside6 (>=6.4.2,<7.0.0)
|
|
23
|
+
Requires-Dist: streamdeck (>=0.9.5,<0.10.0)
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
[](https://github.com/millaguie/streamdeck-gui-ng)
|
|
27
|
+
_________________
|
|
28
|
+
|
|
29
|
+
[](https://pypi.org/project/streamdeck-gui-ng/)
|
|
30
|
+
[](https://github.com/millaguie/streamdeck-gui-ng/actions/workflows/test.yaml?query=branch%3Amain)
|
|
31
|
+
[](https://github.com/millaguie/streamdeck-gui-ng/actions/workflows/docs.yml)
|
|
32
|
+
[](https://github.com/millaguie/streamdeck-gui-ng)
|
|
33
|
+
[](https://timothycrosley.github.io/isort/)
|
|
34
|
+
[](https://github.com/semantic-release/semantic-release)
|
|
35
|
+
|
|
36
|
+
_________________
|
|
37
|
+
|
|
38
|
+
**streamdeck-gui-ng** - Next Generation Linux compatible UI for the Elgato Stream Deck.
|
|
39
|
+
|
|
40
|
+
## Why This Fork?
|
|
41
|
+
|
|
42
|
+
I use Stream Deck every day and depend on it for my workflow. When I noticed that streamdeck-linux-gui had entered maintenance mode and was no longer accepting new features, I decided to fork it to ensure continued development and modernization.
|
|
43
|
+
|
|
44
|
+
This fork aims to:
|
|
45
|
+
|
|
46
|
+
- Modernize the codebase with support for current Python versions (3.11+)
|
|
47
|
+
- Fix security vulnerabilities and keep dependencies up to date
|
|
48
|
+
- Continue active development and feature improvements
|
|
49
|
+
- Maintain compatibility with the latest Stream Deck devices
|
|
50
|
+
|
|
51
|
+
## Project History
|
|
52
|
+
|
|
53
|
+
**streamdeck-gui-ng** is the third generation of this project:
|
|
54
|
+
|
|
55
|
+
1. **[streamdeck_ui](https://github.com/timothycrosley/streamdeck-ui)** (Original) - Created by Timothy Crosley, this was the first Linux UI for Stream Deck. The project was abandoned when the original author disappeared.
|
|
56
|
+
|
|
57
|
+
2. **[streamdeck-linux-gui](https://github.com/streamdeck-linux-gui/streamdeck-linux-gui)** (First Fork) - The community forked the original project to keep it alive. However, this fork eventually entered maintenance mode in 2024, accepting only critical bug fixes while directing users to [StreamController](https://github.com/StreamController/StreamController) for new features.
|
|
58
|
+
|
|
59
|
+
3. **streamdeck-gui-ng** (This Fork) - A modernized continuation for users who prefer the original architecture and want continued development of this proven codebase.
|
|
60
|
+
|
|
61
|
+
All credit to the original authors and the many contributors to both previous projects. This fork builds on their excellent work.
|
|
62
|
+
|
|
63
|
+

|
|
64
|
+
|
|
65
|
+
## Key Features
|
|
66
|
+
|
|
67
|
+
- **Linux Compatible**: Enables usage of Stream Deck devices (Original, MK2, Mini and XL) on Linux.
|
|
68
|
+
- **Multi-device**: Enables connecting and configuring multiple Stream Decks on one computer.
|
|
69
|
+
- **Brightness Control**: Supports controlling the brightness from both the configuration UI and buttons on the device itself.
|
|
70
|
+
- **Configurable Button Display**: Icons + Text, Icon Only, and Text Only configurable per button on the Stream Deck.
|
|
71
|
+
- **Multi-Action Support**: Run commands, write text and press hotkey combinations at the press of a single button on your Stream Deck.
|
|
72
|
+
- **Button Pages**: streamdeck_ui supports multiple pages of buttons and dynamically setting up buttons to switch between those pages.
|
|
73
|
+
- **Auto Reconnect**: Automatically and gracefully reconnects, in the case the device is unplugged and replugged in.
|
|
74
|
+
- **Import/Export**: Supports saving and restoring Stream Deck configuration.
|
|
75
|
+
- **Drag/Drop**: Move buttons by simply drag and drop.
|
|
76
|
+
- **Drag/Drop Image**: Configure a button image by dragging it from your file manager onto the button.
|
|
77
|
+
- **Auto Dim**: Configure the Stream Deck to automatically dim the display after a period of time. A button press wakes it up again.
|
|
78
|
+
- **Animated icons**: Use an animated gif to liven things up a bit.
|
|
79
|
+
- **Runs under systemd**: Run automatically in the background as a systemd --user service.
|
|
80
|
+
- **Stream Deck Pedal**: Supports actions when pressing pedals.
|
|
81
|
+
|
|
82
|
+
# Documentation
|
|
83
|
+
|
|
84
|
+
Communication with the Stream Deck is powered by the [Python Elgato Stream Deck Library](https://github.com/abcminiuser/python-elgato-streamdeck#python-elgato-stream-deck-library).
|
|
85
|
+
|
|
86
|
+
Documentation is available at [https://millaguie.github.io/streamdeck-gui-ng/](https://millaguie.github.io/streamdeck-gui-ng/)
|
|
87
|
+
|
|
88
|
+
## Installation Guides
|
|
89
|
+
|
|
90
|
+
- [Arch/Manjaro](docs/installation/arch.md)
|
|
91
|
+
- [CentOS](docs/installation/centos.md)
|
|
92
|
+
- [Fedora](docs/installation/fedora.md)
|
|
93
|
+
- [NixOS](docs/installation/nixos.md)
|
|
94
|
+
- [openSUSE](docs/installation/opensuse.md)
|
|
95
|
+
- [Ubuntu/Mint](docs/installation/ubuntu.md)
|
|
96
|
+
|
|
97
|
+
Once you're up and running, consider installing a [systemd service](docs/installation/systemd.md).
|
|
98
|
+
|
|
99
|
+
> Use the [troubleshooting](docs/troubleshooting.md) guide or [search](https://github.com/millaguie/streamdeck-gui-ng/issues?q=is%3Aissue) the issues for guidance. If you cannot find on the issue on this repository please try searching on the original at [streamdeck_ui](https://github.com/timothycrosley/streamdeck-ui/issues?q=is%3Aissue++).
|
|
100
|
+
|
|
101
|
+
### Precooked Scripts
|
|
102
|
+
|
|
103
|
+
There are scripts for setting up streamdeck_ui on [Debian/Ubuntu](scripts/ubuntu_install.sh) and [Fedora](scripts/fedora_install.sh).
|
|
104
|
+
|
|
105
|
+
## Updating Documentation
|
|
106
|
+
|
|
107
|
+
Documentation is powered by mkdocs-material, and its on the [docs](docs/) folder. Install it with `pip install mkdocs-material` and run `mkdocs serve` to see the changes locally, before submitting a PR.
|
|
108
|
+
|
|
109
|
+
## Development & Contributions
|
|
110
|
+
|
|
111
|
+
Contributuions encouraged and very welcome, however some rules and guidelines must be followed!
|
|
112
|
+
|
|
113
|
+
### General Guidelines
|
|
114
|
+
|
|
115
|
+
- The project is versioned according to [Semantic Versioning](https://semver.org/).
|
|
116
|
+
- When writing your commit messages, please follow the [Angular commit message](https://gist.github.com/brianclements/841ea7bffdb01346392c).
|
|
117
|
+
- Pull requests should be made against the `develop` branch, so please make sure you check out the `develop` branch.
|
|
118
|
+
- Pull requests should include tests and documentation as appropriate.
|
|
119
|
+
- When opening a pull request, if possible, attach a screenshot or GIF of the changes.
|
|
120
|
+
- Please read the [contributing guide](https://github.com/millaguie/streamdeck-gui-ng/blob/main/docs/contributing/contributing-guide.md) for more information and instructions on how to get started.
|
|
121
|
+
|
|
122
|
+
### Feature Requests
|
|
123
|
+
|
|
124
|
+
Open a new discussion with the `feature request` tag and describe the feature you would like to see implemented. If you have a screenshot or GIF of the feature, please attach it to the discussion.
|
|
125
|
+
|
|
126
|
+
### Bug Reports
|
|
127
|
+
|
|
128
|
+
Open a [bug report](https://github.com/millaguie/streamdeck-gui-ng/issues) and follow the template. Please include as much information as possible.
|
|
129
|
+
|
|
130
|
+
### Have a Question?
|
|
131
|
+
|
|
132
|
+
If you need any help, have a question, or just want to discuss something related to the project, please feel free to open a [discussion](https://github.com/millaguie/streamdeck-gui-ng/discussions).
|
|
133
|
+
|
|
134
|
+
## Known issues
|
|
135
|
+
|
|
136
|
+
- pip package is not yet available for the current state of the project. Please install from source, currently trying to find a better way to provide the package.
|
|
137
|
+
- Streamdeck uses [pynput](https://github.com/moses-palmer/pynput) for simulating **Key Presses** but it lacks proper [support for Wayland](https://github.com/moses-palmer/pynput/issues/189). Generally your results will be good when using X (Ubuntu/Linux Mint). [This thread](https://github.com/timothycrosley/streamdeck-ui/issues/47) may be useful.
|
|
138
|
+
- **Key Press** or **Write Text** does not work on Fedora (outside of the streamdeck itself), which is not particularly useful. However, still do a lot with the **Command** feature.
|
|
139
|
+
- Some users have reported that the Stream Deck device does not work on all on specific USB ports, as it draws quite a bit of power and/or has [strict bandwidth requirements](https://github.com/timothycrosley/streamdeck-ui/issues/69#issuecomment-715887397). Try a different port.
|
|
140
|
+
- If you are executing a shell script from the Command feature - remember to add the shebang at the top of your file, for the language in question. `#!/bin/bash` or `#!/usr/bin/python3` etc. The streamdeck may appear to lock up if you don't under some distros.
|
|
141
|
+
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
streamdeck_ui/__init__.py,sha256=5uEGCGO8UWOuLSauOltiEZbFrpuGHYUTYf18n83go4g,99
|
|
2
|
+
streamdeck_ui/api.py,sha256=u8ChvVvpBEybJYCTbcBrJKxIAzJT7ouFwk1wGG4rSgM,32719
|
|
3
|
+
streamdeck_ui/button.ui,sha256=cv7FsVjkck_uD8cThfbkl4--HnXz2Fdbn5hE2Perd3Q,34282
|
|
4
|
+
streamdeck_ui/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
streamdeck_ui/cli/commands.py,sha256=cIbLMAomfIxzHFvyENy90uR__OUdhZVZB_RhOsFfusU,7964
|
|
6
|
+
streamdeck_ui/cli/server.py,sha256=LSKHpbQ02vx1cln3yoNOAjQNyBgJPZ0N3bATq33tkLA,9729
|
|
7
|
+
streamdeck_ui/config.py,sha256=TpyIgZ8D95Cf9e79LVUicukaDXJO-Y2S6EosAa-3f68,9771
|
|
8
|
+
streamdeck_ui/dimmer.py,sha256=BD0uLhDiVh9f2FNxLVZB6oXztykWy7qPridCAQ696G8,3266
|
|
9
|
+
streamdeck_ui/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
streamdeck_ui/display/background_color_filter.py,sha256=bKXLm37CBdcwdozRyRzNvwjvXiu67XAZWMYteKpgZ2k,1264
|
|
11
|
+
streamdeck_ui/display/display_grid.py,sha256=Hq0XvSQ2a2k0l75Y87ZoqH0S1pxJcYX9fV533qptqAg,11323
|
|
12
|
+
streamdeck_ui/display/empty_filter.py,sha256=y8SRO8O-R4KYCdqrWb_BXsYZcf3w1Ms-TrzowQAdA5g,1376
|
|
13
|
+
streamdeck_ui/display/filter.py,sha256=1jc_MhAXZMKExHmYgOId4wJ2EtI3oqsPvpwjcX6zl2o,2481
|
|
14
|
+
streamdeck_ui/display/image_filter.py,sha256=mqRCeU12vQJYEcvHLMZ9d4UQrNwQMMAiaDrT4ugHKTs,5299
|
|
15
|
+
streamdeck_ui/display/keypress_filter.py,sha256=g8AKRxGWwVDbAz-yoJsHsLYzF9tTKKe6eFLzfcF9Q3M,1972
|
|
16
|
+
streamdeck_ui/display/pipeline.py,sha256=8UHHt60l-XlxbtEQURv4e2R06akuD3qfUbnkaIH23OY,2984
|
|
17
|
+
streamdeck_ui/display/pulse_filter.py,sha256=2NVdtexuH7wfUlu2eeYNgCY3p02z7bKevu-L-rkkHHY,1627
|
|
18
|
+
streamdeck_ui/display/text_filter.py,sha256=pGSxO6HlzVXU4Qc7TLOvqgLiSbsH-c6JONo6vo-pS7Y,5338
|
|
19
|
+
streamdeck_ui/fonts/roboto/LICENSE.txt,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560
|
|
20
|
+
streamdeck_ui/fonts/roboto/Roboto-Black.ttf,sha256=NU-553JSJU87O2Ikz5oTGsjteY4TAVF2ElosaXoZ-AE,171072
|
|
21
|
+
streamdeck_ui/fonts/roboto/Roboto-BlackItalic.ttf,sha256=MoV4gQpaJOLmRze1T003_TvsgcnTjRa6B-NjimhIgUM,177120
|
|
22
|
+
streamdeck_ui/fonts/roboto/Roboto-Bold.ttf,sha256=ycyZHetdJ_JngwoZ8jAesWTZ5h7AhmnBoaKRxWIP9Ao,170348
|
|
23
|
+
streamdeck_ui/fonts/roboto/Roboto-BoldItalic.ttf,sha256=5AjpO8FYBWYSR2mFIPGrlEu8KJn72cpx7cGyTeplZfc,174520
|
|
24
|
+
streamdeck_ui/fonts/roboto/Roboto-Italic.ttf,sha256=LAlY4Mfptj829nLTzMuhTKDXzi49aUWzjk7z3jW3lpE,173516
|
|
25
|
+
streamdeck_ui/fonts/roboto/Roboto-Light.ttf,sha256=2wIJapHCCrYtRZABoQWbyNeMqjXWN9yRSUxEQIFaasE,170012
|
|
26
|
+
streamdeck_ui/fonts/roboto/Roboto-LightItalic.ttf,sha256=0DR9PxzzrWL0V0_bCMXbT5l52DQmql0TBG7M8mqojps,176184
|
|
27
|
+
streamdeck_ui/fonts/roboto/Roboto-Medium.ttf,sha256=41JSqj3C6E6dchFYb-6a7eKkJtMjDIsTGIHZhfFv-DY,171656
|
|
28
|
+
streamdeck_ui/fonts/roboto/Roboto-MediumItalic.ttf,sha256=VS-mv8j0rUgLpp_rl0XzHXf6iMEoJqG708XrC-76Irs,176428
|
|
29
|
+
streamdeck_ui/fonts/roboto/Roboto-Regular.ttf,sha256=AXwL6aqm0DWXN-H6dirTBMDgEHkn-v9abB9BXH9SRO0,171272
|
|
30
|
+
streamdeck_ui/fonts/roboto/Roboto-Thin.ttf,sha256=3KxWKBW1dea4Ibrl_SRf6mWQuztZf9W5bq5qzMsh0Dw,171500
|
|
31
|
+
streamdeck_ui/fonts/roboto/Roboto-ThinItalic.ttf,sha256=Milr5I8-A8Yt28qXtbEJa2AsJZoWDk--Hcdrp2wDRBg,175872
|
|
32
|
+
streamdeck_ui/gui.py,sha256=0ziAOpt1jbRnXIqwqjvg7QesOkKpk8s9Jn3eGzOPVHI,51208
|
|
33
|
+
streamdeck_ui/icons/add_page.png,sha256=oopv9LUBpkPPtEpe8wWFWT_y0ia5UiWkHfLAW3DMsaw,372
|
|
34
|
+
streamdeck_ui/icons/cross.png,sha256=_6zKgvOQdM6MlBhMvMotGNDAUQiWBweC6MZgUDzsKuU,1081
|
|
35
|
+
streamdeck_ui/icons/gear.png,sha256=VE89kqTkdRipyFeJaW5ltL-EB12y8TRp5iM6Ir29jT4,1341
|
|
36
|
+
streamdeck_ui/icons/horizontal-align.png,sha256=76vz7-oLhZdYzckeayeGDSo32MDN5GrJoRFWSdDfGug,533
|
|
37
|
+
streamdeck_ui/icons/remove_page.png,sha256=PNCeDJr8MLPIGRcOk-r9KUJojxeqLuXzKVY_KmvPQeY,250
|
|
38
|
+
streamdeck_ui/icons/vertical-align.png,sha256=T162JOj8rcZc7jbIXB6FPKSsQXtl4gSKRGT_NqHVgWE,236
|
|
39
|
+
streamdeck_ui/icons/warning_icon_button.png,sha256=hpuj7Vc1m5F1g1_dHy9mNt4qJRFmTIPEq95ISRVH6B8,24041
|
|
40
|
+
streamdeck_ui/logger.py,sha256=Yucosz5p39uGHVSbZrCPlLkcGLvcI9AGOK6jPYTOHB0,306
|
|
41
|
+
streamdeck_ui/logo.png,sha256=jzb30T5MX-SkL5H7pwHVLDTv5-Zk0ztSUtec2trN77c,17681
|
|
42
|
+
streamdeck_ui/main.ui,sha256=R6SdldHEJ3rqXi2qNo6XuyI5bPERZKnDc_nvpanJuzQ,12539
|
|
43
|
+
streamdeck_ui/mock_streamdeck.py,sha256=ErVMOSg9ViM0GqKeuoUlAn7t8bfggHMTUFqt4rQnKjc,6301
|
|
44
|
+
streamdeck_ui/model.py,sha256=6ZgtRPwtSGEqR9fDiuTPEZgWZuq6tF9cWA917ivR8QU,2614
|
|
45
|
+
streamdeck_ui/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
streamdeck_ui/modules/fonts.py,sha256=Ga0R8OLHOUPwVoBBfkSTBs8CqVWT8992QJ5hzi3uMVs,7014
|
|
47
|
+
streamdeck_ui/modules/keyboard.py,sha256=E0wCMp2bOcUPP-_we0e9TbV8hSs8N065nCvg-hcCndo,13297
|
|
48
|
+
streamdeck_ui/modules/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
streamdeck_ui/modules/utils/timers.py,sha256=CLOjOw9A66qHpol7KNjz3sSiNYdprGjnltf38uEqyjU,889
|
|
50
|
+
streamdeck_ui/resources.qrc,sha256=NDUVyx3L-QfEaAkYxeqkG7inodWLNnaVTqviceo_-Go,284
|
|
51
|
+
streamdeck_ui/resources_rc.py,sha256=zn5KS-3Fa53Vnbxwzfh91WFOUTPu66_fcX0Nk6VNCaI,13372
|
|
52
|
+
streamdeck_ui/semaphore.py,sha256=OIlUfDe7MXQfOCeRd7tv_6nUzKJKgBvpBSvzlU1Jewg,1079
|
|
53
|
+
streamdeck_ui/settings.ui,sha256=jpK5NlefiKqTFu9n1XZqNW-WCVpOXyckLxf0VeHSC98,4118
|
|
54
|
+
streamdeck_ui/stream_deck_monitor.py,sha256=lGCkp9jvVnRCS1_Qs3LF3voO5jcfAkN1ddaHbQoN0yE,6790
|
|
55
|
+
streamdeck_ui/ui_button.py,sha256=mAx13SPjDYgIK4Bbcxc_eqD6hvc1EIDFSZBYdpRU_HQ,20759
|
|
56
|
+
streamdeck_ui/ui_main.py,sha256=QxGQI6I6XZCRMNO0CLOdu4pNZWOi3Y0K59TdRgWXpaA,12301
|
|
57
|
+
streamdeck_ui/ui_settings.py,sha256=U5tRgt9bjU07F1dO8od-Z7DWpN5E4OeFYpfCYoNwsWk,5184
|
|
58
|
+
streamdeck_gui_ng-4.1.3.dist-info/METADATA,sha256=PyOYpo5mIfWyvsW9FEnRwl43eLxNBA-PqabseNHO_S8,9327
|
|
59
|
+
streamdeck_gui_ng-4.1.3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
60
|
+
streamdeck_gui_ng-4.1.3.dist-info/entry_points.txt,sha256=G-4ttNWmsyQnCFeTDIaC4dF98377uYUynfqukq2Z-xM,99
|
|
61
|
+
streamdeck_gui_ng-4.1.3.dist-info/licenses/LICENSE,sha256=5On1FePihJNEKF3BW6wdKLblN_ALkveIYRdhni-HFqQ,1072
|
|
62
|
+
streamdeck_gui_ng-4.1.3.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Timothy Crosley
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|