Skip to content

Commit 7c8c07e

Browse files
committed
deploy: cd657c3
1 parent 055e231 commit 7c8c07e

Some content is hidden

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

69 files changed

+148
-116
lines changed

LiveDevelopment/BrowserScripts/LiveDevProtocolRemote.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LiveDevelopment/BrowserScripts/RemoteFunctions.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,9 @@ function RemoteFunctions(config = {}) {
601601
if(!LivePreviewView.isElementInspectable(element) || element.nodeType !== Node.ELEMENT_NODE) {
602602
return false;
603603
}
604+
if(element && element.closest('.phcode-no-lp-edit')) {
605+
return false;
606+
}
604607

605608
// if _hoverHighlight is uninitialized, initialize it
606609
if (!_hoverHighlight && shouldShowHighlightOnHover()) {
@@ -741,6 +744,9 @@ function RemoteFunctions(config = {}) {
741744
* @param {Event} event - The click event
742745
*/
743746
function handleElementClick(element, event) {
747+
if(element && element.closest('.phcode-no-lp-edit')) {
748+
return;
749+
}
744750
if (!LivePreviewView.isElementInspectable(element)) {
745751
dismissUIAndCleanupState();
746752
return;

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ window.AppConfig = {
3535
"app_update_url": "https://updates.phcode.io/tauri/update-latest-pre-release.json",
3636
"extensionTakedownURL": "https://updates.phcode.io/extension_takedown.json",
3737
"linting.enabled_by_default": true,
38-
"build_timestamp": "2026-01-07T03:46:48.320Z",
38+
"build_timestamp": "2026-01-07T04:48:58.625Z",
3939
"googleAnalyticsID": "G-FP5S9BKDSJ",
4040
"googleAnalyticsIDDesktop": "G-D5R1Y6PTS8",
4141
"mixPanelID": "a7e08ffd43c37767c29b13df1d2e6c62",
@@ -47,7 +47,7 @@ window.AppConfig = {
4747
"bugsnagEnv": "staging"
4848
},
4949
"name": "Phoenix Code",
50-
"version": "5.0.0-21865",
50+
"version": "5.0.0-21867",
5151
"apiVersion": "5.0.0",
5252
"homepage": "https://core.ai",
5353
"issues": {

assets/default-project/en.zip

170 Bytes
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Loading

assets/default-project/en/index.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ <h1>Phoenix Code</h1>
2626
title="Phoenix Code on YouTube"
2727
style="max-width: 320px" />
2828
</a>
29-
<svg class="play-button" viewBox="0 0 200 200" alt="Play video">
30-
<circle cx="100" cy="100" r="90" fill="#333" fill-opacity="0.6" />
31-
<polygon points="70, 55 70, 145 145, 100" fill="white" />
32-
</svg>
29+
<img src="images/play.svg" class="play-button" style="width: 64px;" alt="play">
3330
</div>
3431
</div>
3532
<img id="cloudLeftTop" alt="cloud" src="images/vector-top-left.png" />

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 commit comments

Comments
 (0)