Skip to content
Merged
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ subprojects {

ext {
appName = 'vis'
gdxVersion = '1.13.5'
gdxVersion = '1.14.0'
jnaVersion = '4.1.0'
jnaPlatformVersion = '3.5.2'
junitVersion = '4.13.2'
Expand Down
3 changes: 2 additions & 1 deletion ui/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#### Version: 1.5.8-SNAPSHOT (libGDX 1.13.5)
#### Version: 1.5.8-SNAPSHOT (libGDX 1.14.0)
- Updated to libGDX 1.14.0

#### Version: 1.5.7 (libGDX 1.13.5)
- Updated to libGDX 1.13.5
Expand Down
2 changes: 1 addition & 1 deletion ui/src/main/java/com/kotcrab/vis/ui/VisUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Kotcrab
*/
public class VisUI {
private static final String TARGET_GDX_VERSION = "1.13.5";
private static final String TARGET_GDX_VERSION = "1.14.0";
private static boolean skipGdxVersionCheck = false;

private static int defaultTitleAlign = Align.left;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import com.badlogic.gdx.scenes.scene2d.ui.Cell;
import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener;
import com.badlogic.gdx.utils.Align;
import com.badlogic.gdx.utils.CharArray;
import com.badlogic.gdx.utils.I18NBundle;
import com.badlogic.gdx.utils.StringBuilder;
import com.kotcrab.vis.ui.Locales;
import com.kotcrab.vis.ui.Sizes;
import com.kotcrab.vis.ui.VisUI;
Expand Down Expand Up @@ -196,12 +196,12 @@ private static VisScrollPane createScrollPane (Actor widget) {
}

private static String getStackTrace (Throwable throwable) {
StringBuilder builder = new StringBuilder();
CharArray builder = new CharArray();
getStackTrace(throwable, builder);
return builder.toString();
}

private static void getStackTrace (Throwable throwable, StringBuilder builder) {
private static void getStackTrace (Throwable throwable, CharArray builder) {
String msg = throwable.getMessage();
if (msg != null) {
builder.append(msg);
Expand Down