Skip to content

Commit

Permalink
Version 0.0.5-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Spikatrix committed Jul 1, 2021
1 parent deb1519 commit d2b5efd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Zoned   [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![Version: 0.0.5-dev](https://img.shields.io/badge/version-0.0.5--dev-orange)](https://github.com/Spikatrix/Zoned/releases/tag/v0.0.5-dev)
# Zoned   [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![Version: 0.0.5-beta](https://img.shields.io/badge/version-0.0.5--beta-orange)](https://github.com/Spikatrix/Zoned/releases/tag/v0.0.5-beta)

<img src="https://i.stack.imgur.com/cunrq.png" alt="Zoned Icon" align="left" style="margin: 10px 20px 10px 10px; border-radius: 20%; box-shadow: 0 6px 20px 2px black" height="162px">

Expand Down
9 changes: 4 additions & 5 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ android {
minSdkVersion 14
targetSdkVersion 30
versionCode 5
versionName "0.0.5-dev"
versionName "0.0.5-beta"
// Remember to update the GAME_VERSION in Constants.java
// And project.setVersion in Desktop's build.gradle
// And the version in the badge in the README file
Expand Down Expand Up @@ -59,7 +59,6 @@ android {
}
}


// called every time gradle gets executed, takes the native dependencies of
// the natives configuration, and extracts them to the proper libs/ folders
// so they get packed with the APK.
Expand All @@ -75,9 +74,9 @@ task copyAndroidNatives {
def outputDir = null
if (jar.name.endsWith("natives-arm64-v8a.jar")) outputDir = file("libs/arm64-v8a")
if (jar.name.endsWith("natives-armeabi-v7a.jar")) outputDir = file("libs/armeabi-v7a")
if(jar.name.endsWith("natives-armeabi.jar")) outputDir = file("libs/armeabi")
if(jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64")
if(jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86")
if (jar.name.endsWith("natives-armeabi.jar")) outputDir = file("libs/armeabi")
if (jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64")
if (jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86")
if(outputDir != null) {
copy {
from zipTree(jar)
Expand Down
2 changes: 1 addition & 1 deletion core/src/com/cg/zoned/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.List;

public final class Constants {
public static final String GAME_VERSION = "0.0.5-dev";
public static final String GAME_VERSION = "0.0.5-beta";
// Remember to update the versionName in Android's build.gradle
// And project.setVersion in Desktop's build.gradle
// And the version in the badge in the README file
Expand Down
2 changes: 1 addition & 1 deletion desktop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sourceSets.main.java.srcDirs = [ "src/" ]
project.ext.mainClassName = "com.cg.zoned.desktop.DesktopLauncher"
project.ext.assetsDir = new File("../android/assets")
project.setProperty("archivesBaseName", appName)
project.setVersion("0.0.5-dev")
project.setVersion("0.0.5-beta")
// Remember to update the GAME_VERSION in Constants.java
// And versionName in Android's build.gradle
// And the version in the badge in the README file
Expand Down

0 comments on commit d2b5efd

Please sign in to comment.