-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.修复游玩时长统计,当跨天时所有时长会保存至新的一天的问题 3.修复配置信息无法保存的问题 4.修复部分情况下默认字体存在异常的问题 5.UI调整
- Loading branch information
Showing
25 changed files
with
9,836 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/main/java/cn/tealc/wutheringwavestool/theme/PrimerDark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package cn.tealc.wutheringwavestool.theme; | ||
|
||
// | ||
// Source code recreated from a .class file by IntelliJ IDEA | ||
// (powered by FernFlower decompiler) | ||
// | ||
|
||
import atlantafx.base.theme.Theme; | ||
|
||
public final class PrimerDark implements Theme { | ||
public PrimerDark() { | ||
} | ||
|
||
public String getName() { | ||
return "Primer Dark"; | ||
} | ||
|
||
public String getUserAgentStylesheet() { | ||
return "/cn/tealc/wutheringwavestool/css/Dark.css"; | ||
} | ||
|
||
public String getUserAgentStylesheetBSS() { | ||
return null; | ||
} | ||
|
||
public boolean isDarkMode() { | ||
return true; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
src/main/java/cn/tealc/wutheringwavestool/theme/PrimerLight.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package cn.tealc.wutheringwavestool.theme; | ||
|
||
// | ||
// Source code recreated from a .class file by IntelliJ IDEA | ||
// (powered by FernFlower decompiler) | ||
// | ||
|
||
import atlantafx.base.theme.Theme; | ||
|
||
public final class PrimerLight implements Theme { | ||
public PrimerLight() { | ||
} | ||
|
||
public String getName() { | ||
return "Primer Light"; | ||
} | ||
|
||
public String getUserAgentStylesheet() { | ||
return "/cn/tealc/wutheringwavestool/css/Light.css"; | ||
} | ||
|
||
public String getUserAgentStylesheetBSS() { | ||
return null; | ||
} | ||
|
||
public boolean isDarkMode() { | ||
return false; | ||
} | ||
} |
Oops, something went wrong.