chore: replace org URLs and LICENSE links#679
Conversation
Changes: - Replaced 24 occurrence(s) of TensoRaws with EutropicAI - Converted LICENSE links: blob=1, raw=0 Reason: organization rename + prefer stable relative license links.
There was a problem hiding this comment.
Summary of Changes
Hello @NULL204, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
This pull request systematically updates references to the organization's GitHub presence and related projects across the codebase. The primary goal is to ensure all links and URLs reflect the new organizational identity and to improve the robustness of internal links by converting absolute paths to relative ones where appropriate.
Highlights
- Organization URL Updates: All explicit organization URLs across various files have been updated from "TensoRaws" to "EutropicAI" to reflect a change in the organization's name.
- Relative LICENSE Link: The absolute link to the LICENSE file in
README.mdhas been converted to a relative path, improving portability and maintainability.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Code Review
This pull request correctly updates the organization URLs from TensoRaws to EutropicAI and changes the LICENSE link to a relative path. The changes are consistent across all modified files. I've added a couple of suggestions to improve maintainability by extracting repeated base URLs into constants, which should make future updates easier.
| 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', | ||
| } |
There was a problem hiding this comment.
To improve maintainability and avoid repetition, consider extracting the base URL for the core downloads into constants. This will make it easier to update the release version or organization URL in the future.
| 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', | |
| } | |
| const releaseTag = '2025-08-15'; | |
| const baseUrl = `https://github.com/EutropicAI/Final2x-core/releases/download/${releaseTag}`; | |
| const coreDict = { | |
| 'macos-arm64': `${baseUrl}/Final2x-core-macos-arm64.7z`, | |
| 'windows-x64': `${baseUrl}/Final2x-core-windows-x64.7z` | |
| }; |
| class openWebsite { | ||
| static async FinalRip(): Promise<void> { | ||
| window.open('https://github.com/TensoRaws/FinalRip', '_blank') | ||
| window.open('https://github.com/EutropicAI/FinalRip', '_blank') | ||
| } | ||
|
|
||
| static async VSET(): Promise<void> { | ||
| window.open('https://github.com/TensoRaws/VSET', '_blank') | ||
| window.open('https://github.com/EutropicAI/VSET', '_blank') | ||
| } | ||
| } |
There was a problem hiding this comment.
To improve maintainability, you could define the base GitHub organization URL as a constant. This avoids repeating the URL and makes it easier to update if the organization name changes again in the future.
const GITHUB_ORG_URL = 'https://github.com/EutropicAI';
class openWebsite {
static async FinalRip(): Promise<void> {
window.open(`${GITHUB_ORG_URL}/FinalRip`, '_blank');
}
static async VSET(): Promise<void> {
window.open(`${GITHUB_ORG_URL}/VSET`, '_blank');
}
}
This PR updates explicit org URLs and converts absolute LICENSE links to relative form.
Org URL replacements: 24
LICENSE link conversions (blob): 1
LICENSE link conversions (raw): 0
Old base: TensoRaws
New base: EutropicAI
Relative ./LICENSE links stay correct if branches or hosts change.