Browse Source

Release RmlUi 6.1

Michael Ragazzon 7 months ago
parent
commit
58c751531f
3 changed files with 4 additions and 2 deletions
  1. 1 1
      CMakeLists.txt
  2. 2 0
      changelog.md
  3. 1 1
      readme.md

+ 1 - 1
CMakeLists.txt

@@ -8,7 +8,7 @@ project("RmlUi"
 	LANGUAGES "C" "CXX"
 )
 
-set(RMLUI_VERSION_RELEASE FALSE)
+set(RMLUI_VERSION_RELEASE TRUE)
 
 if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
 	set(RMLUI_IS_ROOT_PROJECT TRUE)

+ 2 - 0
changelog.md

@@ -56,6 +56,8 @@ decorator: text("Hello 🌎 world!" blue bottom right);
 
 The font face will be inherited from the element it is being applied to. However, it can be colored independently. Further, the text can be freely aligned within the element using lengths, percentages, or keywords. Unicode numerical references are supported with the HTML syntax, e.g. `🌎`.
 
+![Text decorator examples](https://github.com/mikke89/RmlUiDoc/blob/b050d5d0b316c961cd05ed37cdd3dda1b809d80e/assets/images/decorators/text.png)
+
 ### Flexbox layout improvements
 
 - Apply automatic minimum size of flex items in column mode with auto size. #658

+ 1 - 1
readme.md

@@ -350,7 +350,7 @@ int main(int argc, char** argv)
 
 ![Hello world document](Samples/assets/hello_world.png)
 
-Users can now edit the text field to change the animal. The data bindings ensure that both the document text as well as the application string `my_data.animal` are automatically modified accordingly.
+Users can now edit the text field to change the animal. The data bindings ensure that both the document text and the application string `my_data.animal` are automatically modified accordingly.
 
 
 ## Gallery