Sfoglia il codice sorgente

:bookmark: Version 11.13.4

:bug: Fixed Maven POM once and for all
:bug: MFXTextFieldSkin: fixed bug which caused improper text fill in specific occasions

Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
palexdev 3 anni fa
parent
commit
fa039ffff3

+ 10 - 0
CHANGELOG.md

@@ -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

+ 2 - 2
README.md

@@ -224,7 +224,7 @@ repositories {
 }
 
 dependencies {
-  implementation 'io.github.palexdev:materialfx:11.13.3'
+  implementation 'io.github.palexdev:materialfx:11.13.4'
 }
 ```
 
@@ -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>
 ```
 

+ 1 - 1
build.gradle

@@ -4,7 +4,7 @@ plugins {
 }
 
 group 'io.github.palexdev'
-version '11.13.3'
+version '11.13.4'
 
 repositories {
     mavenCentral()

+ 1 - 1
materialfx/gradle.properties

@@ -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

+ 1 - 0
materialfx/src/main/java/io/github/palexdev/materialfx/skins/MFXTextFieldSkin.java

@@ -109,6 +109,7 @@ public class MFXTextFieldSkin extends SkinBase<MFXTextField> {
 		if (textField.getLeadingIcon() != null) getChildren().add(textField.getLeadingIcon());
 		if (textField.getTrailingIcon() != null) getChildren().add(textField.getTrailingIcon());
 
+		updateTextColor(textField.getTextFill());
 		addListeners();
 	}