Skip to content
Merged
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
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250109.0",
"@github1s/vscode-web": "^0.28.1",
"@github1s/vscode-web": "^0.29.0",
"chokidar": "^4.0.3",
"clean-css": "^5.3.3",
"copy-webpack-plugin": "^14.0.0",
Expand Down
2 changes: 1 addition & 1 deletion vscode-web/.VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.131.0
1.132.0
4 changes: 2 additions & 2 deletions vscode-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vscode-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@github1s/vscode-web",
"version": "0.28.1",
"version": "0.29.0",
"description": "VS Code web for GitHub1s",
"author": "github1s",
"license": "MIT",
Expand Down
3 changes: 1 addition & 2 deletions vscode-web/scripts/.patch
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"src/vs/workbench/browser/parts/activitybar/activitybarPart.ts": "1c5075a0d54829eadbb19a214f9913558ddab03c3e088b2ec3590b49b2b8c460",
"src/vs/workbench/browser/parts/activitybar/activitybarPart.ts": "b1608b71d4ff7392a42d80a8a406a97913717bb6af7be703c90f73c3f4520253",
"src/vs/workbench/browser/parts/titlebar/media/titlebarpart.css": "8ffe6921a1c36709db7ed7f5eb705782f55e90acdc780c7722030b0f9e6d6fc5",
"src/vs/workbench/browser/web.main.ts": "180c4439bcb518402e34c9b8b154bcd204b4b2e47a3edf2b1c77c612a8ff2bf5",
"src/vs/workbench/contrib/files/browser/editors/fileEditorInput.ts": "e986095a30dbea54af56c25fa1b184b55f34f8914129b27e2f20d8c4ea9fd16b",
"src/vs/workbench/contrib/webview/browser/pre/index.html": "9f4a216e3c7abfa81d3afa9e215a36e935eb92b9193ae244cf80b1904d3fae0c",
"src/vs/workbench/services/extensionManagement/browser/builtinExtensionsScannerService.ts": "16fc1f8830432097a2de87ba04f9f11e930408df8f672bb7a4bbbe3c1a7c509d",
"src/vs/workbench/services/label/common/labelService.ts": "9e4e2aafeabc04ccf183b8f2f4ce8a4d39f240831e4005b06149684458caa8d4",
Expand Down
1 change: 0 additions & 1 deletion vscode-web/src/setup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ declare var _VSCODE_WEB: {
workspaceId?: string; // the identifier to distinguish workspace
workspaceLabel?: string; // the label shown on explorer
hideTextFileLabelDecorations?: boolean; // whether hide the readonly icon for readonly files
allowEditorLabelOverride?: boolean; // whether allow override editor label
// custom builtin extensions, types see IBundledExtension[]
builtinExtensions?: any[] | ((builtinExtensions: any[]) => any[]);
logo?: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ export class ActivitybarPart extends Part {
private updateCompactStyle(): void {
if (this.element) {
this.element.classList.toggle('compact', this._isCompact);
// Mirrored on the workbench root for floatingPanels.css
this.layoutService.mainContainer.classList.toggle('activitybar-compact', this._isCompact);
this.element.style.setProperty('--activity-bar-width', `${this.baseWidth}px`);
this.element.style.setProperty('--activity-bar-action-height', `${this.actionHeight}px`);
this.element.style.setProperty('--activity-bar-icon-size', `${this._isCompact ? ActivitybarPart.COMPACT_ICON_SIZE : ActivitybarPart.ICON_SIZE}px`);
Expand Down Expand Up @@ -394,7 +396,7 @@ export class ActivityBarCompositeBar extends PaneCompositeBar {
/* above codes are changed by github1s */

// Menubar: install a custom menu bar depending on configuration
this.menuBar.value = this._register(this.instantiationService.createInstance(CustomMenubarControl));
this.menuBar.value = this.instantiationService.createInstance(CustomMenubarControl);
this.menuBar.value.create(this.menuBarContainer);

}
Expand Down
Loading
Loading