Skip to content

Commit

Permalink
🔖 Version 11.13.4
Browse files Browse the repository at this point in the history
🐛 Fixed Maven POM once and for all
🐛 MFXTextFieldSkin: fixed bug which caused improper text fill in specific occasions

Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
  • Loading branch information
palexdev committed Mar 31, 2022
1 parent def0636 commit fa039ff
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[//]: ##[Unreleased]

## [11.13.4] - 31-03-2022

### Fixed

- Fixed Maven POM
- Fixed MFXTextField bug which was causing improper text fill in specific occasions

## [11.13.3] - 10-03-2022

### Added

- MFXTextField: added a label to specify the unit of measure (optional, leave blank string to remove)

### Changed

- Update Gradle plugins
- Update VirtualizedFX to 11.2.5
- Improve ROADMAP
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ repositories {
}
dependencies {
implementation 'io.github.palexdev:materialfx:11.13.3'
implementation 'io.github.palexdev:materialfx:11.13.4'
}
```

Expand All @@ -235,7 +235,7 @@ dependencies {
<dependency>
<groupId>io.github.palexdev</groupId>
<artifactId>materialfx</artifactId>
<version>11.13.3</version>
<version>11.13.4</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'io.github.palexdev'
version '11.13.3'
version '11.13.4'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion materialfx/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GROUP=io.github.palexdev
POM_ARTIFACT_ID=materialfx
VERSION_NAME=11.13.3
VERSION_NAME=11.13.4

POM_NAME=materialfx
POM_DESCRIPTION=Material Desgin components for JavaFX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public MFXTextFieldSkin(MFXTextField textField, BoundTextField boundField) {
if (textField.getLeadingIcon() != null) getChildren().add(textField.getLeadingIcon());
if (textField.getTrailingIcon() != null) getChildren().add(textField.getTrailingIcon());

updateTextColor(textField.getTextFill());
addListeners();
}

Expand Down

0 comments on commit fa039ff

Please sign in to comment.