Skip to content

Commit

Permalink
Release 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Milchreis committed Apr 15, 2023
1 parent 6ee02ea commit fa5dbae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ If you like this project, and you want to keep me awake πŸ€ͺ, please:
- [Datepicker](#datepicker)
- [File and directory selection dialogs](#file-and-directory-selection-dialogs)
- [Text area dialog](#text-area-dialog)
- [HTML text dialog](#html-text-dialog)
- [Exception dialog](#exception-dialog)
- [List dialog](#list-dialog)
- [Login dialog](#login-dialog)
Expand Down Expand Up @@ -144,6 +145,18 @@ new UiBooster().showTextArea("Want to read some lorem ipsum?", "Message for you"
);
```

### HTML text dialog
![screenshot html text dialog](https://github.com/Milchreis/UiBooster/blob/master/screenshots/htmltext.jpg?raw=true)
```java
new UiBooster().showHtmlText("My menu", "Menu overview",
"<h1>πŸ“œ Menu</h1>" +
"<ul>" +
"<li>πŸ• Pizza </li>" +
"<li>πŸ” Cheeseburger</li>" +
"<li>πŸ₯— Caesar-Salat</li>" +
"</ul>");
```

### Exception dialog
![screenshot exception dialog](https://github.com/Milchreis/UiBooster/blob/master/screenshots/exception.jpg?raw=true)
```java
Expand Down Expand Up @@ -309,7 +322,7 @@ If you want to use `UiBooster` than add the following to your pom.xml.
<dependency>
<groupId>com.github.Milchreis</groupId>
<artifactId>UiBooster</artifactId>
<version>1.17.0</version>
<version>1.18.0</version>
</dependency>
```

Expand All @@ -325,6 +338,6 @@ allprojects {
```
```gradle
dependencies {
implementation 'com.github.Milchreis:UiBooster:1.17.0'
implementation 'com.github.Milchreis:UiBooster:1.18.0'
}
```
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.milchreis</groupId>
<artifactId>UiBooster</artifactId>
<version>1.17.0</version>
<version>1.18.0</version>
<packaging>jar</packaging>

<properties>
Expand Down

0 comments on commit fa5dbae

Please sign in to comment.