Version 1.0.1

main
nxu 3 years ago
parent b20152c3e1
commit c069179bee

@ -4,12 +4,12 @@ on:
branches: branches:
- main - main
paths-ignore: paths-ignore:
- "README.md" - 'README.md'
pull_request: pull_request:
branches: branches:
- main - main
schedule: schedule:
- cron: "0 0 * * 7" - cron: '0 0 * * 0'
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest

@ -1,2 +1,5 @@
### Version 1.0.1
- Fix the GitHub Actions workflow `auto-update`
### Version 1.0.0 ### Version 1.0.0
- Initial version - Initial version

@ -1,6 +1,6 @@
{ {
"name": "github-emoji-icon-list", "name": "github-emoji-icon-list",
"version": "1.0.0", "version": "1.0.1",
"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 @@
/** /**
* add Generator * GitHub Emoji Icon Icon Markdown Generator
* - Version: 1.0.0 * - Version: 1.0.1
* - Developer: NXU (GitHub: @jasonfoknxu) * - Developer: NXU (GitHub: @jasonfoknxu)
* - https://github.com/jasonfoknxu/github-emoji-icon-list * - https://github.com/jasonfoknxu/github-emoji-icon-list
*/ */
@ -30,7 +30,7 @@ import * as Utils from './utilities';
// Process the Unicode emoji data from the Unicode Emoji Data text // Process the Unicode emoji data from the Unicode Emoji Data text
const unicodeEmojiLines = unicodeEmojisData.split(/\r?\n/); const unicodeEmojiLines = unicodeEmojisData.split(/\r?\n/);
let unicodeEmojis: IUnicodeEmojiData = {}; let unicodeEmojis: IUnicodeEmojiData = {};
let group, subgroup, emojiGroups = [], emojiSubgroups = [], emojiCount = 0; let group = '', subgroup = '', emojiGroups = [], emojiSubgroups = [], emojiCount = 0;
for (let i = 0; i < unicodeEmojiLines.length; i++) { for (let i = 0; i < unicodeEmojiLines.length; i++) {
const parseResult = Utils.parse(unicodeEmojiLines[i]); const parseResult = Utils.parse(unicodeEmojiLines[i]);
if (!parseResult) { continue; } if (!parseResult) { continue; }

Loading…
Cancel
Save