Skip to content

Commit

Permalink
Supports simple-icons v6.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsoft committed Feb 28, 2022
1 parent 22ee044 commit 9f99ddb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.5.0 (28 Feb 2022)

## Enhancements
- Supports [simple-icons v6.12.0](https://github.com/simple-icons/simple-icons/releases/tag/6.12.0)

# 1.4.0 (25 Feb 2022)

## Enhancements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

`SimpleIcons4J` is a Java implementation of the [simple-icons](https://www.npmjs.com/package/simple-icons) JavaScript library and is inspired by [simpleicons.org](https://simpleicons.org).

This library currently supports [simple-icons v6.11.0](https://github.com/simple-icons/simple-icons/releases/tag/6.11.0).
This library currently supports [simple-icons v6.12.0](https://github.com/simple-icons/simple-icons/releases/tag/6.12.0).

## Installation
```xml
<dependency>
<groupId>org.silentsoft</groupId>
<artifactId>simpleicons4j</artifactId>
<version>1.4.0</version>
<version>1.5.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.silentsoft</groupId>
<artifactId>simpleicons4j</artifactId>
<version>1.4.0</version>
<version>1.5.0</version>

<name>SimpleIcons4J</name>
<description>SimpleIcons4J is a Java implementation of the simple-icons JavaScript library and is inspired by simpleicons.org.</description>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>simple-icons</artifactId>
<version>6.11.0</version>
<version>6.12.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions slugs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1496,6 +1496,7 @@
| `Rancher` | `rancher` | `RancherIcon` |
| `Rarible` | `rarible` | `RaribleIcon` |
| `Raspberry Pi` | `raspberrypi` | `RaspberrypiIcon` |
| `Ray` | `ray` | `RayIcon` |
| `Razer` | `razer` | `RazerIcon` |
| `Razorpay` | `razorpay` | `RazorpayIcon` |
| `ReScript` | `rescript` | `RescriptIcon` |
Expand Down Expand Up @@ -1525,6 +1526,7 @@
| `RenovateBot` | `renovatebot` | `RenovatebotIcon` |
| `Renren` | `renren` | `RenrenIcon` |
| `Replit` | `replit` | `ReplitIcon` |
| `Republic of Gamers` | `republicofgamers` | `RepublicofgamersIcon` |
| `RescueTime` | `rescuetime` | `RescuetimeIcon` |
| `ResearchGate` | `researchgate` | `ResearchgateIcon` |
| `Resurrection Remix OS` | `resurrectionremixos` | `ResurrectionremixosIcon` |
Expand All @@ -1545,6 +1547,7 @@
| `Roblox` | `roblox` | `RobloxIcon` |
| `Robot Framework` | `robotframework` | `RobotframeworkIcon` |
| `Rocket.Chat` | `rocketdotchat` | `RocketdotchatIcon` |
| `RocksDB` | `rocksdb` | `RocksdbIcon` |
| `Rocky Linux` | `rockylinux` | `RockylinuxIcon` |
| `Roku` | `roku` | `RokuIcon` |
| `Rolls-Royce` | `rollsroyce` | `RollsroyceIcon` |
Expand Down Expand Up @@ -1717,6 +1720,7 @@
| `Squarespace` | `squarespace` | `SquarespaceIcon` |
| `Stack Exchange` | `stackexchange` | `StackexchangeIcon` |
| `Stack Overflow` | `stackoverflow` | `StackoverflowIcon` |
| `StackEdit` | `stackedit` | `StackeditIcon` |
| `StackPath` | `stackpath` | `StackpathIcon` |
| `StackShare` | `stackshare` | `StackshareIcon` |
| `Stackbit` | `stackbit` | `StackbitIcon` |
Expand Down Expand Up @@ -1798,6 +1802,7 @@
| `Tekton` | `tekton` | `TektonIcon` |
| `Telegram` | `telegram` | `TelegramIcon` |
| `Telegraph` | `telegraph` | `TelegraphIcon` |
| `Temporal` | `temporal` | `TemporalIcon` |
| `Tencent QQ` | `tencentqq` | `TencentqqIcon` |
| `TensorFlow` | `tensorflow` | `TensorflowIcon` |
| `Teradata` | `teradata` | `TeradataIcon` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class IconGenerator {

private static final Logger LOGGER = LoggerFactory.getLogger(IconGenerator.class);

private static final String WEBJAR_RESOURCE_ROOT = "/META-INF/resources/webjars/simple-icons/6.11.0";
private static final String WEBJAR_RESOURCE_ROOT = "/META-INF/resources/webjars/simple-icons/6.12.0";

public static void main(String[] args) throws Exception {
TreeMap<String, String> iconMap = new TreeMap<>();
Expand Down

0 comments on commit 9f99ddb

Please sign in to comment.