Version 1.0.3b

main
nxu 3 years ago
parent aef59814b1
commit 25913f4e85

File diff suppressed because it is too large Load Diff

@ -1,5 +1,8 @@
# Changelog # Changelog
### Version 1.0.3b
- Quick fix minor bug
### Version 1.0.3 ### Version 1.0.3
- Add GitHub emoji counter - Add GitHub emoji counter
- Add original Unicode - Add original Unicode

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{ {
"name": "github-emoji-icon-list", "name": "github-emoji-icon-list",
"version": "1.0.2", "version": "1.0.3b",
"description": "Generate GitHub Emoji Icon list in Markdown format.", "description": "Generate GitHub Emoji Icon list in Markdown format.",
"homepage": "https://github.com/jasonfoknxu/github-emoji-icon-list", "homepage": "https://github.com/jasonfoknxu/github-emoji-icon-list",
"author": "jasonfoknxu <nxu@nxu.biz> (https://nxuweb.net)", "author": "jasonfoknxu <nxu@nxu.biz> (https://nxuweb.net)",

@ -1,6 +1,6 @@
/** /**
* GitHub Emoji Icon List Markdown Generator * GitHub Emoji Icon List Markdown Generator
* - Version: 1.0.3 * - Version: 1.0.3b
* - Developer: NXU (GitHub: @jasonfoknxu) * - Developer: NXU (GitHub: @jasonfoknxu)
* - https://github.com/jasonfoknxu/github-emoji-icon-list * - https://github.com/jasonfoknxu/github-emoji-icon-list
*/ */
@ -178,7 +178,7 @@ import * as Utils from './utilities';
markdown = tableOfContents + '\n\n' + markdown; markdown = tableOfContents + '\n\n' + markdown;
// icon divider // icon divider
markdown = ':red_circle: :orange_circle: :yellow_circle: :green_circle: :large_blue_circle: :purple_circle: :brown_circle: :black_circle: :white_circle: :red_square: :orange_square: :yellow_square: :green_square: :large_blue_square: :purple_square: :brown_square: :black_large_square: :white_large_square: \n\n' + markdown; markdown = ':red_circle: :orange_circle: :yellow_circle: :green_circle: :large_blue_circle: :purple_circle: :brown_circle: :black_circle: :white_circle: :red_square: :orange_square: :yellow_square: :green_square: :blue_square: :purple_square: :brown_square: :black_large_square: :white_large_square: \n\n' + markdown;
// Add GitHub Actions badge (Auto Update) // Add GitHub Actions badge (Auto Update)
markdown = `[![Auto Update by GitHub Actions](https://github.com/jasonfoknxu/github-emoji-icon-list/actions/workflows/auto-update.yml/badge.svg)](https://github.com/jasonfoknxu/github-emoji-icon-list/actions/workflows/auto-update.yml) :robot: Auto update by GitHub Actions every week.\n\n` + markdown; markdown = `[![Auto Update by GitHub Actions](https://github.com/jasonfoknxu/github-emoji-icon-list/actions/workflows/auto-update.yml/badge.svg)](https://github.com/jasonfoknxu/github-emoji-icon-list/actions/workflows/auto-update.yml) :robot: Auto update by GitHub Actions every week.\n\n` + markdown;

Loading…
Cancel
Save