diff --git a/README.md b/README.md
index 1debb2c1..2b7c7675 100644
--- a/README.md
+++ b/README.md
@@ -7,17 +7,17 @@



-[](https://github.com/TensoRaws/Final2x/actions/workflows/CI-test.yml)
-[](https://github.com/TensoRaws/Final2x/actions/workflows/CI-build.yml)
-[](https://github.com/TensoRaws/Final2x/actions/workflows/Release.yml)
+[](https://github.com/EutropicAI/Final2x/actions/workflows/CI-test.yml)
+[](https://github.com/EutropicAI/Final2x/actions/workflows/CI-build.yml)
+[](https://github.com/EutropicAI/Final2x/actions/workflows/Release.yml)


A cross-platform image super-resolution tool.
-- News🎉: Enhance a video? Try [VSET](https://github.com/TensoRaws/VSET)!
+- News🎉: Enhance a video? Try [VSET](https://github.com/EutropicAI/VSET)!
- News🎉: Final2x v3.0.0 is now available, support Nvidia 50 series GPUs now!
-- News🎉: We are thrilled to announce the release of Final2x v2.0.0, which marks a major milestone as we transition to utilizing [ccrestoration](https://github.com/TensoRaws/ccrestoration) (PyTorch) for our algorithm implementation.
+- News🎉: We are thrilled to announce the release of Final2x v2.0.0, which marks a major milestone as we transition to utilizing [ccrestoration](https://github.com/EutropicAI/ccrestoration) (PyTorch) for our algorithm implementation.
### Screenshots
@@ -28,7 +28,7 @@ A cross-platform image super-resolution tool.
### Installation
-##### [Download the latest release from here.](https://github.com/TensoRaws/Final2x/releases)
+##### [Download the latest release from here.](https://github.com/EutropicAI/Final2x/releases)
#### Windows
@@ -66,8 +66,8 @@ apt install -y libomp5 xdg-utils
The following references were referenced in the development of this project:
-- [Final2x-core](https://github.com/TensoRaws/Final2x-core)
-- [ccrestoration](https://github.com/TensoRaws/ccrestoration)
+- [Final2x-core](https://github.com/EutropicAI/Final2x-core)
+- [ccrestoration](https://github.com/EutropicAI/ccrestoration)
- [PyTorch](https://github.com/pytorch/pytorch)
- [ncnn](https://github.com/Tencent/ncnn)
- [naive-ui](https://github.com/tusen-ai/naive-ui)
@@ -76,7 +76,7 @@ The following references were referenced in the development of this project:
### License
This project is licensed under the BSD 3-Clause - see
-the [LICENSE file](https://github.com/TensoRaws/Final2x/blob/main/LICENSE) for details.
+the [LICENSE file](./LICENSE) for details.
### Acknowledgements
@@ -84,8 +84,8 @@ Feel free to reach out to the project maintainers with any questions or concerns
-
-
-
+
+
+
diff --git a/package.json b/package.json
index 1a34e919..e7b12229 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"version": "3.0.0",
"description": "A cross-platform image super-resolution tool.",
"author": "Tohrusky",
- "homepage": "https://github.com/TensoRaws/Final2x",
+ "homepage": "https://github.com/EutropicAI/Final2x",
"main": "./out/main/index.js",
"engines": {
"node": ">=18",
diff --git a/resources/download-core.js b/resources/download-core.js
index 5502b996..8a185be0 100644
--- a/resources/download-core.js
+++ b/resources/download-core.js
@@ -1,4 +1,4 @@
-// download Final2x-core from https://github.com/TensoRaws/Final2x-core/releases
+// download Final2x-core from https://github.com/EutropicAI/Final2x-core/releases
// and put it in resources folder
const fetch = (...args) => import('node-fetch').then(({ default: fetch }) => fetch(...args))
@@ -9,9 +9,9 @@ const path = require('node:path')
const coreDict = {
'macos-arm64':
- 'https://github.com/TensoRaws/Final2x-core/releases/download/2025-08-15/Final2x-core-macos-arm64.7z',
+ 'https://github.com/EutropicAI/Final2x-core/releases/download/2025-08-15/Final2x-core-macos-arm64.7z',
'windows-x64':
- 'https://github.com/TensoRaws/Final2x-core/releases/download/2025-08-15/Final2x-core-windows-x64.7z',
+ 'https://github.com/EutropicAI/Final2x-core/releases/download/2025-08-15/Final2x-core-windows-x64.7z',
}
console.log('-'.repeat(50))
diff --git a/src/renderer/src/components/MyExternalLink.vue b/src/renderer/src/components/MyExternalLink.vue
index 47e48853..dc63a9a5 100644
--- a/src/renderer/src/components/MyExternalLink.vue
+++ b/src/renderer/src/components/MyExternalLink.vue
@@ -3,11 +3,11 @@ import { FilmOutline } from '@vicons/ionicons5'
class openWebsite {
static async FinalRip(): Promise {
- window.open('https://github.com/TensoRaws/FinalRip', '_blank')
+ window.open('https://github.com/EutropicAI/FinalRip', '_blank')
}
static async VSET(): Promise {
- window.open('https://github.com/TensoRaws/VSET', '_blank')
+ window.open('https://github.com/EutropicAI/VSET', '_blank')
}
}