diff --git a/.github/workflows/lint-extension.yml b/.github/workflows/lint-extension.yml
index f985748ad..de05e1577 100644
--- a/.github/workflows/lint-extension.yml
+++ b/.github/workflows/lint-extension.yml
@@ -13,7 +13,7 @@ on:
jobs:
check:
- if: github.repository == 'software-mansion/react-native-ide'
+ if: github.repository == 'software-mansion/radon-ide'
runs-on: ubuntu-latest
env:
WORKING_DIRECTORY: packages/vscode-extension
diff --git a/packages/docs/docs/development.md b/packages/docs/docs/development.md
index c989782b2..de204ef5b 100644
--- a/packages/docs/docs/development.md
+++ b/packages/docs/docs/development.md
@@ -22,7 +22,7 @@ In order to run the extension in development mode, follow the steps below:
### 1. Clone the repository
```bash
-git clone git@github.com:software-mansion/react-native-ide.git
+git clone git@github.com:software-mansion/radon-ide.git
```
### 2. Install NPM dependencies in `packages/vscode-extension` folder
@@ -36,7 +36,7 @@ npm install
### 3. Prepare simulator server build
Simulator server repository is not open sourced but we have a pre-build binaries published on the GitHub releases page.
-First, you need to navigate to the [releases page on GitHub](https://github.com/software-mansion/react-native-ide/releases), open the recent release, and download the sim-server file from "Assets" section (the filename contains a git hash for build consistency):
+First, you need to navigate to the [releases page on GitHub](https://github.com/software-mansion/radon-ide/releases), open the recent release, and download the sim-server file from "Assets" section (the filename contains a git hash for build consistency):
diff --git a/packages/docs/docs/installation.md b/packages/docs/docs/installation.md
index f1ab988e7..ec3435d34 100644
--- a/packages/docs/docs/installation.md
+++ b/packages/docs/docs/installation.md
@@ -23,7 +23,7 @@ In the Visual Studio Code:
## -sec-num- Installing the Radon IDE extension in [Cursor](https://cursor.sh/)
-Navigate to the [releases page on GitHub](https://github.com/software-mansion/react-native-ide/releases) and select the most recent release.
+Navigate to the [releases page on GitHub](https://github.com/software-mansion/radon-ide/releases) and select the most recent release.
From the "Assets" section, download the `.vsix` file:
diff --git a/packages/docs/docusaurus.config.js b/packages/docs/docusaurus.config.js
index 62619f5dc..47b2692b9 100644
--- a/packages/docs/docusaurus.config.js
+++ b/packages/docs/docusaurus.config.js
@@ -67,7 +67,7 @@ const config = {
position: "right",
},
{
- "href": "https://github.com/software-mansion/react-native-ide/",
+ "href": "https://github.com/software-mansion/radon-ide/",
"position": "right",
"className": "header-github",
"aria-label": "GitHub repository",
diff --git a/packages/docs/src/components/Sections/FAQ/index.tsx b/packages/docs/src/components/Sections/FAQ/index.tsx
index 10357a617..c2c93af45 100644
--- a/packages/docs/src/components/Sections/FAQ/index.tsx
+++ b/packages/docs/src/components/Sections/FAQ/index.tsx
@@ -36,7 +36,7 @@ const faqs = [
{
topic: "What's up with the code license for Radon IDE?",
answer: `TL;DR
-It's okay to modify the code to run in your project and to fix bugs. However, do not distribute the project on your own in any way or form besides our official channels.
This license will evolve as we move beyond the Beta period. You can read the full license here.`,
+It's okay to modify the code to run in your project and to fix bugs. However, do not distribute the project on your own in any way or form besides our official channels.
This license will evolve as we move beyond the Beta period. You can read the full license here.`,
},
{
topic: "Is WebStorm supported?",
diff --git a/packages/docs/src/pages/terms-of-use.mdx b/packages/docs/src/pages/terms-of-use.mdx
index 5822f1dbb..e1eede9fa 100644
--- a/packages/docs/src/pages/terms-of-use.mdx
+++ b/packages/docs/src/pages/terms-of-use.mdx
@@ -7,7 +7,7 @@
IMPORTANT! READ CAREFULLY:
-THESE TERMS APPLY TO THE SOFTWARE MANSION INTEGRATED DEVELOPMENT ENVIRONMENT TOOLS CALLED "SOFTWARE MANSION RADON IDE" (SUCH TOOLS, "EARLY ACCESS" PRODUCTS) WHICH CONSIST OF OPEN SOURCE SOFTWARE SUBJECT TO THE LICENSE AVAILABLE HERE: **https://github.com/software-mansion/react-native-ide/blob/main/LICENSE.txt**.
+THESE TERMS APPLY TO THE SOFTWARE MANSION INTEGRATED DEVELOPMENT ENVIRONMENT TOOLS CALLED "SOFTWARE MANSION RADON IDE" (SUCH TOOLS, "EARLY ACCESS" PRODUCTS) WHICH CONSIST OF OPEN SOURCE SOFTWARE SUBJECT TO THE LICENSE AVAILABLE HERE: **https://github.com/software-mansion/radon-ide/blob/main/LICENSE.txt**.
“Software Mansion” or “we” means: Software Mansion S.A., a joint stock company with its principal place of business at ul. Zabłocie 43b, 30-701 Kraków, Poland, entered in the register of businesses conducted by the District Court in Kraków for Kraków-Śródmieście, XI Commercial Division of the National Court Register with KRS number 0000961952, NIP 6793131302, REGON 364909814.
diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json
index e7d5b3525..e4efb635d 100644
--- a/packages/vscode-extension/package.json
+++ b/packages/vscode-extension/package.json
@@ -26,7 +26,7 @@
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
- "url": "https://github.com/software-mansion/react-native-ide"
+ "url": "https://github.com/software-mansion/radon-ide"
},
"main": "./dist/extension.js",
"contributes": {
diff --git a/packages/vscode-extension/scripts/build-sim-server.sh b/packages/vscode-extension/scripts/build-sim-server.sh
index 81476d447..7ce56f267 100755
--- a/packages/vscode-extension/scripts/build-sim-server.sh
+++ b/packages/vscode-extension/scripts/build-sim-server.sh
@@ -25,7 +25,7 @@ if [[ ! -f "$product_path" ]]; then
echo "Simulator server binary not found: $product_path"
echo ""
echo "Make sure to follow development setup instructions: https://ide.swmansion.com/docs/development"
- echo "You can download the binary from the releases page on GitHub: https://github.com/software-mansion/react-native-ide/releases"
+ echo "You can download the binary from the releases page on GitHub: https://github.com/software-mansion/radon-ide/releases"
exit 1
fi
diff --git a/packages/vscode-extension/src/utilities/utils.ts b/packages/vscode-extension/src/utilities/utils.ts
index b13582b19..a698b0cd5 100644
--- a/packages/vscode-extension/src/utilities/utils.ts
+++ b/packages/vscode-extension/src/utilities/utils.ts
@@ -64,9 +64,7 @@ export class Utils implements UtilsInterface {
}
async reportIssue() {
- env.openExternal(
- Uri.parse("https://github.com/software-mansion/react-native-ide/issues/new/choose")
- );
+ env.openExternal(Uri.parse("https://github.com/software-mansion/radon-ide/issues/new/choose"));
}
public async openFileAt(filePath: string, line0Based: number, column0Based: number) {