Skip to content

Commit c796f49

Browse files
committed
deploy: 606b7d0
1 parent 9ff373a commit c796f49

File tree

118 files changed

+4772
-676
lines changed

Some content is hidden

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

118 files changed

+4772
-676
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ window.AppConfig = {
2828
"app_notification_url": "assets/notifications/dev/",
2929
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
3030
"linting.enabled_by_default": true,
31-
"build_timestamp": "2025-09-06T10:03:02.595Z",
31+
"build_timestamp": "2025-09-06T10:05:57.145Z",
3232
"googleAnalyticsID": "G-P4HJFPDB76",
3333
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3434
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -40,7 +40,7 @@ window.AppConfig = {
4040
"bugsnagEnv": "development"
4141
},
4242
"name": "Phoenix Code",
43-
"version": "4.1.2-21398",
43+
"version": "4.1.2-21404",
4444
"apiVersion": "4.1.2",
4545
"homepage": "https://core.ai",
4646
"issues": {

assets/default-project/en.zip

0 Bytes
Binary file not shown.

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function _openURLInTauri(url) {
186186
function _updateProBranding() {
187187
try {
188188
const $freeTitle = $('.phoenix-free-title');
189-
const $proTitle = $('.phoenix-pro-title');
189+
const $proTitle = $('#phoenix-pro-title');
190190
const $proTitleSpan = $('.pro-plan-name');
191191

192192
if (!$freeTitle.length || !$proTitle.length || !$proTitleSpan.length) {
@@ -222,6 +222,10 @@ function initCodeEditor() {
222222
Metrics.countEvent(Metrics.EVENT_TYPE.NEW_PROJECT, "main.Click", "viewMore");
223223
window.location.href = 'new-project-more.html';
224224
};
225+
document.getElementById("phoenix-pro-title").onclick = function() {
226+
Metrics.countEvent(Metrics.EVENT_TYPE.NEW_PROJECT, "main.Click", "proTitle");
227+
_openURLInTauri("https://account.phcode.dev");
228+
};
225229
document.getElementById("githubStarsButton").onclick = function() {
226230
Metrics.countEvent(Metrics.EVENT_TYPE.NEW_PROJECT, "main.Click", "githubStars");
227231
_openURLInTauri("https://github.com/phcode-dev/phoenix");

assets/new-project/code-editor.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<script src="../../thirdparty/floating-ui.dom.umd.min.js"></script>
1717
<script src="assets/js/notification-ui.js"></script>
1818
<style>
19-
.phoenix-pro-title {
19+
#phoenix-pro-title {
2020
background: linear-gradient(
2121
45deg,
2222
#ff8c42, /* deep orange */
@@ -41,7 +41,7 @@
4141
</div>
4242
<div class="editor-name">
4343
<h4 class="localize phoenix-free-title">{{APP_TITLE}}</h4>
44-
<h4 class="phoenix-pro-title forced-hidden"><a href="https://account.phcode.dev" target="_blank" rel="noopener" class="phoenix-pro"><span class="pro-plan-name">Phoenix Pro</span><i class="fa-solid fa-feather orange-gold" style="margin-left: 4px;"></i></a></h4>
44+
<h4 id="phoenix-pro-title" class="forced-hidden"><a href="https://account.phcode.dev" target="_blank" rel="noopener" class="phoenix-pro"><span class="pro-plan-name">Phoenix Pro</span><i class="fa-solid fa-feather orange-gold" style="margin-left: 4px;"></i></a></h4>
4545
<!-- Place this tag where you want the button to render. -->
4646
<div style="display: flex; justify-content: space-between;">
4747
<span class="localize">{{BUILD_THE_WEB}}</span>

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: 499 additions & 67 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)