Skip to content

Commit dcc2a6b

Browse files
Uploading some changes
0 parents  commit dcc2a6b

24 files changed

+2337
-0
lines changed

.gitignore

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/python
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*.cover
55+
*.py,cover
56+
.hypothesis/
57+
.pytest_cache/
58+
pytestdebug.log
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
69+
70+
# Flask stuff:
71+
instance/
72+
.webassets-cache
73+
74+
# Scrapy stuff:
75+
.scrapy
76+
77+
# Sphinx documentation
78+
docs/_build/
79+
doc/_build/
80+
81+
# PyBuilder
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# IPython
88+
profile_default/
89+
ipython_config.py
90+
91+
# pyenv
92+
.python-version
93+
94+
# pipenv
95+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
97+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
98+
# install all needed dependencies.
99+
#Pipfile.lock
100+
101+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
102+
__pypackages__/
103+
104+
# Celery stuff
105+
celerybeat-schedule
106+
celerybeat.pid
107+
108+
# SageMath parsed files
109+
*.sage.py
110+
111+
# Environments
112+
.env
113+
.venv
114+
env/
115+
venv/
116+
ENV/
117+
env.bak/
118+
venv.bak/
119+
pythonenv*
120+
121+
# Spyder project settings
122+
.spyderproject
123+
.spyproject
124+
125+
# Rope project settings
126+
.ropeproject
127+
128+
# mkdocs documentation
129+
/site
130+
131+
# mypy
132+
.mypy_cache/
133+
.dmypy.json
134+
dmypy.json
135+
136+
# Pyre type checker
137+
.pyre/
138+
139+
# pytype static type analyzer
140+
.pytype/
141+
142+
# profiling data
143+
.prof
144+
145+
# End of https://www.toptal.com/developers/gitignore/api/python

Sources/images/plugin.ico

131 KB
Binary file not shown.

Sources/images/plugin.png

5.32 KB
Loading

Sources/images/[email protected]

13 KB
Loading

Sources/images/[email protected]

14 KB
Loading

Sources/manifest.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"Actions": [
3+
{
4+
"Icon": "images/plugin",
5+
"Name": "Execute Python File",
6+
"States": [
7+
{
8+
"Image": "images/plugin",
9+
"TitleAlignment": "middle",
10+
"FontSize": "16"
11+
}
12+
],
13+
"SupportedInMultiActions": false,
14+
"Tooltip": "",
15+
"UUID": "com.koltenfluckiger.executescript.action1"
16+
}
17+
],
18+
"SDKVersion": 2,
19+
"Author": "Kolten Fluckiger",
20+
"CodePathWin": "plugin/binaries/koltenfluckiger.streamdeck-python-plugin.exe",
21+
"CodePathMac": "plugin/binaries/koltenfluckiger.streamdeck-python-plugin",
22+
"PropertyInspectorPath": "pi/index.html",
23+
"Description": "Execute Python Scripts in the background",
24+
"Name": "streamdeck-python-plugin",
25+
"Icon": "images/plugin",
26+
"Category": "Python Plugin",
27+
"CatagoryIcon": "images/plugin",
28+
"URL": "https://github.com/koltenfluckiger/com.koltenfluckiger.streamdeck-python-plugin.sdPlugin",
29+
"Version": "1.2",
30+
"OS": [
31+
{
32+
"Platform": "mac",
33+
"MinimumVersion" : "10.11"
34+
},
35+
{
36+
"Platform": "windows",
37+
"MinimumVersion" : "10"
38+
}
39+
],
40+
"Software":
41+
{
42+
"MinimumVersion" : "4.1"
43+
}
44+
}

0 commit comments

Comments
 (0)