Browse Source

new rc

pull/77/head v1.4.2.0
weisj 5 years ago
parent
commit
eedfc5c6f1
  1. 6
      README.md
  2. 14
      core/pom.xml
  3. 2
      gradle.properties

6
README.md

@ -24,12 +24,12 @@ This project is available on Maven Central:
<dependency> <dependency>
<groupId>com.github.weisj</groupId> <groupId>com.github.weisj</groupId>
<artifactId>darklaf-core</artifactId> <artifactId>darklaf-core</artifactId>
<version>[1.4.1.0,)</version> <version>[1.4.2.0,)</version>
</dependency> </dependency>
```` ````
### Gradle ### Gradle
```` ````
implementation 'com.github.weisj:darklaf-core:[1.4.1.0,)' implementation 'com.github.weisj:darklaf-core:[1.4.2.0,)'
```` ````
## Installation ## Installation
@ -104,7 +104,7 @@ Here is a list of things that currently are not finished or need refinement. Thi
# Artifacts # Artifacts
- Group ID: `com.github.weisj` - Group ID: `com.github.weisj`
- Version: `1.4.1.0` - Version: `1.4.2.0`
- Artifact IDs: - Artifact IDs:
- `darklaf-core` The LaF itself. Include this in your project to use the LaF. Includes all other artifacts. - `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. - `darklaf-property-loader` Library to load and parse property files and icon.

14
core/pom.xml

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

2
gradle.properties

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

Loading…
Cancel
Save