Skip to content

Commit

Permalink
Update #1 - Credits Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lax1dude committed Dec 26, 2022
1 parent e7179fa commit 4eef044
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion client_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
u0
u1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class EaglercraftVersion {
/// Customize these to fit your fork:

public static final String projectForkName = "EaglercraftX";
public static final String projectForkVersion = "u0";
public static final String projectForkVersion = "u1";
public static final String projectForkVendor = "lax1dude";

public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
Expand All @@ -23,7 +23,7 @@ public class EaglercraftVersion {
public static final String projectOriginName = "EaglercraftX";
public static final String projectOriginAuthor = "lax1dude";
public static final String projectOriginRevision = "1.8";
public static final String projectOriginVersion = "u0";
public static final String projectOriginVersion = "u1";

public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";

Expand Down
4 changes: 0 additions & 4 deletions sources/resources/assets/eagler/CREDITS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,3 @@
* limitations under the License.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Make sure you also update the copy of this file in "sources/resources/assets/eagler/CREDITS"

The content of both files should match, but not include this notice in the resources one
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ public static FileChooserResult getFileChooserResult() {
public static void openCreditsPopup(String text) {
Window currentWin = Window.current();

int w = (int)(530 * currentWin.getDevicePixelRatio());
int h = (int)(450 * currentWin.getDevicePixelRatio());
int w = (int)(850 * currentWin.getDevicePixelRatio());
int h = (int)(700 * currentWin.getDevicePixelRatio());

int x = (currentWin.getScreen().getWidth() - w) / 2;
int y = (currentWin.getScreen().getHeight() - h) / 2;
Expand Down

0 comments on commit 4eef044

Please sign in to comment.