Skip to content

Commit e104396

Browse files
committed
deploy: 23c910a
1 parent f274837 commit e104396

File tree

270 files changed

+2827
-313
lines changed

Some content is hidden

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

270 files changed

+2827
-313
lines changed

appConfig.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ window.AppConfig = {
2222
"extension_url": "https://extensions.phcode.dev/extensions/",
2323
"extension_store_url": "https://store.core.ai/src/",
2424
"linting.enabled_by_default": true,
25-
"build_timestamp": "2023-05-03T13:18:03.649Z",
25+
"build_timestamp": "2023-05-18T10:59:06.101Z",
2626
"googleAnalyticsID": "G-P4HJFPDB76",
2727
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
2828
"coreAnalyticsID": "phoenix",
@@ -32,8 +32,8 @@ window.AppConfig = {
3232
"bugsnagEnv": "development"
3333
},
3434
"name": "Phoenix",
35-
"version": "3.2.0-19272",
36-
"apiVersion": "3.2.0",
35+
"version": "3.2.1-19289",
36+
"apiVersion": "3.2.1",
3737
"homepage": "https://core.ai",
3838
"issues": {
3939
"url": "https://github.com/phcode-dev/phoenix/issues"

assets/default-project/en.zip

138 Bytes
Binary file not shown.

assets/default-project/en/Newly_added_features.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ We are continuously adding features every week to improve the life of web develo
77

88
Here's a list of top features recently added to Phoenix:
99

10+
## Restore Unsaved Files and Crash Recovery
11+
`Added on May,2023`
12+
13+
We're added enhanced auto-recovery features in phcode.
14+
This functionality ensures your work is safe even in the event of a crash or if the application is
15+
closed without saving edited files.
16+
17+
![image](https://github.com/phcode-dev/phoenix/assets/5336369/9cfd5720-947b-4f88-8dfa-cda940d912c6)
18+
1019
## Safari Support (Beta)
1120
`Added on May,2023`
1221

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.

cacheManifest.json

Lines changed: 133 additions & 129 deletions
Large diffs are not rendered by default.

command/KeyBindingManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ define(function (require, exports, module) {
820820
if (_enabled && _keyMap[key]) {
821821
Metrics.countEvent(Metrics.EVENT_TYPE.KEYBOARD, "shortcut", key);
822822
Metrics.countEvent(Metrics.EVENT_TYPE.KEYBOARD, "command", _keyMap[key].commandID);
823-
logger.leaveTrail("Keyboard shortcut: " + key + "command" + _keyMap[key].commandID);
823+
logger.leaveTrail("Keyboard shortcut: " + key + " command: " + _keyMap[key].commandID);
824824
// If there is a registered and enabled key event except the swallowed key events,
825825
// we always mark the event as processed and return true.
826826
// We don't want multiple behavior tied to the same key event. For Instance, in browser, if `ctrl-k`

0 commit comments

Comments
 (0)