Skip to content

Commit 17278bb

Browse files
committed
deploy: 606b7d0
1 parent 9572f2f commit 17278bb

File tree

94 files changed

+2184
-1822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+2184
-1822
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ window.AppConfig = {
2424
"app_notification_url": "assets/notifications/dev/",
2525
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2626
"linting.enabled_by_default": true,
27-
"build_timestamp": "2024-05-20T15:07:35.744Z",
27+
"build_timestamp": "2024-05-21T10:33:30.172Z",
2828
"googleAnalyticsID": "G-P4HJFPDB76",
2929
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3030
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -36,7 +36,7 @@ window.AppConfig = {
3636
"bugsnagEnv": "development"
3737
},
3838
"name": "Phoenix Code",
39-
"version": "3.7.3-20299",
39+
"version": "3.7.3-20303",
4040
"apiVersion": "3.7.3",
4141
"homepage": "https://core.ai",
4242
"issues": {

assets/default-project/en.zip

0 Bytes
Binary file not shown.

assets/new-project/assets/js/code-editor.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,17 @@ function initCodeEditor() {
214214
};
215215
document.getElementById("exploreBtn").onclick = function() {
216216
Metrics.countEvent(Metrics.EVENT_TYPE.NEW_PROJECT, "main.Click", "games");
217-
openProject(newProjectExtension.getExploreProjectPath());
217+
newProjectExtension.setupExploreProject()
218+
.then(()=>{
219+
openProject(newProjectExtension.getExploreProjectPath());
220+
}).catch(console.error);
218221
};
219222
document.getElementById("defaultProjectButton").onclick = function() {
220223
Metrics.countEvent(Metrics.EVENT_TYPE.NEW_PROJECT, "main.Click", "default-project");
221-
openProject(newProjectExtension.getWelcomeProjectPath());
224+
newProjectExtension.setupStartupProject()
225+
.then(()=>{
226+
openProject(newProjectExtension.getWelcomeProjectPath());
227+
}).catch(console.error);
222228
};
223229

224230
const banner = document.getElementById("download-phcode-banner");

assets/sample-projects/HTML5.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

assets/sample-projects/explore.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

brackets-min.js

Lines changed: 242 additions & 187 deletions
Large diffs are not rendered by default.

brackets.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -426,11 +426,7 @@ define(function (require, exports, module) {
426426
}
427427

428428
// Browser-hosted version may also have different CSS (e.g. since '#titlebar' is shown)
429-
if (brackets.inBrowser) {
430-
$body.addClass("in-browser");
431-
} else {
432-
$body.addClass("in-appshell");
433-
}
429+
$body.addClass("in-appshell");
434430

435431
$('#toolbar-extension-manager').prop('title', Strings.EXTENSION_MANAGER_TITLE);
436432
$('#update-notification').prop('title', Strings.UPDATE_NOTIFICATION_TOOLTIP);

0 commit comments

Comments
 (0)