diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 1ea6297..3e8e118 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -12,17 +12,17 @@ body: options: - label: >- I have searched the [issue - tracker](https://github.com/ThaUnknown/miru/issues) for a bug report + tracker](https://github.com/NoCrypt/migu/issues) for a bug report that matches the one I want to file, without success. required: true - label: >- I have searched the [frequently asked - questions](https://github.com/ThaUnknown/miru/blob/master/docs/faq.md) + questions](https://github.com/NoCrypt/migu/blob/master/docs/faq.md) for a solution that fixes this problem, without success. required: true - label: >- I have checked that I'm using the [latest - stable](https://github.com/ThaUnknown/miru/releases/latest) version + stable](https://github.com/NoCrypt/migu/releases/latest) version of the app. required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 8637bc4..dc24cf2 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -12,17 +12,17 @@ body: options: - label: >- I have searched the [issue - tracker](https://github.com/ThaUnknown/miru/issues) for a bug report + tracker](https://github.com/NoCrypt/migu/issues) for a bug report that matches the one I want to file, without success. required: true - label: >- I have searched the [features - list](https://github.com/ThaUnknown/miru#features) for this feature, + list](https://github.com/NoCrypt/migu#features) for this feature, and I couldn't find it. required: true - label: >- I have checked that I'm using the [latest - stable](https://github.com/ThaUnknown/miru/releases/latest) version + stable](https://github.com/NoCrypt/migu/releases/latest) version of the app. required: true - type: textarea diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml deleted file mode 100644 index 9aa70a9..0000000 --- a/.github/workflows/winget.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Publish to WinGet -on: - release: - types: [released] -jobs: - publish: - runs-on: windows-latest - steps: - - name: WinGet Releaser - uses: vedantmgoyal2009/winget-releaser@v2 - with: - identifier: ThaUnknown.Miru - installers-regex: '\installer.exe$' - token: ${{ secrets.WINGET_TOKEN }} \ No newline at end of file diff --git a/common/modules/anilist.js b/common/modules/anilist.js index 62d20a1..0748152 100644 --- a/common/modules/anilist.js +++ b/common/modules/anilist.js @@ -395,8 +395,8 @@ class AnilistClient { variables.status = 'COMPLETED' if (media.mediaListEntry?.status === 'REPEATING') variables.repeat = media.mediaListEntry.repeat + 1 } - if (!lists.includes('Watched using Miru')) { - variables.lists.push('Watched using Miru') + if (!lists.includes('Watched using Migu')) { + variables.lists.push('Watched using Migu') } await this.entry(variables) this.userLists.value = this.getUserLists() @@ -712,7 +712,7 @@ class AnilistClient { } customList (variables = {}) { - variables.lists = [...variables.lists, 'Watched using Miru'] + variables.lists = [...variables.lists, 'Watched using Migu'] const query = /* js */` mutation($lists: [String]) { UpdateUser(animeListOptions: { customLists: $lists }) { diff --git a/common/modules/settings.js b/common/modules/settings.js index 018333a..211d34b 100644 --- a/common/modules/settings.js +++ b/common/modules/settings.js @@ -58,7 +58,7 @@ async function handleToken (token) { return } const lists = viewer?.data?.Viewer?.mediaListOptions?.animeList?.customLists || [] - if (!lists.includes('Watched using Miru')) { + if (!lists.includes('Watched using Migu')) { await anilistClient.customList({ lists }) } localStorage.setItem('ALviewer', JSON.stringify({ token, viewer })) diff --git a/common/views/IspBlock.svelte b/common/views/IspBlock.svelte index 2af0146..5ca141f 100644 --- a/common/views/IspBlock.svelte +++ b/common/views/IspBlock.svelte @@ -24,7 +24,7 @@