Skip to content

Commit d246edb

Browse files
committed
Prepare for v4.1.0 release
1 parent 7825de4 commit d246edb

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
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+
## [4.1.0]
6+
7+
- EDITOR: Text filter for scene and actor lists.
8+
- EDITOR: Button to show/hide actors in the scene.
9+
- Ink: Support for multi flow.
10+
- InkRunAction can pass params to Ink paths.
11+
- New InkCancelAction action.
12+
- Updated Blade Ink to v1.0.0.
13+
- Updated libgdx to v1.10.0.
14+
- Updated packr version.
15+
516
## [4.0.2]
617
- Controller (gamepad) support.
718
- .aab package generation for Android.

adventure-editor/src/main/java/com/bladecoder/engineeditor/ui/ActorList.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void changed(ChangeEvent event, Actor actor) {
8484
}
8585
});
8686

87-
toolbar.addFilterBox(new EventListener() {
87+
TextField tf = toolbar.addFilterBox(new EventListener() {
8888

8989
@Override
9090
public boolean handle(Event e) {
@@ -99,6 +99,8 @@ public boolean handle(Event e) {
9999

100100
});
101101

102+
filterText = tf.getText();
103+
102104
list.addListener(new ChangeListener() {
103105

104106
@Override

adventure-editor/src/main/java/com/bladecoder/engineeditor/ui/SceneList.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void clicked(InputEvent event, float x, float y) {
116116

117117
reloadBtn.setDisabled(true);
118118

119-
toolbar.addFilterBox(new EventListener() {
119+
TextField tf = toolbar.addFilterBox(new EventListener() {
120120

121121
@Override
122122
public boolean handle(Event e) {
@@ -131,6 +131,8 @@ public boolean handle(Event e) {
131131

132132
});
133133

134+
filterText = tf.getText();
135+
134136
list.addListener(new ChangeListener() {
135137
@Override
136138
public void changed(ChangeEvent event, Actor actor) {

adventure-editor/src/main/java/com/bladecoder/engineeditor/ui/panels/EditToolbar.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,16 @@ public void addToolBarButton(ImageButton button, String icon, String text, Strin
9393
button.addListener(t);
9494
}
9595

96-
public void addFilterBox(EventListener e) {
96+
public TextField addFilterBox(EventListener e) {
9797
TextField tf = new TextField("", skin);
9898
addActor(tf);
9999

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

103103
tf.addListener(e);
104+
105+
return tf;
104106
}
105107

106108
public void addCreateListener(EventListener e) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ bladeInkVersion=1.0.0
44
libgdxVersion=1.10.0
55
roboVMGradlePluginVersion=2.3.12
66
roboVMVersion=2.3.12
7-
version=4.0.3-SNAPSHOT
7+
version=4.1.0

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=4.0.3-SNAPSHOT
1+
version=4.1.0
22
libgdxVersion=1.10.0
33
roboVMVersion=2.3.12
44
roboVMGradlePluginVersion=2.3.12

0 commit comments

Comments
 (0)