Skip to content

Commit f0f6ba3

Browse files
committed
Prepare for v3.2.2
1 parent 63c9077 commit f0f6ba3

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [3.2.2]
6+
- Inventory button style now in the InventoryUI style. This allows to customize the inventory button by player.
7+
- Update Blade Ink to v0.7.3 which fixes an important bug.
8+
- A lot of bugs fixed (see git log).
9+
510
## [3.2.1]
611

712
- Added bubble positioning parameters on ui.json.

adventure-editor/src/main/resources/projectTmpl/android/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55

66
defaultConfig {
77
applicationId "%PACKAGE%"
8-
minSdkVersion 15
8+
minSdkVersion 16
99
targetSdkVersion '%API_LEVEL%'
1010
versionName version
1111

@@ -130,6 +130,12 @@ task copyAndroidNatives() {
130130
}
131131
}
132132

133+
tasks.whenTaskAdded { packageTask ->
134+
if (packageTask.name.contains("package")) {
135+
packageTask.dependsOn 'copyAndroidNatives'
136+
}
137+
}
138+
133139
task run(type: Exec) {
134140
def path
135141
def localProperties = project.file("../local.properties")

adventure-editor/src/main/resources/versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ buildToolsVersion=28.0.3
55
libgdxVersion=1.9.10
66
roboVMGradlePluginVersion=2.3.7
77
roboVMVersion=2.3.7
8-
version=3.2.2-SNAPSHOT
8+
version=3.2.2

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.2.2-SNAPSHOT
1+
version=3.2.2
22
libgdxVersion=1.9.10
33
roboVMVersion=2.3.7
44
roboVMGradlePluginVersion=2.3.7

0 commit comments

Comments
 (0)