Browse Source

Update README.md

pull/154/head
Jannis Weis 5 years ago committed by GitHub
parent
commit
4e98c69846
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      README.md

19
README.md

@ -26,20 +26,27 @@ 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>[2.0.3,)</version> <version>[2.0.2,)</version>
</dependency>
<dependency>
<!-- For the themes-->
<groupId>com.github.weisj</groupId>
<artifactId>darklaf-core</artifactId>
<version>[2.0.2,)</version>
</dependency> </dependency>
```` ````
### Gradle ### Gradle
```` ````
implementation 'com.github.weisj:darklaf-core:[2.0.3,)' implementation("com.github.weisj:darklaf-core:[2.0.2,)")
implementation("com.github.weisj:darklaf-core:[2.0.2,)") // For the themes
```` ````
## Installation ## Installation
The LookAndFeel can be easily installed using the 'LafManager' The LookAndFeel can be easily installed using the 'LafManager'
````java ````java
LafManager.install(); //For default theme (IntelliJ) LafManager.install(); // For default theme (IntelliJ)
//or // or
LafManager.install(new DarculaTheme()); //Specify the used theme. LafManager.install(new DarculaTheme()); // Specify the used theme.
```` ````
or by using the UIManager or by using the UIManager
````java ````java
@ -110,7 +117,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: `2.0.3` - Version: `2.0.2`
- 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-theme` The themes to use with the LaF. - `darklaf-theme` The themes to use with the LaF.

Loading…
Cancel
Save