Skip to content

Commit

Permalink
new rc.
Browse files Browse the repository at this point in the history
  • Loading branch information
weisJ committed Mar 24, 2020
1 parent 5b3db3d commit 264cee4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
14 changes: 7 additions & 7 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 264cee4

Please sign in to comment.