Skip to content

Commit

Permalink
1.1.10 merged upstream 63345f5
Browse files Browse the repository at this point in the history
  • Loading branch information
coldshineb committed Feb 20, 2024
1 parent 9d667bc commit 94c1ed1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HMCL/src/main/java/org/jackhuang/hmcl/Metadata.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private Metadata() {}

public static final String NAME = "Moonlight Land 启动器";
public static final String FULL_NAME = "Moonlight Land 启动器";
public static final String VERSION = "1.1.9";
public static final String VERSION = "1.1.10";

public static final String TITLE = NAME + " " + VERSION;
public static final String FULL_TITLE = FULL_NAME + " " + VERSION;
Expand Down
2 changes: 1 addition & 1 deletion HMCL/src/main/java/org/jackhuang/hmcl/ui/Controllers.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

public final class Controllers {
public static final int MIN_WIDTH = 800 + 2 + 16; // bg width + border width*2 + shadow width*2
public static final int MIN_HEIGHT = 450 + 2 + 40 + 16; // bg height + border width*2 + toolbar height + shadow width*2
public static final int MIN_HEIGHT = 450 + 2 + 40 + 16 + 60; // bg height + border width*2 + toolbar height + shadow width*2
public static final Screen SCREEN = Screen.getPrimary();
private static InvalidationListener stageSizeChangeListener;
private static DoubleProperty stageX = new SimpleDoubleProperty();
Expand Down
2 changes: 1 addition & 1 deletion HMCL/src/main/resources/assets/css/blue.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-fx-rippler-color: rgba(92, 107, 192, 0.3);
-fx-base-rippler-color: derive(rgba(92, 107, 192, 0.3), 100%);
-fx-base-disabled-text-fill: rgba(256, 256, 256, 0.7);
-fx-base-text-fill: white;
-fx-base-text-fill: black;

-theme-thumb: rgba(92, 107, 192, 0.7);
}

0 comments on commit 94c1ed1

Please sign in to comment.