Skip to content

Commit

Permalink
Fix branding/dist
Browse files Browse the repository at this point in the history
  • Loading branch information
giflw committed Oct 18, 2023
1 parent d814bbf commit 7d4162b
Show file tree
Hide file tree
Showing 15 changed files with 69 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,14 @@ spec:
withCredentials([string(credentialsId: "github-bot-token", variable: 'GITHUB_TOKEN')]) {
script {
signInstaller('exe', 'windows')
updateMetadata('TheiaBlueprint.exe', 'latest.yml', 'windows', 1200)
updateMetadata('EosThesisIDE.exe', 'latest.yml', 'windows', 1200)
}
}
}
container('jnlp') {
script {
uploadInstaller('windows')
copyInstallerAndUpdateLatestYml('windows', 'TheiaBlueprint', 'exe', 'latest.yml', '1.39.0,1.40.0,1.41.0')
copyInstallerAndUpdateLatestYml('windows', 'EosThesisIDE', 'exe', 'latest.yml', '1.39.0,1.40.0,1.41.0')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<br/>
<div id="theia-logo" align="center">
<br />
<img src="https://raw.githubusercontent.com/eclipse-theia/theia-blueprint/master/theia-extensions/product/src/browser/icons/TheiaBlueprintLogo-blue.png" alt="Theia Logo" width="300"/>
<img src="https://raw.githubusercontent.com/eclipse-theia/theia-blueprint/master/theia-extensions/product/src/browser/icons/EosThesisIDELogo-black.png" alt="Theia Logo" width="300"/>
<h3>Eclipse Theia Blueprint</h3>
</div>

Expand Down
20 changes: 10 additions & 10 deletions applications/electron/electron-builder.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
appId: eclipse.theia
productName: TheiaBlueprint
copyright: Copyright © 2020-2023 Eclipse Foundation, Inc
appId: giflw.eos-thesis
productName: EosThesisIDE
copyright: © 2020-2023 GIFLW
electronDist: ../../node_modules/electron/dist
electronVersion: 23.3.13
# Although it is generally not recommended to disable asar, it is required for Theia.
Expand All @@ -27,12 +27,12 @@ extraResources:
to: app/plugins

win:
icon: resources/icons/WindowsLauncherIcon/TheiaBluePrint.ico
icon: resources/icons/WindowsLauncherIcon/EosThesisIDE.ico
target:
- nsis
publish:
provider: generic
url: "https://download.eclipse.org/theia/${version}/windows"
url: "https://github.com/giflw/eos-thesis-ide/releases/tag/1.40.0-1/${version}"
useMultipleRangeRequest: false
mac:
icon: resources/icons/MacLauncherIcon/512-512-2.icns
Expand All @@ -43,7 +43,7 @@ mac:
- zip
publish:
provider: generic
url: "https://download.eclipse.org/theia/latest/macos"
url: "https://github.com/giflw/eos-thesis-ide/releases/tag/1.40.0-1/${version}"
linux:
icon: resources/icons/LinuxLauncherIcon/512-512.png
category: Development
Expand All @@ -53,15 +53,15 @@ linux:
- AppImage
publish:
provider: generic
url: "https://download.eclipse.org/theia/latest/linux"
url: "https://github.com/giflw/eos-thesis-ide/releases/tag/1.40.0-1/${version}"

nsis:
menuCategory: true
oneClick: false
perMachine: false
installerHeaderIcon: resources/icons/WindowsLauncherIcon/TheiaBluePrint.ico
installerIcon: resources/icons/WindowsLauncherIcon/TheiaBluePrint.ico
uninstallerIcon: resources/icons/WindowsLauncherIcon/TheiaBluePrint.ico
installerHeaderIcon: resources/icons/WindowsLauncherIcon/EosThesisIDE.ico
installerIcon: resources/icons/WindowsLauncherIcon/EosThesisIDE.ico
uninstallerIcon: resources/icons/WindowsLauncherIcon/EosThesisIDE.ico
installerSidebar: resources/icons/InstallerSidebarImage/164-314Windows.bmp
uninstallerSidebar: resources/icons/InstallerSidebarImage/164-314Windows.bmp
allowToChangeInstallationDirectory: true
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion applications/electron/scripts/update-blockmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import * as path from 'path';
const BLOCK_MAP_FILE_SUFFIX = '.blockmap';

const argv = yargs(hideBin(process.argv))
.option('executable', { alias: 'e', type: 'string', default: 'TheiaBlueprint.exe', description: 'The executable for which the blockmap needs to be updated' })
.option('executable', { alias: 'e', type: 'string', default: 'EosThesisIDE.exe', description: 'The executable for which the blockmap needs to be updated' })
.version(false)
.wrap(120)
.parseSync();
Expand Down
2 changes: 1 addition & 1 deletion applications/electron/scripts/update-checksum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { hideBin } from 'yargs/helpers';
import yargs from 'yargs/yargs';

const argv = yargs(hideBin(process.argv))
.option('executable', { alias: 'e', type: 'string', default: 'TheiaBlueprint.AppImage', description: 'The executable for which the checksum needs to be updated' })
.option('executable', { alias: 'e', type: 'string', default: 'EosThesisIDE.AppImage', description: 'The executable for which the checksum needs to be updated' })
.option('yaml', { alias: 'y', type: 'string', default: 'latest-linux.yml', description: 'The yaml file where the checksum needs to be updated' })
.option('platform', { alias: 'p', type: 'string', default: 'linux', description: 'The OS platform' })
.version(false)
Expand Down
6 changes: 3 additions & 3 deletions applications/electron/test/app.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ function getBinaryPath() {
return path.join(
distFolder,
'win-unpacked',
'TheiaBlueprint.exe'
'EosThesisIDE.exe'
);
case 'darwin':
return path.join(
distFolder,
'mac',
'TheiaBlueprint.app',
'EosThesisIDE.app',
'Contents',
'MacOS',
'TheiaBlueprint'
'EosThesisIDE'
);
default:
return undefined;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7d4162b

Please sign in to comment.