Skip to content

Commit 70b862d

Browse files
committed
deploy: 606b7d0
1 parent 8e7a2d2 commit 70b862d

File tree

61 files changed

+104
-856
lines changed

Some content is hidden

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

61 files changed

+104
-856
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ window.AppConfig = {
3333
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
3434
"extensionTakedownURL": "https://updates.phcode.io/extension_takedown.json",
3535
"linting.enabled_by_default": true,
36-
"build_timestamp": "2025-10-22T13:42:37.340Z",
36+
"build_timestamp": "2025-10-22T17:31:42.022Z",
3737
"googleAnalyticsID": "G-P4HJFPDB76",
3838
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3939
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -45,7 +45,7 @@ window.AppConfig = {
4545
"bugsnagEnv": "development"
4646
},
4747
"name": "Phoenix Code",
48-
"version": "4.1.2-21605",
48+
"version": "4.1.2-21606",
4949
"apiVersion": "4.1.2",
5050
"homepage": "https://core.ai",
5151
"issues": {

assets/default-project/en.zip

0 Bytes
Binary file not shown.

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: 3 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -42116,7 +42116,6 @@ define("extensionsIntegrated/Phoenix/guided-tour", function (require, exports, m
4211642116
const GENERAL_SURVEY_TIME = 1200000, // 20 min
4211742117
SURVEY_PRELOAD_DELAY = 10000, // 10 seconds to allow the survey to preload, but not
4211842118
// enough time to break user workflow
42119-
ONE_MONTH_IN_DAYS = 30,
4212042119
POWER_USER_SURVEY_INTERVAL_DAYS = 35;
4212142120

4212242121
const userAlreadyDidAction = PhStore.getItem(GUIDED_TOUR_LOCAL_STORAGE_KEY)
@@ -42135,11 +42134,10 @@ define("extensionsIntegrated/Phoenix/guided-tour", function (require, exports, m
4213542134
* 2. Then after user opens default project, we show "edit code for live preview popup"
4213642135
* 3. When user changes file by clicking on files panel, we show "click here to open new project window"
4213742136
* this will continue showing every session until user clicks on the new project icon
42138-
* 4. After about 2 minutes, the GitHub stars popup will show, if not shown in the past two weeks. Repeats 2 weeks.
42139-
* 5. After about 3 minutes, the health popup will show up.
42140-
* 6. power user survey shows up if the user has used brackets for 3 days or 8 hours in the last two weeks after 3
42137+
* 4. After about 3 minutes, the health popup will show up.
42138+
* 5. power user survey shows up if the user has used brackets for 3 days or 8 hours in the last two weeks after 3
4214142139
* minutes. This will not coincide with health popup due to the power user check.
42142-
* 7. After about 10 minutes, survey shows up.
42140+
* 6. After about 10 minutes, survey shows up.
4214342141
* // the rest are by user actions
4214442142
* a. When user clicks on live preview, we show "click here to popout live preview"
4214542143
* b. Beautification notification when user opened the editor context menu and have not done any beautification yet.
@@ -42202,94 +42200,6 @@ define("extensionsIntegrated/Phoenix/guided-tour", function (require, exports, m
4220242200
});
4220342201
}
4220442202

42205-
function _loadTwitterScripts() {
42206-
// https://developer.twitter.com/en/docs/twitter-for-websites/javascript-api/guides/javascript-api
42207-
// we maily do this to metric the users who clicked on the tweet button
42208-
if(window.twttr){
42209-
return;
42210-
}
42211-
const twitterScript = document.createElement( 'script' );
42212-
twitterScript.setAttribute( 'src', "https://platform.twitter.com/widgets.js" );
42213-
document.body.appendChild( twitterScript );
42214-
twitterScript.addEventListener("load", ()=>{
42215-
if(!window.twttr){
42216-
console.error("twitter scripts not loaded");
42217-
return;
42218-
}
42219-
window.twttr.events.bind('click', function (ev) {
42220-
Metrics.countEvent(Metrics.EVENT_TYPE.USER, "notify", "twit.click", 1);
42221-
if(Phoenix.isNativeApp) {
42222-
// hyperlinks wont work in tauri, so we have to use tauri apis
42223-
Phoenix.app.openURLInDefaultBrowser(
42224-
'https://twitter.com/intent/tweet?screen_name=phcodedev&ref_src=twsrc%5Etfw');
42225-
}
42226-
});
42227-
});
42228-
}
42229-
42230-
function _openStarsPopup() {
42231-
_loadTwitterScripts();
42232-
let notification = $(`${Strings.GITHUB_STARS_POPUP}
42233-
<div class="gtstarph" style="display: flex;justify-content: space-around;margin-top: 6px;">
42234-
<a class="github-button"
42235-
href="https://github.com/phcode-dev/phoenix"
42236-
data-color-scheme="no-preference: dark; light: dark; dark: dark;"
42237-
data-icon="octicon-star"
42238-
data-size="large"
42239-
data-show-count="true"
42240-
title="Star phcode.dev on GitHub"
42241-
aria-label="Star phcode-dev/phoenix on GitHub">Star</a>
42242-
<a class="github-button"
42243-
href="https://github.com/sponsors/phcode-dev"
42244-
data-color-scheme="no-preference: dark; light: dark; dark: dark;"
42245-
data-icon="octicon-heart"
42246-
data-size="large"
42247-
data-show-count="true"
42248-
title="Star phcode.dev on GitHub"
42249-
aria-label="Sponsor @phcode-dev on GitHub">Sponsor</a>
42250-
<script async defer src="https://buttons.github.io/buttons.js"></script>
42251-
</div>
42252-
${Strings.GITHUB_STARS_POPUP_TWITTER}
42253-
<div class="twbnpop" style="display: flex;justify-content: space-around;margin-top: 6px;">
42254-
<a href="https://twitter.com/intent/tweet?screen_name=phcodedev&ref_src=twsrc%5Etfw"
42255-
class="twitter-mention-button"
42256-
data-size="large"
42257-
data-related="BracketsCont,brackets"
42258-
data-show-count="false">Tweet to @phcodedev</a>
42259-
</div>
42260-
</div>`);
42261-
notification.find(".gtstarph").click(()=>{
42262-
Metrics.countEvent(Metrics.EVENT_TYPE.USER, "notify", "star.click", 1);
42263-
if(Phoenix.isNativeApp) {
42264-
// hyperlinks wont work in tauri, so we have to use tauri apis
42265-
Phoenix.app.openURLInDefaultBrowser(
42266-
'https://github.com/phcode-dev/phoenix');
42267-
}
42268-
});
42269-
NotificationUI.createToastFromTemplate(Strings.ENJOYING_APP, notification, {
42270-
dismissOnClick: false
42271-
});
42272-
}
42273-
42274-
function _showRequestStarsPopup() {
42275-
if(Phoenix.firstBoot){
42276-
// on first boot we don't show the `enjoying phoenix?` popup as user needs more time to evaluate.
42277-
// GitHub stars/tweet situation isn't improving either. So we show this at the second launch so that we
42278-
// the users like the product to revisit and then, every 30 days.
42279-
return;
42280-
}
42281-
let lastShownDate = userAlreadyDidAction.lastShownGithubStarsDate;
42282-
let nextShowDate = new Date(lastShownDate);
42283-
nextShowDate.setUTCDate(nextShowDate.getUTCDate() + ONE_MONTH_IN_DAYS);
42284-
let currentDate = new Date();
42285-
if(!lastShownDate || currentDate >= nextShowDate){
42286-
Metrics.countEvent(Metrics.EVENT_TYPE.USER, "notify", "star", 1);
42287-
_openStarsPopup();
42288-
userAlreadyDidAction.lastShownGithubStarsDate = Date.now();
42289-
PhStore.setItem(GUIDED_TOUR_LOCAL_STORAGE_KEY, JSON.stringify(userAlreadyDidAction));
42290-
}
42291-
}
42292-
4229342203
function _showFirstUseSurvey(surveyURL, delayOverride, title, useDialog) {
4229442204
let surveyVersion = 6; // increment this if you want to show this again
4229542205
if(userAlreadyDidAction.generalSurveyShownVersion === surveyVersion) {
@@ -42449,7 +42359,6 @@ define("extensionsIntegrated/Phoenix/guided-tour", function (require, exports, m
4244942359
tourStarted = true;
4245042360
_showNewProjectNotification();
4245142361
_showBeautifyNotification();
42452-
_showRequestStarsPopup();
4245342362
_showSurveys();
4245442363
};
4245542364
});
@@ -113773,9 +113682,6 @@ define("nls/root/strings", {
113773113682
// Guided tour
113774113683
"GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview. </br> <a href='#' style='float:right;'>ok</a>",
113775113684
"GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab. </br> <a href='#' style='float:right;'>ok</a>",
113776-
"ENJOYING_APP": "Enjoying {APP_NAME}?",
113777-
"GITHUB_STARS_POPUP": "<div>Your support helps our small team motivated to make <b style='color: darkblue'>phcode.dev</b> even better.<br/>Please star us or consider sponsoring us on GitHub:",
113778-
"GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:",
113779113685
"TEST_TRANSLATE": "use this to test translations",
113780113686
//beautify extension
113781113687
"BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.",

cacheManifest.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "9264f1d88ee0c588c3a553493fffcf83e315520dd6dd7943b4494a5918739d70",
3-
"assets/default-project/en.zip": "b27c35dff8f188b9e5e6c620ae8450319a1ee05f4f4168f358b49f91d9a30de8",
2+
"appConfig.js": "f8fc2104ce1bdb99e87acebf882570e1918b1b66763263f9a90209870860522e",
3+
"assets/default-project/en.zip": "a78d6d91a43a4cd7e0cca9cfb11c14a6c9253da1a16e7299ac69669922f0a6b6",
44
"assets/default-project/en/images/cloud1.svg": "527399dadfa3357c3ee1a63d6c1c7dda81ecebb832f7383db26f1aaeaf722a8d",
55
"assets/default-project/en/images/cloud2.svg": "8127c63c0987bc674e2d25f7d24ead017853326c1e43d07706fec46091904418",
66
"assets/default-project/en/images/cloud3.svg": "15de53aa41dea3b0f685292814563f97213a9736c3cec2f8e17b5d9d45b3ae3d",
@@ -126,7 +126,7 @@
126126
"assets/pwa/32x32.png": "4f8f75bfcdb6efbbed1732f49edab4e292274cdeb1841e285ccc8194f4c9d8ac",
127127
"assets/pwa/phoenix.png": "d292bf76d6d61fdece2f97fb4cd71b8b0060d1058e9c1d02c94bfb20da8b7f0d",
128128
"assets/pwa/Square284x284Logo.png": "9887c2967039b4fae1214817925f1fb4f9227cba12d37612457c1c8ee1110c67",
129-
"assets/sample-projects/bootstrap-blog.zip": "bf93624ed1eb4b46941a8697ac711269edefe6f06826da1422fe3e78fff4050b",
129+
"assets/sample-projects/bootstrap-blog.zip": "5292dfc2ccaf8fdac5c8066fa8d5c57235560718232b9bc36579ca7ed260cbbe",
130130
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
131131
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
132132
"assets/sample-projects/bootstrap-blog/assets/dist/css/bootstrap.min.css": "fb1763b59f9f5764294b5af9fa5250835ae608282fe6f2f2213a5952aacf1fbf",
@@ -136,7 +136,7 @@
136136
"assets/sample-projects/bootstrap-blog/blog.rtl.css": "33f49d02bbcb2e78f019b7582408fad2b5a76a2ecf79fe09d5b3c08c6ee3872b",
137137
"assets/sample-projects/bootstrap-blog/index-rtl.html": "c582278884060098ff51b9d350b0739e1a0396debdc76772c62b6ec375b6efcb",
138138
"assets/sample-projects/bootstrap-blog/index.html": "f4716c2affa299a27ab6f8c74c22fe67564f1b1d36ff2f0b322672bf0479d739",
139-
"assets/sample-projects/dashboard.zip": "42cbd65a19c936b7a3a2b77b22c0318816bddcd60ef42a8a8af003f9466efd32",
139+
"assets/sample-projects/dashboard.zip": "f2d575c7ceb1b51b1c7a5c601de872ebb7f8745b593d7872217ab036fa12bf9d",
140140
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
141141
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
142142
"assets/sample-projects/dashboard/assets/dist/css/bootstrap.min.css": "fb1763b59f9f5764294b5af9fa5250835ae608282fe6f2f2213a5952aacf1fbf",
@@ -148,7 +148,7 @@
148148
"assets/sample-projects/dashboard/index.html": "1fb0c934f816d728cad85e180f78369679dc9edb1eca2d5c625b9360e6264235",
149149
"assets/sample-projects/dashboard/signin.css": "083bef710a6170a5112ce257c2ecf8580ca97ce19136d770f10460e5b85862de",
150150
"assets/sample-projects/dashboard/signin.html": "8c602e656631aeee624673397c0dc00c339498914ed930ab177478c4662a8d26",
151-
"assets/sample-projects/explore.zip": "290353a0471cb2c7213e0acba5ce23d5d8470004cf65d6c0ea0d21a6cef54884",
151+
"assets/sample-projects/explore.zip": "f9c923eeb531182e9384393eb543168068d95c8fdf6449af6efa63a8b991413d",
152152
"assets/sample-projects/explore/A-tribute-page.html": "bd510c60f444058b7fcb71d83841f32b1cb5193c1a39421d7739bd6af9fef248",
153153
"assets/sample-projects/explore/adjustable-fireworks.html": "11e69bb2dd8708ed8fbf1acc62b0aaaf88c7ffec859ee958dc1ae51cd53ddac8",
154154
"assets/sample-projects/explore/ant_colony.html": "bc9435ed1b9868f2fbc7212d526f7532c533a5fdf45da988fa5e575bc5f363b7",
@@ -236,7 +236,7 @@
236236
"assets/sample-projects/explore/watermelon-pixel.html": "765a3fbffb5db97910512fbabaa7c55c0b52dc8eedfcc630811be39d0af98663",
237237
"assets/sample-projects/explore/webmine.html": "6b808f52812dc03db28483411500c04daf8ee0226f535c600a36999d6b7837c0",
238238
"assets/sample-projects/explore/whack-a-mole.html": "25be94a3640553b4801f80edd49998bae3a360988e8a26ff3bdfdc2a76b77191",
239-
"assets/sample-projects/home-pages.zip": "2bcdd0f229a9db374f75a812aaca54b908063a98c4802fbba878ed5600df94ee",
239+
"assets/sample-projects/home-pages.zip": "1d6e0a283d94b27bb36c1e275f13bd4fe9f8aba9ff6f9373b6f40d5ebc7af346",
240240
"assets/sample-projects/home-pages/album/index.html": "e29a1e96644bc17bab1a7e3724e822d65a479e10df182725ee1afa916efbfdc1",
241241
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
242242
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
@@ -248,19 +248,19 @@
248248
"assets/sample-projects/home-pages/carousel/index.html": "235d650043a09f2954f24e4659f64d99ef3988858567fb2221fb1cf34df057e6",
249249
"assets/sample-projects/home-pages/cover/cover.css": "2fbb596077c570cad7ee9e98fb88f5665e0ecfc11e7085c3e04639ad03f7bc10",
250250
"assets/sample-projects/home-pages/cover/index.html": "759214701ff759432711b3421d80aca692c7a2b4c978c516a0bcd0c81a43f381",
251-
"assets/sample-projects/HTML5.zip": "91c4ddb42ec0507889d1d29a88d212dd75d2c957272c7d897fb304ccd0bd0fbf",
251+
"assets/sample-projects/HTML5.zip": "0097db6216cbc5bbf7bb08a8155444bdf9406d20f9a343c44a10b3f3e4f72b8b",
252252
"assets/sample-projects/HTML5/index.html": "2dc94c7d3e33aeeb44ec4f75bc7df86a5fd19f3121f2fd3638636fbf7c476c6a",
253253
"assets/sample-projects/HTML5/script.js": "c49e4b01cded4defbc21f5d5d0102719ce4cccbe1b9cb19f9232c5a05df658da",
254254
"assets/sample-projects/HTML5/styles.css": "744b85a9c31affbb00976694c4b9c9149b31e575ed9efdec386231d062ae93f2",
255255
"assets/sample-projects/new-project-list.json": "be1c907279163610779b000aa9ea6e4b035e07429203f16445a914c7045f2d64",
256256
"assets/sample-projects/zips/bootstrap.zip": "6f10407c00ce5d598e77f890528743dc645bc28014335483992b481e63fd7b97",
257257
"base-config/keyboard.json": "32ab31d6aeda47bab8bcce276209ca017893f572cb4aa97655fb75baf1a9c123",
258258
"base-config/readme-keyboard.md": "27e98128176dbd060e93b1f321a4ddcd609571b7b8eb8c9112588f4767d08a03",
259-
"brackets-min.js": "fa0a7b19d21f817cb9bcc81ddd7227d8dc40829ac47ebbd31895e7052d10f4be",
259+
"brackets-min.js": "9b29707f16b850000595c36a43b19123a017687ed14df4ce54cf121fbb7f4cef",
260260
"brackets.config.dist.json": "37dcc4038da06c6ac78b161bac468779bc4b40ac49fc33463e93af9f3f1d1983",
261261
"brackets.config.staging.json": "248300855f2665f7a4dce236c9934bc89059290624d247a9cef0b7550052e2be",
262262
"brackets.js": "95463f069596323c001a6b6a5bbf288db15becc309bb9f23e6766431ae70ef1c",
263-
"cacheManifest.json": "8202de3d6f7137872efde940c373b94d2f80d4e39172f416233c714ba5d6624f",
263+
"cacheManifest.json": "a99980a29a3d2ee8e4ee82765261c2539124a1b77db267f7a6ea4b085af91f0e",
264264
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
265265
"command/CommandManager.js": "5b2db315832b199eb4b9e48d3d46151a8ca4535f652ad9ef1cb56d9c57382cd6",
266266
"command/Commands.js": "733289509181440628b01dbe5a469204d18b1ae3b45cca1822c59bbd0b15ce3d",
@@ -269,7 +269,7 @@
269269
"command/KeyboardOverlayMode.js": "7170dfcfca59b41252146ef8a5ca4f652c666e33b7a4b411e30e72951bd35b49",
270270
"command/Keys.js": "36545bbbca56d2a909779c5873fa860bf737977588ad61a398acb86f6bcbe4ee",
271271
"command/Menus.js": "dd71f16f6594774da1a6410ea6f618c1eaea7a7f1268fe47e81c539d2f921cbb",
272-
"config.json": "b1703cd349850ffb1321cb5798213a31998730c7c6670a142f8d2962000b4f94",
272+
"config.json": "9b3789f85d6a350f81b3069a08dd00e77bc4311d55137078ab55cc32a304743a",
273273
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
274274
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
275275
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -577,7 +577,7 @@
577577
"extensions/default/UrlCodeHints/requirejs-config.json": "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a",
578578
"extensions/default/UrlCodeHints/unittests.js": "c60ecbe81555d435437dc5b7294f4e89b3befb7b34d60c44285c6009807c29c2",
579579
"extensions/dev/README.md": "3fd897e55e0e05e503c898555cfa3b20e820b32946fc7c426ea9bb2afbed449f",
580-
"extensions/registry/popularity.json": "26d7c4841185d1f0edbcbec8c2ebd27b3f29fa67534d67ccc53b2151048b0bce",
580+
"extensions/registry/popularity.json": "207642275b49203367ef28d1eee51086144d6c1cd881c72e70e801795d924faf",
581581
"extensions/registry/registry_version.json": "c7dfc67ec67e018306deec0d6de82824a1d86980fa1f73978f8f9c82eca3b851",
582582
"extensions/samples/BracketsConfigCentral/htmlContent/Config.html": "6ac3ce03e2fb8913ec5da3e8835c0646894f242600c64d95b77c7d7dc0a156f7",
583583
"extensions/samples/BracketsConfigCentral/htmlContent/logo-sm.png": "006f025fecd24c292e87a1eb0e123ee21178ec9c09517a1f16fe362fe2fbcbb5",
@@ -652,7 +652,7 @@
652652
"extensionsIntegrated/Phoenix-live-preview/trust-project.html": "c7edf3725ebf82b175be0427d9c8aaeea1c48ae5fc060ae936d3b2b3e7b92386",
653653
"extensionsIntegrated/Phoenix-live-preview/utils.js": "534b6ab5845aabbd7c06d264ac6ae8bd2f648c492df53bce37b9728cf72a0746",
654654
"extensionsIntegrated/Phoenix/default-projects.js": "c18f5abcde9aa4e5b6345d7a26897ea8b3d6ad934eac19e206c6270d5b8de2d2",
655-
"extensionsIntegrated/Phoenix/guided-tour.js": "e4b8db741ebbbfdbafdb79ab9886fd6c986e3792201ad1782e5160c6cc09e5cc",
655+
"extensionsIntegrated/Phoenix/guided-tour.js": "482b33054460bded6ab8c6f0a3042f6dde0a6bd6e3d921a28990ae3c14ae6220",
656656
"extensionsIntegrated/Phoenix/html/create-project-dialogue.html": "50e472f6b1bbff15b4955a1ae1cc22871a066286a7b4e44dd5f0254a1c7bdc8e",
657657
"extensionsIntegrated/Phoenix/html/new-project-template.html": "2cb3ce02dcacad521f37d071dba8d235e17cb23b43fdecbd1110a1f116752eec",
658658
"extensionsIntegrated/Phoenix/html/replace-keep-project-dialogue.html": "b0f79fe730c01ea926d514ba79fb1e004bc62c2c547d384fa28143d55f04d766",
@@ -844,7 +844,7 @@
844844
"nls/README.md": "b9f71ba2e71d692ee72f89ab4f9d4080c195793fc2a5e9838e863ed2ac72ac92",
845845
"nls/ro/strings.js": "66a8514f04c0fa4088b835575fe25145c58cf392c46e39ed8a95285f31b47a47",
846846
"nls/root/strings-app.js": "e82c0a855a2f6abc77063465c89c64974f1204146fbc629bd54fef2ae11a81bb",
847-
"nls/root/strings.js": "da3234542964417e362385571d4422d28d2edb46300c9574c616a4dfc1aa2751",
847+
"nls/root/strings.js": "8c7899eacecf9f084c88e76757ab1fe455d3bf8a8c3e1eef28ba9f4422dcfec9",
848848
"nls/root/urls.js": "0e8522a0a58bb321a1de2d5fd72277089d558809a7c20af8922f1ea61ed4097e",
849849
"nls/ru/strings.js": "005962e89f1c57fba4bbbaef5d432b8eae2c1b30e9b0f42cdc3cdda946f3a273",
850850
"nls/ru/urls.js": "822c62a15e13e41c9ceee0aa6403c2f05468ced045d9485ebf7755d3a2703f0a",

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
3333
"extensionTakedownURL": "https://updates.phcode.io/extension_takedown.json",
3434
"linting.enabled_by_default": true,
35-
"build_timestamp": "2025-10-22T13:42:37.340Z",
35+
"build_timestamp": "2025-10-22T17:31:42.022Z",
3636
"googleAnalyticsID": "G-P4HJFPDB76",
3737
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3838
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -44,7 +44,7 @@
4444
"bugsnagEnv": "development"
4545
},
4646
"name": "Phoenix Code",
47-
"version": "4.1.2-21605",
47+
"version": "4.1.2-21606",
4848
"apiVersion": "4.1.2",
4949
"homepage": "https://core.ai",
5050
"issues": {

0 commit comments

Comments
 (0)