Skip to content

Commit d9720f0

Browse files
committed
Added support of JACK status indication.
1 parent c181885 commit d9720f0

File tree

11 files changed

+79
-0
lines changed

11 files changed

+79
-0
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Fixed the icon installation script.
77
- Added different icons for branding into the code tree.
88
- Fixed typo in Wavefront Object File Format name.
9+
- Added support of JACK status indication.
910

1011
=== 1.0.1 ===
1112
* Update build.

res/main/i18n/default/statuses.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"jack": {
3+
"label": "JACK:",
4+
"off": "OFF",
5+
"on": "ON"
6+
},
7+
28
"load": {
39
"error": "Error",
410
"load": "Load",

res/main/i18n/es/statuses.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"jack": {
3+
"label": "JACK:",
4+
"off": "OFF",
5+
"on": "ON"
6+
},
7+
28
"loading": "Cargando...",
39

410
"std": {

res/main/i18n/fr/statuses.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"jack": {
3+
"label": "JACK:",
4+
"off": "OFF",
5+
"on": "ON"
6+
},
7+
28
"loading": "Chargement...",
39

410
"std": {

res/main/i18n/it/statuses.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"jack": {
3+
"label": "JACK:",
4+
"off": "OFF",
5+
"on": "ON"
6+
},
7+
28
"load": {
39
"error": "Errore",
410
"load": "Carica",

res/main/i18n/ru/statuses.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"jack": {
3+
"label": "JACK:",
4+
"off": "ВЫКЛ",
5+
"on": "ВКЛ"
6+
},
7+
28
"load": {
39
"error": "Ошибка",
410
"load": "Загр",

res/main/i18n/us/statuses.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"jack": {
3+
"label": "JACK:",
4+
"off": "OFF",
5+
"on": "ON"
6+
},
7+
28
"load": {
39
"error": "Error",
410
"load": "Load",

res/main/schema/legacy-dark.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1835,5 +1835,17 @@
18351835
<text.color value="bg"/>
18361836
<text.selected.color value="bg"/>
18371837
</style>
1838+
1839+
<style class="PluginWindow::StatusBar::Label" parents="Label">
1840+
<text.color value="footer_icon" />
1841+
</style>
1842+
1843+
<style class="PluginWindow::StatusBar::Label::OK" parents="PluginWindow::StatusBar::Label">
1844+
<text.color value="dark_green" />
1845+
</style>
1846+
1847+
<style class="PluginWindow::StatusBar::Label::FAIL" parents="PluginWindow::StatusBar::Label">
1848+
<text.color value="dark_red" />
1849+
</style>
18381850

18391851
</schema>

res/main/schema/legacy.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1847,5 +1847,17 @@
18471847
<text.color value="bg"/>
18481848
<text.selected.color value="bg"/>
18491849
</style>
1850+
1851+
<style class="PluginWindow::StatusBar::Label" parents="Label">
1852+
<text.color value="footer_icon" />
1853+
</style>
1854+
1855+
<style class="PluginWindow::StatusBar::Label::OK" parents="PluginWindow::StatusBar::Label">
1856+
<text.color value="dark_green" />
1857+
</style>
1858+
1859+
<style class="PluginWindow::StatusBar::Label::FAIL" parents="PluginWindow::StatusBar::Label">
1860+
<text.color value="dark_red" />
1861+
</style>
18501862

18511863
</schema>

res/main/schema/modern.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1842,5 +1842,17 @@
18421842
<text.color value="bg"/>
18431843
<text.selected.color value="bg"/>
18441844
</style>
1845+
1846+
<style class="PluginWindow::StatusBar::Label" parents="Label">
1847+
<text.color value="footer_icon" />
1848+
</style>
1849+
1850+
<style class="PluginWindow::StatusBar::Label::OK" parents="PluginWindow::StatusBar::Label">
1851+
<text.color value="dark_green" />
1852+
</style>
1853+
1854+
<style class="PluginWindow::StatusBar::Label::FAIL" parents="PluginWindow::StatusBar::Label">
1855+
<text.color value="dark_red" />
1856+
</style>
18451857

18461858
</schema>

0 commit comments

Comments
 (0)