Skip to content

Commit

Permalink
Merge pull request #51 from SRVFI-Raws/main
Browse files Browse the repository at this point in the history
Update Final2x-core, Support RGBA image!
  • Loading branch information
DamnCrab authored Jul 13, 2023
2 parents f42e91b + c85db99 commit e188837
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: "\U0001F41B Bug report | 错误报告 | BUG報告"
about: Create a report to help us improve
title: "[BUG]"
labels: bug
assignees: DamnCrab, HychaoWang, Tohrusky, Face1essboy, NangInShell
assignees: DamnCrab, HychaoWang, Tohrusky, Face1essboy

---

### Describe the bug | 描述错误 | BUGの説明
A clear and concise description of what the bug is.

### To reproduce | 复现步骤 | 再現方法
### To reproduce | 复现步骤 | 再現方法
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "\U0001F680 Feature request | 功能请求 | フィーチャーリクエ
about: Suggest an idea for this project
title: "[FEATURE]"
labels: enhancement
assignees: DamnCrab, HychaoWang, Tohrusky, Face1essboy, NangInShell
assignees: DamnCrab, HychaoWang, Tohrusky, Face1essboy

---

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/CI-Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Download Final2x-core and unzip
run: |
cd .\resources
Invoke-WebRequest -Uri https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-windows-latest.zip -OutFile Final2x-core.zip
Invoke-WebRequest -Uri https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-windows-latest.zip -OutFile Final2x-core.zip
7z x Final2x-core.zip -oFinal2x-core
del .\Final2x-core.zip
Expand Down Expand Up @@ -95,14 +95,14 @@ jobs:
if: matrix.os-version == 'x64'
run: |
cd ./resources
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-macos-latest.zip -O Final2x-core.zip
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-macos-latest.zip -O Final2x-core.zip
- name: Download Final2x-core arm64
if: matrix.os-version == 'arm64'
run: |
cd ./resources
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-macos-arm64.zip -O Final2x-core.zip
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-macos-arm64.zip -O Final2x-core.zip
- name: Unzip Final2x-core
run: |
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: Download Final2x-core and unzip
run: |
cd ./resources
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-ubuntu-20.04.zip -O Final2x-core.zip
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-ubuntu-20.04.zip -O Final2x-core.zip
unzip -d ./Final2x-core Final2x-core.zip
rm Final2x-core.zip
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Download Final2x-core and unzip
run: |
cd .\resources
Invoke-WebRequest -Uri https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-windows-latest.zip -OutFile Final2x-core.zip
Invoke-WebRequest -Uri https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-windows-latest.zip -OutFile Final2x-core.zip
7z x Final2x-core.zip -oFinal2x-core
del .\Final2x-core.zip
Expand Down Expand Up @@ -99,13 +99,13 @@ jobs:
if: matrix.os-version == 'x64'
run: |
cd ./resources
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-macos-latest.zip -O Final2x-core.zip
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-macos-latest.zip -O Final2x-core.zip
- name: Download Final2x-core arm64
if: matrix.os-version == 'arm64'
run: |
cd ./resources
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-macos-arm64.zip -O Final2x-core.zip
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-macos-arm64.zip -O Final2x-core.zip
- name: Unzip Final2x-core
run: |
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Download Final2x-core and unzip
run: |
cd ./resources
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-08/Final2x-core-ubuntu-20.04.zip -O Final2x-core.zip
wget https://github.com/Tohrusky/Final2x-core/releases/download/2023-07-12/Final2x-core-ubuntu-20.04.zip -O Final2x-core.zip
unzip -d ./Final2x-core Final2x-core.zip
rm Final2x-core.zip
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Final2x",
"productName": "Final2x",
"version": "1.0.2",
"version": "1.1.0",
"description": "A cross-platform image super-resolution tool.",
"main": "./out/main/index.js",
"author": "Tohrusky",
Expand Down

0 comments on commit e188837

Please sign in to comment.