Compare commits

..

6 commits
v1.4 ... master

Author SHA1 Message Date
b833b1bd6d Fix banner picture 2023-08-17 02:48:59 +03:00
6590b4fe61 Update README.md 2023-08-17 02:48:19 +03:00
Ninnjah
897eb3a127
Delete key.py 2021-03-02 21:42:29 +03:00
Ninnjah
5a5cb4013f
Delete keys.py 2021-03-02 21:42:20 +03:00
Ninnjah
d20f469d0b
Delete .gitignore 2021-03-02 21:41:55 +03:00
Ninnjah
22bf9339ae
Update README.md 2021-01-03 08:29:02 +03:00
4 changed files with 7 additions and 49 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
key.py

View file

@ -1,6 +1,6 @@
# Sundpood # Sundpood
![Banner](https://github.com/Ninnjah/Sundpood/blob/master/pics/banner.jpg) ![Banner](https://git.dc09.ru/Ninnjah/Sundpood/raw/branch/master/pics/banner.jpg)
App like [SoundPad](https://www.leppsoft.com/soundpad/en/download/)(needs [VoiceMeeter](https://vb-audio.com/Voicemeeter/)(allready in "redist" folder)) App like [SoundPad](https://www.leppsoft.com/soundpad/en/download/)(needs [VoiceMeeter](https://vb-audio.com/Voicemeeter/)(allready in "redist" folder))
@ -19,13 +19,16 @@ App like [SoundPad](https://www.leppsoft.com/soundpad/en/download/)(needs [Voice
### Screenshots ### Screenshots
- Light Theme - Light Theme
![light theme](https://github.com/Ninnjah/Sundpood/blob/master/pics/Light%20theme.png)
![light theme](https://git.dc09.ru/Ninnjah/Sundpood/raw/branch/master/pics/Light%20theme.png)
--- ---
- Dark Theme - Dark Theme
![light theme](https://github.com/Ninnjah/Sundpood/blob/master/pics/Dark%20theme.png)
![light theme](https://git.dc09.ru/Ninnjah/Sundpood/raw/branch/master/pics/Dark%20theme.png)
--- ---
- Rachila Theme - Rachila Theme
![light theme](https://github.com/Ninnjah/Sundpood/blob/master/pics/Rachila%20theme.png)
![light theme](https://git.dc09.ru/Ninnjah/Sundpood/raw/branch/master/pics/Rachila%20theme.png)
--- ---
### Requirements: ### Requirements:

2
key.py
View file

@ -1,2 +0,0 @@
# Key example
KEY = b'Nd6jgPcL_V2j-TpaKjAAch1rwFxLo9EAw4IlmmuRQTg='

42
keys.py
View file

@ -1,42 +0,0 @@
forbidden = [
'Key.esc', 'Key.cmd', 'Key.cmd_r', 'Key.menu',
'Key.pause', 'Key.scroll_lock', 'Key.print_screen',
'Key.enter', 'Key.space', 'Key.backspace', 'Key.ctrl_l',
'Key.ctrl_r', 'Key.alt_l', 'Key.alt_gr', 'Key.caps_lock',
'Key.num_lock', 'Key.tab', 'Key.shift', 'Key.shift_r',
'Key.insert', 'Key.delete', 'Key.home', 'Key.end',
'Key.page_up', 'Key.page_down', '/'
]
dict_ = {
' ':' ',
'Key.f1' : 'F1',
'Key.f2' : 'F2',
'Key.f3' : 'F3',
'Key.f4' : 'F4',
'Key.f5' : 'F5',
'Key.f6' : 'F6',
'Key.f7' : 'F7',
'Key.f8' : 'F8',
'Key.f9' : 'F9',
'Key.f10' : 'F10',
'Key.f11' : 'F11',
'Key.f12' : 'F12',
'<96>' : 'Num 0',
'<97>' : 'Num 1',
'<98>' : 'Num 2',
'<99>' : 'Num 3',
'<100>' : 'Num 4',
'<101>' : 'Num 5',
'<102>' : 'Num 6',
'<103>' : 'Num 7',
'<104>' : 'Num 8',
'<105>' : 'Num 9',
'<110>' : 'Num .',
'Key.up' : 'Up',
'Key.down' : 'Down',
'Key.left' : 'Left',
'Key.right' : 'Right',
'\\\\' : '\\'
}