Skip to content

Commit

Permalink
Rename PD-classes module to engine
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianscar committed Sep 11, 2023
1 parent ea96d03 commit 369e5e3
Show file tree
Hide file tree
Showing 89 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ android {
applicationVariants.all { variant ->
if (variant.buildType.name == 'release') {
variant.outputs.all {
outputFileName = "CarbonizedPD-v${defaultConfig.versionName}-Android.apk"
outputFileName = "carbonizedpd-android-${defaultConfig.versionName}.apk"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:7.4.2'
}
}

Expand All @@ -22,8 +22,8 @@ allprojects {
appAndroidMinSDK = 16
appAndroidTargetSDK = 31

gdxVersion = '1.11.0'
gdxControllersVersion = '2.2.2'
gdxVersion = '1.12.0'
gdxControllersVersion = '2.2.3'
}
version = appVersionName

Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java-library'
sourceCompatibility = targetCompatibility = appJavaCompatibility

dependencies {
api project(':PD-classes')//TODO might be nice to remove this, should decide
api project(':engine')//TODO might be nice to remove this, should decide
implementation project(':services:updates')
implementation project(':services:news')
}
10 changes: 5 additions & 5 deletions desktop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ task release(dependsOn: compileForRelease, type: Jar) {
attributes 'Implementation-Version': appVersionCode
}

archiveName('CarbonizedPD-v' + appVersionName + '-Desktop.jar');
archivesBaseName('carbonizedpd-desktop');
}

dependencies {
Expand All @@ -56,8 +56,8 @@ dependencies {
implementation "com.badlogicgames.gdx-controllers:gdx-controllers-desktop:$gdxControllersVersion"

//we use LWJGL tinyFD directly to display crash messages and (for now) single-line text input
implementation "org.lwjgl:lwjgl-tinyfd:3.2.3"
implementation "org.lwjgl:lwjgl-tinyfd:3.2.3:natives-windows"
implementation "org.lwjgl:lwjgl-tinyfd:3.2.3:natives-macos"
implementation "org.lwjgl:lwjgl-tinyfd:3.2.3:natives-linux"
implementation "org.lwjgl:lwjgl-tinyfd:3.3.2"
implementation "org.lwjgl:lwjgl-tinyfd:3.3.2:natives-windows"
implementation "org.lwjgl:lwjgl-tinyfd:3.3.2:natives-macos"
implementation "org.lwjgl:lwjgl-tinyfd:3.3.2:natives-linux"
}
File renamed without changes.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion services/news/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ apply plugin: 'java-library'
sourceCompatibility = targetCompatibility = appJavaCompatibility

dependencies {
implementation project(':PD-classes')
implementation project(':engine')
api project(':services')
}
2 changes: 1 addition & 1 deletion services/updates/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ apply plugin: 'java-library'
sourceCompatibility = targetCompatibility = appJavaCompatibility

dependencies {
implementation project(':PD-classes')
implementation project(':engine')
api project(':services')
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//core game code modules
include ':PD-classes'
include ':core'
include ':engine'

//platform modules
include ':android'
Expand Down

0 comments on commit 369e5e3

Please sign in to comment.