Compare commits

..

No commits in common. "30f05240f9686b969f899daf3541e71c20be6922" and "4988cdc31e07e23a3bdf81205b2859ded5c0d5bb" have entirely different histories.

3 changed files with 4 additions and 12 deletions

View File

@ -121,12 +121,10 @@ jobs:
mkdir zipball && cp target/*.zip zipball
- name: Upload AListGUI to Github
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v4
with:
name: AListGUI-windows
path: zipball
retention-days: 5
release:
if: startsWith(github.ref, 'refs/tags/v')

View File

@ -37,14 +37,8 @@ public class SetupController extends BaseController<SetupViewModel> implements I
public CheckBox silentStartupCheckBox;
@I18n(key = "setup.close-to-tray.label")
public CheckBox closeToTrayCheckBox;
@I18n(key = "setup.theme")
public Label themeLabel;
public ComboBox<Theme> themeComboBox;
@I18n(key = "setup.language")
public Label languageLabel;
public ComboBox<Locale> languageComboBox;
@I18n(key = "setup.proxy")
public Label proxySetupLabel;
public ComboBox<Theme> themeComboBox;
public ComboBox<ProxySetup> proxySetupComboBox;
public Pane proxySetupPane;
@I18n(key = "setup.proxy.test")

View File

@ -14,15 +14,15 @@
<CheckBox fx:id="silentStartupCheckBox" text="%setup.silent-startup.label"/>
<CheckBox fx:id="closeToTrayCheckBox" text="%setup.close-to-tray.label"/>
<HBox alignment="CENTER_LEFT" spacing="10">
<Label fx:id="themeLabel" text="%setup.theme"/>
<Label text="%setup.theme"/>
<ComboBox fx:id="themeComboBox"/>
</HBox>
<HBox alignment="CENTER_LEFT" spacing="10">
<Label fx:id="languageLabel" text="%setup.language"/>
<Label text="%setup.language"/>
<ComboBox fx:id="languageComboBox"/>
</HBox>
<HBox alignment="CENTER_LEFT" spacing="20">
<Label fx:id="proxySetupLabel" styleClass="proxy-label" text="%setup.proxy"/>
<Label styleClass="proxy-label" text="%setup.proxy"/>
<ComboBox fx:id="proxySetupComboBox"/>
<Button fx:id="proxyCheck" onAction="#proxyTest" text="%setup.proxy.test"/>
</HBox>