Skip to content

Commit

Permalink
Whoops, MOE wasn't fully enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Sep 13, 2024
1 parent 1d23e7a commit a50a72d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.daemon=false
org.gradle.jvmargs=-Xms512M -Xmx1G -Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8
liftoffVersion=1.12.1.15
liftoffVersion=1.12.1.16-SNAPSHOT
#kotlinVersion=1.9.25
kotlinVersion=2.0.20
gdxVersion=1.12.1
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gdx/liftoff/ui/dialogs/PlatformsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private void populate(Table contentTable) {
table.defaults().left().spaceLeft(SPACE_LARGE);
addPlatform(table, ("headless"), prop.getProperty("headlessTip"));
addPlatform(table, ("teavm"), prop.getProperty("teavmTip"));
// addPlatform(table, ("ios-moe"), prop.getProperty("ios-moeTip"));
addPlatform(table, ("ios-moe"), prop.getProperty("ios-moeTip"));
addPlatform(table, ("lwjgl2"), prop.getProperty("lwjgl2Tip"));
addPlatform(table, ("server"), prop.getProperty("serverTip"));
addPlatform(table, ("shared"), prop.getProperty("sharedTip"));
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/gdx/liftoff/config/Configuration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import gdx.liftoff.views.widgets.ScrollableTextArea
@Suppress("unused") // Fields accessed via reflection.
class Configuration {
companion object {
const val VERSION = "1.12.1.15"
const val VERSION = "1.12.1.16-SNAPSHOT"
const val WIDTH = 600
const val HEIGHT = 700
const val PREFERENCES_PATH = "gdx-liftoff-prefs"
Expand Down
3 changes: 2 additions & 1 deletion src/main/kotlin/gdx/liftoff/data/platforms/IOSMOE.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ import gdx.liftoff.data.files.CopiedFile
import gdx.liftoff.data.files.gradle.GradleFile
import gdx.liftoff.data.files.path
import gdx.liftoff.data.project.Project
import gdx.liftoff.views.GdxPlatform

/**
* Represents iOS backend.
*/
// @GdxPlatform
@GdxPlatform
class IOSMOE : Platform {
companion object {
const val ID = "ios-moe"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ui-data/defaults.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
liftoffVersion=1.12.1.15
liftoffVersion=1.12.1.16-SNAPSHOT
projectNameDefault=YourProjectName
packageNameDefault=io.github.some_example_name
mainClassNameDefault=Main
Expand Down

0 comments on commit a50a72d

Please sign in to comment.