Update #1 - Credits Fix

This commit is contained in:
LAX1DUDE 2022-12-25 20:11:11 -08:00
parent e7179fad45
commit 4eef04447e
4 changed files with 5 additions and 9 deletions

View File

@ -1 +1 @@
u0
u1

View File

@ -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";
@ -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";

View File

@ -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

View File

@ -220,8 +220,8 @@ public class PlatformApplication {
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;