Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
## [Unreleased]

* Fix an issue where opening up git worktree doesn't show any git info on the editor
* Add a branded sidebar image to the Windows installer and improve icon

## 1.132.1

* Fix an issue where missing theme variables prevented the project window from initializing.
Expand Down
Binary file modified resources/app-icons/beta-next.ico
Binary file not shown.
Binary file modified resources/app-icons/beta-next.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/app-icons/beta.ico
Binary file not shown.
Binary file modified resources/app-icons/beta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed resources/win/folder.ico
Binary file not shown.
Binary file added resources/win/installerSidebar-next.bmp
Binary file not shown.
Binary file added resources/win/installerSidebar.bmp
Binary file not shown.
Binary file removed resources/win/loading.gif
Binary file not shown.
9 changes: 0 additions & 9 deletions resources/win/pulsar.visualElementsManifest.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions script/electron-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ const ICONS = {
svg: `resources/app-icons/${iconName}.svg`,
icns: `resources/app-icons/${iconName}.icns`
};
const WINDOWS_INSTALLER_SIDEBAR = ARGS.next
? 'resources/win/installerSidebar-next.bmp'
: 'resources/win/installerSidebar.bmp';


let options = {
Expand Down Expand Up @@ -387,6 +390,7 @@ let options = {
runAfterFinish: true,
createDesktopShortcut: true,
createStartMenuShortcut: true,
installerSidebar: WINDOWS_INSTALLER_SIDEBAR,
guid: "0949b555-c22c-56b7-873a-a960bdefa81f",
// The GUID is generated from Electron-Builder based on our AppID.
// Hardcoding it here means it will always be used as generated from the
Expand Down
9 changes: 1 addition & 8 deletions src/reopen-project-menu-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,7 @@ module.exports = class ReopenProjectMenuManager {
.join(', '),
description: ReopenProjectMenuManager.taskDescription(project.paths),
program: process.execPath,
args: project.paths.map(path => `"${path}"`).join(' '),
iconPath: path.join(
path.dirname(process.execPath),
'resources',
'cli',
'folder.ico'
),
iconIndex: 0
args: project.paths.map(path => `"${path}"`).join(' ')
}))
},
{ type: 'recent' },
Expand Down
Loading