Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Stable8.5] Port time machine to arcade stable #10184

Open
wants to merge 3 commits into
base: stable8.5
Choose a base branch
from
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
4 changes: 4 additions & 0 deletions localtypings/pxtarget.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,10 @@ declare namespace pxt {
songEditor?: boolean; // enable the song asset type and field editor
multiplayer?: boolean; // enable multiplayer features
shareToKiosk?: boolean; // enable sharing to a kiosk
timeMachine?: boolean;
timeMachineQueryParams?: string[]; // An array of query params to pass to timemachine iframe embed
timeMachineDiffInterval?: number; // An interval in milliseconds at which to take diffs to store in project history. Defaults to 5 minutes
timeMachineSnapshotInterval?: number; // An interval in milliseconds at which to take full project snapshots in project history. Defaults to 15 minutes
}

interface DownloadDialogTheme {
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@
"@fortawesome/fontawesome-free": "^5.15.4",
"@microsoft/applicationinsights-web": "^2.8.11",
"@microsoft/immersive-reader-sdk": "1.1.0",
"@types/diff-match-patch": "^1.0.36",
"@zip.js/zip.js": "2.4.20",
"browserify": "16.2.3",
"chai": "^3.5.0",
"cssnano": "4.1.10",
"dashjs": "^4.4.0",
"diff-match-patch": "^1.0.5",
"dompurify": "2.0.17",
"faye-websocket": "0.11.1",
"karma": "6.3.10",
Expand Down
1 change: 1 addition & 0 deletions pxteditor/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ namespace pxt.editor {
showLanguagePicker(): void;
showShareDialog(title?: string, forMultiplayer?: boolean): void;
showAboutDialog(): void;
showTurnBackTimeDialogAsync(): Promise<void>;

showLoginDialog(continuationHash?: string): void;
showProfileDialog(location?: string): void;
Expand Down
Loading
Loading