diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 433ab11..cf98065 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,4 +20,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_TITLE: "Anime Captcha {VERSION}" VERSION_MUST_INCREASE: true - RELEASE_ON_KEYWORD: ${{ github.event.commits[0].message }} + RELEASE_ON_KEYWORD: ${{ github.event.head_commit.message }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ba80508..ff8bb03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All change except updating data will be noted here +## [1.1.57] - 2022-02-07 + +- Further Nerf the `hani` category (20% -> 16.67%), (`loli` and `trap` 40% -> 41.67%) + ## [1.1.56] - 2022-01-17 - Footer Bar & Debug Panel & other misc changes diff --git a/data/data.ts b/data/data.ts index 47d2034..821089a 100644 --- a/data/data.ts +++ b/data/data.ts @@ -7,8 +7,8 @@ import * as hani from "./hani.json"; const Data: { [category: string]: CaptchaTypeJSON } = { loli, trap, hani }; -// * loli and trap has 2 while hani has 1 -export const weights = [0, 2, 4, 5]; +// * loli and trap has 5 while hani has 2 +export const weights = [0, 5, 10, 12]; export function getQuestions(category: string): CaptchaType | undefined { const data = Data[category]; diff --git a/data/loli.json b/data/loli.json index 599681e..722b020 100644 --- a/data/loli.json +++ b/data/loli.json @@ -266,7 +266,7 @@ "answer": true }, { - "image": "https://pbs.twimg.com/media/EqZq_8UXUAEbKLA.jpg", + "image": "https://staticg.sportskeeda.com/editor/2022/01/c4cd2-16430530325410-1920.jpg", "name": { "en": "Gabi Braun", "ja": "ガビ・ブラウン" diff --git a/package.json b/package.json index 72766be..b2f41c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "anime-captcha", - "version": "1.1.56", + "version": "1.1.57", "type": "module", "scripts": { "dev": "lm-config && vite --port $PORT",