Skip to content

Commit

Permalink
Merge branch 'release/1.77' into merogge/click
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge authored Apr 11, 2023
2 parents e2d46ee + ba360bf commit ce11640
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion extensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"description": "Dependencies shared by all extensions",
"dependencies": {
"typescript": "5.0.2"
"typescript": "5.0.4"
},
"scripts": {
"postinstall": "node ./postinstall.mjs"
Expand Down
8 changes: 4 additions & 4 deletions extensions/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,10 @@ to-regex-range@^5.0.1:
dependencies:
is-number "^7.0.0"

typescript@5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2.tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5"
integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==
typescript@5.0.4:
version "5.0.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b"
integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==

vscode-grammar-updater@^1.1.0:
version "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-oss-dev",
"version": "1.77.2",
"version": "1.77.3",
"distro": "9b27f67c15920833310305fce2d42cf2426f34ee",
"author": {
"name": "Microsoft Corporation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ export class GettingStartedPage extends EditorPane {
}
}));

this._register(this.gettingStartedService.onDidAddBuiltInWalkthrough(rerender));
this._register(this.gettingStartedService.onDidAddWalkthrough(rerender));
this._register(this.gettingStartedService.onDidRemoveWalkthrough(rerender));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export interface IWalkthroughsService {
readonly onDidRemoveWalkthrough: Event<string>;
readonly onDidChangeWalkthrough: Event<IResolvedWalkthrough>;
readonly onDidProgressStep: Event<IResolvedWalkthroughStep>;
readonly onDidAddBuiltInWalkthrough: Event<void>;

readonly installedExtensionsRegistered: Promise<void>;

Expand Down Expand Up @@ -134,6 +135,9 @@ export class WalkthroughsService extends Disposable implements IWalkthroughsServ
private readonly _onDidProgressStep = new Emitter<IResolvedWalkthroughStep>();
readonly onDidProgressStep: Event<IResolvedWalkthroughStep> = this._onDidProgressStep.event;

private readonly _onDidAddBuiltInWalkthrough = new Emitter<void>();
readonly onDidAddBuiltInWalkthrough: Event<void> = this._onDidAddBuiltInWalkthrough.event;

private memento: Memento;
private stepProgress: Record<string, StepProgress | undefined>;

Expand Down Expand Up @@ -255,6 +259,8 @@ export class WalkthroughsService extends Disposable implements IWalkthroughsServ
})
});
});

this._onDidAddBuiltInWalkthrough.fire();
}

private updateWalkthroughContent(walkthrough: BuiltinGettingStartedCategory, experimentTreatment: WalkthroughTreatment): BuiltinGettingStartedCategory {
Expand Down

0 comments on commit ce11640

Please sign in to comment.