Skip to content

Commit 9498a06

Browse files
authored
📝 Update conventional gitmoji web url (#172)
1 parent ffd033d commit 9498a06

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This plug-in will help you to choose and add the gitmoji, via a button in the Co
1616
* Load the list of gitmoji on startup from the repos of gitmoji (fallback to a local list if error).
1717
* Allow to display the gitmoji in a new column in the commit history
1818
* Translate the gitmoji description in your chinese and french language.
19-
* Custom gitmoji list from url or predefined default [Gitmojis](https://gitmoji.dev/) or [Conventional Gitmojis](https://conventional-gitmoji.web.app/)
19+
* Custom gitmoji list from url or predefined default [Gitmojis](https://gitmoji.dev/) or [Conventional Gitmojis](https://ackeecz.github.io/conventional-gitmoji/)
2020

2121
See the [gitmoji website](https://gitmoji.dev/) for have the list of Emoji and their signification.
2222
<!-- Plugin description end -->

custom_gitmojis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The plugin will try to download remote YAML translations. If the network fetch o
6464
- The plugin ships a bundled default file at [gitmojis.json](./src/main/resources/gitmojis.json). If an HTTP fetch of the configured JSON URL fails, the plugin falls back to this embedded file.
6565
- Default localization example file can be found at [gitmojis.yaml](./src/main/resources/gitmojis.yaml).
6666
- The default remote URL used by the plugin for Gitmoji source is https://gitmoji.dev/api/gitmojis
67-
- There is also a built-in [Conventional Gitmoji](https://conventional-gitmoji.web.app/) option, which is reduced set of Gitmojis matching the [conventional commit](https://www.conventionalcommits.org) specification.
67+
- There is also a built-in [Conventional Gitmoji](https://ackeecz.github.io/conventional-gitmoji/) option, which is reduced set of Gitmojis matching the [conventional commit](https://www.conventionalcommits.org) specification.
6868

6969

7070
## Practical example — host custom JSON and YAML on GitHub

src/main/kotlin/com/github/patou/gitmoji/source/GitmojiSourceType.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sealed interface GitmojiSourceType {
4747
override val settingsName: String = "Gitmoji Conventional"
4848
override val jsonUrl: String = "https://raw.githubusercontent.com/glazrtom/conventional-gitmoji-config/refs/heads/master/gitmojis.json"
4949
override val localizationUrl: String = "https://raw.githubusercontent.com/glazrtom/conventional-gitmoji-config/refs/heads/master/localizations/gitmojis-{locale}.yaml"
50-
override val tooltipUrl: String = "https://conventional-gitmoji.web.app/"
50+
override val tooltipUrl: String = "https://ackeecz.github.io/conventional-gitmoji/"
5151
override val tooltipText: String = GitmojiBundle.message("config.source.type.conventionalGitmoji.tooltip")
5252
}
5353

0 commit comments

Comments
 (0)