Update icons for ipynb and code-workspace file associations on Windows#293037
Merged
Update icons for ipynb and code-workspace file associations on Windows#293037
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Windows file association icons for .ipynb (Jupyter Notebook) and .code-workspace files to use more appropriate icons instead of the generic default icon. The changes address issue #105681 where .ipynb files were displaying a blank icon.
Changes:
- Updated
.ipynbfiles to use the Python icon (python.ico) instead of the default icon - Updated
.code-workspacefiles to use the primary VS Code icon (code.ico) instead of the default icon - Added
code.icoto the Windows packaging build script to ensure it's included in the installer
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| build/win32/code.iss | Updated DefaultIcon registry entries for .code-workspace and .ipynb file associations to use code.ico and python.ico respectively |
| build/gulpfile.vscode.ts | Added code.ico to the list of Windows icon files to be included in the package |
deepak1556
approved these changes
Feb 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #105681
Most icons we have are already included and work as expected.
Updated ipynb extension to use python icon.
Updated code-workspace extension to use primary VS Code icon.