Compare commits

..

5 Commits

Author SHA1 Message Date
1b3a4f5569 fix: 切换语言时theme重复bind导致报错的问题
Some checks failed
Auto Alpha Tag / auto-tag (x64, x64) (push) Has been cancelled
Release / meta (push) Has been cancelled
Release / windows (x64, x64) (push) Has been cancelled
Release / release (push) Has been cancelled
2024-09-19 12:34:52 +08:00
be7e17665f chore: clean up 2024-09-19 12:33:24 +08:00
654b13e150 fix: 托盘初始化时与主界面状态同步 2024-09-19 12:25:22 +08:00
329c484f4c ci: fix Auto Alpha Tag
Some checks are pending
Auto Alpha Tag / auto-tag (x64, x64) (push) Waiting to run
Release / meta (push) Waiting to run
Release / windows (x64, x64) (push) Blocked by required conditions
Release / release (push) Blocked by required conditions
2024-09-19 01:13:45 +08:00
ec585ea29d Release v1.0.0
Some checks are pending
Auto Alpha Tag / auto-tag (x64, x64) (push) Waiting to run
Release / meta (push) Waiting to run
Release / windows (x64, x64) (push) Blocked by required conditions
Release / release (push) Blocked by required conditions
Release v1.0.0
2024-09-18 20:48:50 +08:00
6 changed files with 18 additions and 25 deletions

View File

@ -4,6 +4,11 @@ on:
push:
branches:
- "dev"
paths:
- ".github/workflows/*.yml"
- "src/**"
- "pom.xml"
- "!**/*.md"
pull_request:
branches:
- "dev"

View File

@ -1,6 +1,5 @@
package cn.octopusyan.alistgui.config;
import atlantafx.base.theme.Theme;
import cn.octopusyan.alistgui.Application;
import cn.octopusyan.alistgui.base.BaseController;
import cn.octopusyan.alistgui.controller.AboutController;
@ -41,7 +40,6 @@ public class Context {
private static final Logger log = LoggerFactory.getLogger(Context.class);
private static Scene scene;
private static final IntegerProperty currentViewIndex = new SimpleIntegerProperty(0);
private static final ObjectProperty<Theme> theme = new SimpleObjectProperty<>(ConfigManager.theme());
/**
* 控制器集合
@ -92,10 +90,6 @@ public class Context {
Context.application = application;
}
public static ObjectProperty<Theme> themeProperty() {
return theme;
}
// 获取当前所选时区属性
public static ObjectProperty<Locale> currentLocaleProperty() {
return currentLocale;
@ -150,12 +144,6 @@ public class Context {
return LANGUAGE_RESOURCE_FACTORY.getResourceBundleProperty();
}
/**
* 初始化 语言
*/
private static void initI18n() {
}
/**
* 有此类所在路径决定相对路径
*
@ -183,7 +171,6 @@ public class Context {
private static void loadScene() {
try {
FXMLLoader loader = FxmlUtil.load("root-view");
loader.setControllerFactory(Context.getControlFactory());
//底层面板
Pane root = loader.load();
Optional.ofNullable(scene).ifPresentOrElse(

View File

@ -76,7 +76,7 @@ public class SystemTrayManager {
return;
}
initTrayIcon();
initTrayIcon(AListManager.isRunning());
try {
if (!isShowing())
@ -95,11 +95,12 @@ public class SystemTrayManager {
//========================================={ private }===========================================
private static void initTrayIcon() {
private static void initTrayIcon(boolean running) {
if (trayIcon != null) return;
// 系统托盘图标
Image image = Toolkit.getDefaultToolkit().getImage(WindowsUtil.class.getResource("/assets/logo-disabled.png"));
URL resource = WindowsUtil.class.getResource(STR."/assets/logo\{running ? "" : "-disabled"}.png");
Image image = Toolkit.getDefaultToolkit().getImage(resource);
trayIcon = new TrayIcon(image);
// 设置图标尺寸自动适应
@ -129,7 +130,7 @@ public class SystemTrayManager {
if (event.isPopupTrigger()) {
// 弹出菜单
Platform.runLater(() -> {
initPopupMenu();
initPopupMenu(running);
popupMenu.show(event);
});
} else if (event.getButton() == MouseEvent.BUTTON1) {
@ -143,12 +144,15 @@ public class SystemTrayManager {
/**
* 构建托盘菜单
*/
private static void initPopupMenu() {
private static void initPopupMenu(boolean running) {
if (popupMenu != null) return;
MenuItem start = PopupMenu.menuItem(getString("main.control.start"), _ -> AListManager.openScheme());
MenuItem start = PopupMenu.menuItem(
getString(STR."main.control.\{running ? "stop" : "start"}"),
_ -> AListManager.openScheme()
);
MenuItem browser = PopupMenu.menuItem(getString("main.more.browser"), _ -> AListManager.openScheme());
browser.setDisable(true);
browser.setDisable(!running);
AListManager.runningProperty().addListener((_, _, newValue) -> {
start.setText(getString(STR."main.control.\{newValue ? "stop" : "start"}"));

View File

@ -25,7 +25,7 @@ public class FxmlUtil {
FxmlUtil.class.getResource(prefix + name + suffix),
bundle,
new JavaFXBuilderFactory(),
null,
Context.getControlFactory(),
StandardCharsets.UTF_8
);
}

View File

@ -43,7 +43,6 @@ public class Registry {
RESTORE,
SAVE,
UNLOAD,
;
}
public enum Root {
@ -75,6 +74,5 @@ public class Registry {
REG_LINK,
REG_FULL_RESOURCE_DESCRIPTOR,
REG_EXPAND_SZ,
;
}
}

View File

@ -36,7 +36,6 @@ public class SetupViewModel extends BaseViewModel {
public SetupViewModel() {
theme.bindBidirectional(Context.themeProperty());
theme.addListener((_, _, newValue) -> ConfigManager.theme(newValue));
silentStartup.addListener((_, _, newValue) -> ConfigManager.silentStartup(newValue));
autoStart.addListener((_, _, newValue) -> {