Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Overlap2D - 0.1.4
------------------------------
Updated versions of all relevant libraries used and performed a major code refactor to match the updated libraries.
Bugfix:
fixed a crash that occurs when spamming undo after a multiple object copy-paste to a new layer
fixed Export settings dialog failing to save export settings
fixed color picker defaulting to black every time it's opened

Overlap2D - 0.1.3
------------------------------
Bugfix:
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ allprojects {
apply plugin: "eclipse"
apply plugin: "idea"

version = '0.1.3'
version = '0.1.4'
ext {
appName = 'Overlap2D'
gdxVersion = '1.7.1'
gdxVersion = '1.9.4'
box2DLightsVersion = '1.4'
visuiVersion = '0.9.2'
visuiVersion = '1.2.4'

packMain = ["overlap2d/art/textures", "overlap2d/assets/style/", "uiskin"]
packSplash = ["overlap2d/art/splash_textures", "overlap2d/assets/splash/", "splash"]
Expand Down Expand Up @@ -234,4 +234,4 @@ task checkTest() << {
}

check.dependsOn jacocoTestReport
test.dependsOn packTextures
test.dependsOn packTextures
8 changes: 4 additions & 4 deletions overlap2d-common-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ apply plugin: "java"
sourceSets.main.java.srcDirs = [ "src/" ]

ext {
gdxVersion = '1.7.0'
ashleyVersion = '1.5.0'
gdxVersion = '1.9.4'
ashleyVersion = '1.7.3'
}

dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.ashley:ashley:$ashleyVersion"
compile "com.kotcrab.vis:vis-ui:0.9.2"
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
compile "com.underwaterapps.overlap2druntime:overlap2d-runtime-libgdx:0.1.2-SNAPSHOT"
compile 'net.mountainblade:modular:1.0'
}
Expand All @@ -24,4 +24,4 @@ repositories {

task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
}
2 changes: 1 addition & 1 deletion overlap2d-common-api/src/com/commons/O2DDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener;
import com.kotcrab.vis.ui.InputValidator;
import com.kotcrab.vis.ui.util.InputValidator;
import com.kotcrab.vis.ui.VisUI;
import com.kotcrab.vis.ui.widget.VisDialog;
import com.kotcrab.vis.ui.widget.VisImageButton;
Expand Down
137 changes: 0 additions & 137 deletions overlap2d-common-api/src/com/commons/color/ColorChannelWidget.java

This file was deleted.

133 changes: 0 additions & 133 deletions overlap2d-common-api/src/com/commons/color/ColorInputField.java

This file was deleted.

41 changes: 0 additions & 41 deletions overlap2d-common-api/src/com/commons/color/ColorPickerAdapter.java

This file was deleted.

Loading