Browse Source

new rc.

pull/127/head v1.4.3.1
weisj 5 years ago
parent
commit
264cee4fac
  1. 7
      README.md
  2. 14
      core/pom.xml
  3. 2
      gradle.properties

7
README.md

@ -27,18 +27,19 @@ This project is available on Maven Central:
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-core</artifactId>
<version>[1.4.3.0,)</version>
<version>[1.4.3.1,)</version>
</dependency>
````
### Gradle
````
implementation 'com.github.weisj:darklaf-core:[1.4.3.0,)'
implementation 'com.github.weisj:darklaf-core:[1.4.3.1,)'
````
## Installation
The LookAndFeel can be easily installed using the 'LafManager'
````java
LafManager.install(); //For default theme (IntelliJ)
//or
LafManager.install(new DarculaTheme()); //Specify the used theme.
````
or by using the UIManager
@ -108,7 +109,7 @@ Here is a list of things that currently are not finished or need refinement. Thi
# Artifacts
- Group ID: `com.github.weisj`
- Version: `1.4.3.0`
- Version: `1.4.3.1`
- Artifact IDs:
- `darklaf-core` The LaF itself. Include this in your project to use the LaF. Includes all other artifacts.
- `darklaf-property-loader` Library to load and parse property files and icon.

14
core/pom.xml

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-core</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<name>Darklaf core</name>
<description>A themeable Look and Feel for java swing</description>
<url>https://github.com/weisJ/darklaf</url>
@ -38,37 +38,37 @@
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-native-utils</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-utils</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-decorations-base</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-windows</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-macos</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-property-loader</artifactId>
<version>1.4.3.0</version>
<version>1.4.3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>

2
gradle.properties

@ -7,7 +7,7 @@ kotlin.code.style = official
systemProp.org.gradle.internal.publish.checksums.insecure = true
# Darklaf version
darklaf.version = 1.4.3.0
darklaf.version = 1.4.3.1
# Plugins
shadow.version = 5.1.0

Loading…
Cancel
Save