mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 14:37:13 -06:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
267567d0a0 | ||
|
|
230bc28ddd | ||
|
|
57c9ffc2ba |
@@ -1,6 +1,11 @@
|
|||||||
FlatLaf Change Log
|
FlatLaf Change Log
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
## 0.11
|
||||||
|
|
||||||
|
- Changed Maven groupId to `com.formdev` and artifactId to `flatlaf`.
|
||||||
|
|
||||||
|
|
||||||
## 0.10
|
## 0.10
|
||||||
|
|
||||||
- Use new chevron arrows in "Flat Light" and "Flat Dark" themes, but keep
|
- Use new chevron arrows in "Flat Light" and "Flat Dark" themes, but keep
|
||||||
|
|||||||
12
README.md
12
README.md
@@ -20,22 +20,22 @@ Demo
|
|||||||
----
|
----
|
||||||
|
|
||||||
Download
|
Download
|
||||||
[flatlaf-demo-0.10.jar](https://download.formdev.com/flatlaf/flatlaf-demo-0.10.jar)
|
[flatlaf-demo-0.11.jar](https://download.formdev.com/flatlaf/flatlaf-demo-0.11.jar)
|
||||||
and run it with `java -jar flatlaf-demo-0.10.jar` (or double-click it). Requires
|
and run it with `java -jar flatlaf-demo-0.11.jar` (or double-click it). Requires
|
||||||
Java 8 or newer.
|
Java 8 or newer.
|
||||||
|
|
||||||
|
|
||||||
Download
|
Download
|
||||||
--------
|
--------
|
||||||
|
|
||||||
[  ](https://bintray.com/jformdesigner/flatlaf/flatlaf-core/_latestVersion)
|
[  ](https://bintray.com/jformdesigner/flatlaf/flatlaf/_latestVersion)
|
||||||
|
|
||||||
For Maven or Gradle use:
|
For Maven or Gradle use:
|
||||||
|
|
||||||
Repository: jcenter (https://jcenter.bintray.com/)
|
Repository: jcenter (https://jcenter.bintray.com/)
|
||||||
Group Id: com.formdev.flatlaf
|
Group Id: com.formdev
|
||||||
Artifact Id: flatlaf-core
|
Artifact Id: flatlaf
|
||||||
Version: 0.10
|
Version: 0.11
|
||||||
|
|
||||||
|
|
||||||
License
|
License
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = "0.10"
|
version = "0.11"
|
||||||
|
|
||||||
// check required Java version
|
// check required Java version
|
||||||
if( JavaVersion.current() < JavaVersion.VERSION_1_8 )
|
if( JavaVersion.current() < JavaVersion.VERSION_1_8 )
|
||||||
|
|||||||
@@ -97,8 +97,8 @@ tasks {
|
|||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create<MavenPublication>( "maven" ) {
|
create<MavenPublication>( "maven" ) {
|
||||||
artifactId = "flatlaf-core"
|
artifactId = "flatlaf"
|
||||||
groupId = "com.formdev.flatlaf"
|
groupId = "com.formdev"
|
||||||
|
|
||||||
from( components["java"] )
|
from( components["java"] )
|
||||||
|
|
||||||
@@ -133,7 +133,7 @@ bintray {
|
|||||||
|
|
||||||
with( pkg ) {
|
with( pkg ) {
|
||||||
repo = "flatlaf"
|
repo = "flatlaf"
|
||||||
name = "flatlaf-core"
|
name = "flatlaf"
|
||||||
setLicenses( "Apache-2.0" )
|
setLicenses( "Apache-2.0" )
|
||||||
vcsUrl = "https://github.com/JFormDesigner/FlatLaf"
|
vcsUrl = "https://github.com/JFormDesigner/FlatLaf"
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ dependencies {
|
|||||||
implementation( project( ":flatlaf-core" ) )
|
implementation( project( ":flatlaf-core" ) )
|
||||||
implementation( "com.miglayout:miglayout-swing:5.2" )
|
implementation( "com.miglayout:miglayout-swing:5.2" )
|
||||||
implementation( "com.jgoodies:jgoodies-forms:1.9.0" )
|
implementation( "com.jgoodies:jgoodies-forms:1.9.0" )
|
||||||
implementation( "guru.nidi.com.kitfox:svgSalamander:1.1.2" )
|
implementation( "com.formdev:svgSalamander:1.1.2.1" )
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
|
|||||||
Reference in New Issue
Block a user