s/blueprint/parrot/, update urls etc

nomaster
Jeff Moe 2023-11-12 10:53:58 -07:00
parent 3a7d86feff
commit efc6ff97f7
7 changed files with 51 additions and 51 deletions

View File

@ -1,18 +1,18 @@
{
"private": true,
"name": "blueprint-browser-app",
"description": "Eclipse Theia blueprint browser product",
"productName": "Theia Blueprint",
"name": "parrot-browser-app",
"description": "Parrot browser app",
"productName": "Parrot",
"version": "1.43.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Eclipse Theia <theia-dev@eclipse.org>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
"license": "GPL-3.0-or-later",
"author": "Jeff Moe <moe@parrot.codes>",
"homepage": "https://parrot.codes",
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
"url": "https://spacecruft.org/deepcrayon/parrot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-theia/theia-blueprint.git"
"url": "git+https://spacecruft.org/deepcrayon/parrot.git"
},
"engines": {
"yarn": ">=1.7.0 <2",
@ -21,7 +21,7 @@
"theia": {
"frontend": {
"config": {
"applicationName": "Theia Blueprint",
"applicationName": "Parrot",
"warnOnPotentiallyInsecureHostPattern": false,
"preferences": {
"toolbar.showToolbar": true,
@ -84,7 +84,7 @@
"@theia/vsx-registry": "1.43.0",
"@theia/workspace": "1.43.0",
"fs-extra": "^9.0.1",
"blueprint-product-ext": "1.43.0"
"parrot-product-ext": "1.43.0"
},
"devDependencies": {
"@theia/cli": "1.43.0"

View File

@ -1,6 +1,6 @@
appId: eclipse.theia
productName: TheiaBlueprint
copyright: Copyright © 2020-2023 Eclipse Foundation, Inc
appId: eclipse.parrot
productName: Parrot
copyright: Copyright © 2023 Jeff Moe
electronDist: ../../node_modules/electron/dist
electronVersion: 23.3.13
# Although it is generally not recommended to disable asar, it is required for Theia.
@ -32,7 +32,7 @@ win:
- nsis
publish:
provider: generic
url: "https://download.eclipse.org/theia/${version}/windows"
url: "https://spacecruft.org/deepcrayon/parrot/releases"
useMultipleRangeRequest: false
mac:
icon: resources/icons/MacLauncherIcon/512-512-2.icns
@ -43,7 +43,7 @@ mac:
- zip
publish:
provider: generic
url: "https://download.eclipse.org/theia/latest/macos"
url: "https://spacecruft.org/deepcrayon/parrot/releases"
linux:
icon: resources/icons/LinuxLauncherIcon/512-512.png
category: Development
@ -53,7 +53,7 @@ linux:
- AppImage
publish:
provider: generic
url: "https://download.eclipse.org/theia/latest/linux"
url: "https://spacecruft.org/deepcrayon/parrot/releases"
nsis:
menuCategory: true

View File

@ -1,19 +1,19 @@
{
"private": true,
"name": "blueprint-electron-app",
"description": "Eclipse Theia blueprint product",
"productName": "Theia Blueprint",
"name": "parrot-electron-app",
"description": "Parrot electron app",
"productName": "Parrot",
"version": "1.43.0",
"main": "scripts/theia-electron-main.js",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Eclipse Theia <theia-dev@eclipse.org>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
"license": "GPL-3.0-or-later",
"author": "Jeff Moe <moe@parrot.codes>",
"homepage": "https://parrot.codes",
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
"url": "https://spacecruft.org/deepcrayon/parrot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-theia/theia-blueprint.git"
"url": "git+https://spacecruft.org/deepcrayon/parrot.git"
},
"engines": {
"yarn": ">=1.7.0 <2",
@ -23,7 +23,7 @@
"target": "electron",
"frontend": {
"config": {
"applicationName": "Theia Blueprint",
"applicationName": "Parrot",
"preferences": {
"toolbar.showToolbar": true,
"security.workspace.trust.enabled": false
@ -87,9 +87,9 @@
"@theia/vsx-registry": "1.43.0",
"@theia/workspace": "1.43.0",
"fs-extra": "^9.0.1",
"blueprint-updater-ext": "1.43.0",
"blueprint-product-ext": "1.43.0",
"blueprint-launcher-ext": "1.43.0"
"parrot-updater-ext": "1.43.0",
"parrot-product-ext": "1.43.0",
"parrot-launcher-ext": "1.43.0"
},
"devDependencies": {
"@theia/cli": "1.43.0",

View File

@ -36,13 +36,13 @@
"clean": "lerna run clean && rimraf node_modules",
"build": "yarn build:extensions && yarn build:applications",
"build:dev": "yarn build:extensions && yarn build:applications:dev",
"build:applications": "yarn build:extensions && lerna run --scope=\"blueprint*app\" build:prod --concurrency 1",
"build:applications:dev": "yarn build:extensions && lerna run --scope=\"blueprint*app\" build --concurrency 1",
"build:extensions": "lerna run --scope=\"blueprint*ext\" build",
"build:applications": "yarn build:extensions && lerna run --scope=\"parrot*app\" build:prod --concurrency 1",
"build:applications:dev": "yarn build:extensions && lerna run --scope=\"parrot*app\" build --concurrency 1",
"build:extensions": "lerna run --scope=\"parrot*ext\" build",
"download:plugins": "theia download:plugins --rate-limit=15 --parallel=false --ignore-errors",
"package:applications": "lerna run --scope=\"blueprint*app\" package --concurrency 1",
"package:applications:preview": "lerna run --scope=\"blueprint*app\" package:preview --concurrency 1",
"package:applications:prod": "lerna run --scope=\"blueprint*app\" package:prod --concurrency 1",
"package:applications": "lerna run --scope=\"parrot*app\" package --concurrency 1",
"package:applications:preview": "lerna run --scope=\"parrot*app\" package:preview --concurrency 1",
"package:applications:prod": "lerna run --scope=\"parrot*app\" package:prod --concurrency 1",
"watch": "lerna run --parallel watch",
"test": "lerna run test",
"electron": "yarn --cwd applications/electron",

View File

@ -1,18 +1,18 @@
{
"name": "blueprint-launcher-ext",
"name": "parrot-launcher-ext",
"version": "1.43.0",
"keywords": [
"theia-extension"
],
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia-blueprint.git"
"url": "https://spacecruft.org/deepcrayon/parrot.git"
},
"bugs": {
"url": "https://github.com/eclipse-theia/theia-blueprint/issues"
"url": "https://spacecruft.org/deepcrayon/parrot/issues"
},
"homepage": "https://github.com/eclipse-theia/theia-blueprint",
"homepage": "https://parrot.codes",
"files": [
"lib",
"src"

View File

@ -1,8 +1,8 @@
{
"private": true,
"name": "blueprint-product-ext",
"name": "parrot-product-ext",
"version": "1.43.0",
"description": "Eclipse Theia Blueprint Product Branding",
"description": "Parrot Libre AI",
"dependencies": {
"@theia/core": "1.43.0",
"@theia/getting-started": "1.43.0",
@ -25,15 +25,15 @@
"keywords": [
"theia-extension"
],
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia-blueprint.git"
"url": "https://spacecruft.org/deepcrayon/parrot.git"
},
"bugs": {
"url": "https://github.com/eclipse-theia/theia-blueprint/issues"
"url": "https://spacecruft.org/deepcrayon/parrot/issues"
},
"homepage": "https://github.com/eclipse-theia/theia-blueprint",
"homepage": "https://parrot.codes",
"files": [
"lib",
"src"

View File

@ -1,8 +1,8 @@
{
"private": true,
"name": "blueprint-updater-ext",
"name": "parrot-updater-ext",
"version": "1.43.0",
"description": "Eclipse Theia Blueprint Updater",
"description": "Parrot Updater",
"dependencies": {
"@theia/core": "1.43.0",
"@theia/output": "1.43.0",
@ -26,15 +26,15 @@
"keywords": [
"theia-extension"
],
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia-blueprint.git"
"url": "https://spacecruft.org/deepcrayon/parrot.git"
},
"bugs": {
"url": "https://github.com/eclipse-theia/theia-blueprint/issues"
"url": "https://spacecruft.org/deepcrayon/parrot/issues"
},
"homepage": "https://github.com/eclipse-theia/theia-blueprint",
"homepage": "https://parrot.codes",
"files": [
"lib",
"src"