Skip to content

Commit

Permalink
Prepare for v4.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bladecoder committed Dec 8, 2021
1 parent 7825de4 commit d246edb
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.1.0]

- EDITOR: Text filter for scene and actor lists.
- EDITOR: Button to show/hide actors in the scene.
- Ink: Support for multi flow.
- InkRunAction can pass params to Ink paths.
- New InkCancelAction action.
- Updated Blade Ink to v1.0.0.
- Updated libgdx to v1.10.0.
- Updated packr version.

## [4.0.2]
- Controller (gamepad) support.
- .aab package generation for Android.
Expand Down
Expand Up @@ -84,7 +84,7 @@ public void changed(ChangeEvent event, Actor actor) {
}
});

toolbar.addFilterBox(new EventListener() {
TextField tf = toolbar.addFilterBox(new EventListener() {

@Override
public boolean handle(Event e) {
Expand All @@ -99,6 +99,8 @@ public boolean handle(Event e) {

});

filterText = tf.getText();

list.addListener(new ChangeListener() {

@Override
Expand Down
Expand Up @@ -116,7 +116,7 @@ public void clicked(InputEvent event, float x, float y) {

reloadBtn.setDisabled(true);

toolbar.addFilterBox(new EventListener() {
TextField tf = toolbar.addFilterBox(new EventListener() {

@Override
public boolean handle(Event e) {
Expand All @@ -131,6 +131,8 @@ public boolean handle(Event e) {

});

filterText = tf.getText();

list.addListener(new ChangeListener() {
@Override
public void changed(ChangeEvent event, Actor actor) {
Expand Down
Expand Up @@ -93,14 +93,16 @@ public void addToolBarButton(ImageButton button, String icon, String text, Strin
button.addListener(t);
}

public void addFilterBox(EventListener e) {
public TextField addFilterBox(EventListener e) {
TextField tf = new TextField("", skin);
addActor(tf);

TextTooltip t = new TextTooltip("Filter list", skin);
tf.addListener(t);

tf.addListener(e);

return tf;
}

public void addCreateListener(EventListener e) {
Expand Down
2 changes: 1 addition & 1 deletion adventure-editor/src/main/resources/versions.properties
Expand Up @@ -4,4 +4,4 @@ bladeInkVersion=1.0.0
libgdxVersion=1.10.0
roboVMGradlePluginVersion=2.3.12
roboVMVersion=2.3.12
version=4.0.3-SNAPSHOT
version=4.1.0
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,4 +1,4 @@
version=4.0.3-SNAPSHOT
version=4.1.0
libgdxVersion=1.10.0
roboVMVersion=2.3.12
roboVMGradlePluginVersion=2.3.12
Expand Down

0 comments on commit d246edb

Please sign in to comment.