Skip to content

Commit

Permalink
Merge branch 'EdgeTX:main' into wmbindata
Browse files Browse the repository at this point in the history
  • Loading branch information
wimalopaan committed Dec 6, 2023
2 parents 6d56d43 + 7206182 commit 0effbec
Show file tree
Hide file tree
Showing 136 changed files with 9,386 additions and 327 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:
- tx16s
- nv14
- el18
- pl18
- pl18ev
- t12
- t16
- t18
Expand Down Expand Up @@ -90,9 +92,9 @@ jobs:
matrix:
target:
- nv14;el18
- pl18;pl18ev
- t12
- t16
- t18
- t16;t18
- t8;zorro;pocket;mt12;commando8
- tlite;tpro;tprov2;lr3pro
- t20
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
matrix:
target:
- nv14;el18
- pl18;pl18ev
- t12
- t16
- t18
Expand Down
2 changes: 2 additions & 0 deletions companion/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,8 @@ elseif(PCB STREQUAL X10 AND PCBREV STREQUAL T18)
set(FLAVOUR t18)
elseif(PCB STREQUAL NV14 AND PCBREV STREQUAL EL18)
set(FLAVOUR el18)
elseif(PCB STREQUAL PL18)
set(FLAVOUR pl18)
else()
string(TOLOWER ${PCB} FLAVOUR)
endif()
Expand Down
2 changes: 2 additions & 0 deletions companion/src/apppreferencesdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ void AppPreferencesDialog::accept()
Profile & profile = g.currentProfile();

g.showSplash(ui->showSplash->isChecked());
g.sortProfiles(ui->sortProfiles->isChecked());
g.promptProfile(ui->chkPromptProfile->isChecked());
g.simuSW(ui->simuSW->isChecked());
g.disableJoystickWarning(ui->joystickWarningCB->isChecked());
Expand Down Expand Up @@ -232,6 +233,7 @@ void AppPreferencesDialog::initSettings()
}

ui->showSplash->setChecked(g.showSplash());
ui->sortProfiles->setChecked(g.sortProfiles());
ui->chkPromptProfile->setChecked(g.promptProfile());
ui->historySize->setValue(g.historySize());
ui->backLightColor->setCurrentIndex(g.backLight());
Expand Down
Loading

0 comments on commit 0effbec

Please sign in to comment.