Skip to content

Commit 5c96c52

Browse files
committed
deploy: 606b7d0
1 parent eb7a480 commit 5c96c52

File tree

102 files changed

+5089
-160
lines changed

Some content is hidden

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

102 files changed

+5089
-160
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ window.AppConfig = {
2727
"app_notification_url": "assets/notifications/dev/",
2828
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2929
"linting.enabled_by_default": true,
30-
"build_timestamp": "2025-02-18T03:49:50.002Z",
30+
"build_timestamp": "2025-02-18T10:53:01.760Z",
3131
"googleAnalyticsID": "G-P4HJFPDB76",
3232
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3333
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -39,7 +39,7 @@ window.AppConfig = {
3939
"bugsnagEnv": "development"
4040
},
4141
"name": "Phoenix Code",
42-
"version": "4.1.0-20896",
42+
"version": "4.1.0-20897",
4343
"apiVersion": "4.1.0",
4444
"homepage": "https://core.ai",
4545
"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: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ define(function (require, exports, module) {
121121
// load modules for later use
122122
require("utils/Global");
123123
require("editor/CSSInlineEditor");
124+
require("preferences/AllPreferences");
124125
require("project/WorkingSetSort");
125126
require("search/QuickOpen");
126127
require("search/QuickOpenHelper");
@@ -101855,6 +101856,9 @@ define("nls/root/strings", {
101855101856
"DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.",
101856101857
"DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.",
101857101858

101859+
// Emmet
101860+
"DESCRIPTION_EMMET": "true to enable Emmet, else false.",
101861+
101858101862
// Git extension
101859101863
"ENABLE_GIT": "Enable Git",
101860101864
"ACTION": "Action",
@@ -102129,7 +102133,6 @@ define("nls/root/strings", {
102129102133
// surveys
102130102134
"SURVEY_TITLE_VOTE_FOR_FEATURES_YOU_WANT": "Vote for the features you want to see next!"
102131102135
});
102132-
102133102136
/*
102134102137
* GNU AGPL-3.0 License
102135102138
*
@@ -134608,6 +134611,56 @@ $3132870559d60e53$require$initFsLib($8adf1cfaed2eb5b1$exports);
134608134611
})();
134609134612
//# sourceMappingURL=virtualfs.js.map
134610134613

134614+
/*
134615+
* GNU AGPL-3.0 License
134616+
*
134617+
* Copyright (c) 2021 - present core.ai . All rights reserved.
134618+
* Original work Copyright (c) 2012 - 2021 Adobe Systems Incorporated. All rights reserved.
134619+
*
134620+
* This program is free software: you can redistribute it and/or modify it
134621+
* under the terms of the GNU Affero General Public License as published by
134622+
* the Free Software Foundation, either version 3 of the License, or
134623+
* (at your option) any later version.
134624+
*
134625+
* This program is distributed in the hope that it will be useful, but WITHOUT
134626+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
134627+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
134628+
* for more details.
134629+
*
134630+
* You should have received a copy of the GNU Affero General Public License
134631+
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
134632+
*
134633+
*/
134634+
134635+
/*
134636+
* This file houses all the preferences used across Phoenix.
134637+
*
134638+
* To use:
134639+
* ```
134640+
* const AllPreferences = brackets.getModule("preferences/AllPreferences");
134641+
* function preferenceChanged() {
134642+
enabled = PreferencesManager.get(AllPreferences.EMMET);
134643+
}
134644+
* PreferencesManager.on("change", AllPreferences.EMMET, preferenceChanged);
134645+
preferenceChanged();
134646+
* ```
134647+
*/
134648+
134649+
define("preferences/AllPreferences", function (require, exports, module) {
134650+
const PreferencesManager = require("preferences/PreferencesManager");
134651+
const Strings = require("strings");
134652+
134653+
// list of all the preferences
134654+
const PREFERENCES_LIST = {
134655+
EMMET: "emmet"
134656+
};
134657+
134658+
PreferencesManager.definePreference(PREFERENCES_LIST.EMMET, "boolean", true, {
134659+
description: Strings.DESCRIPTION_EMMET
134660+
});
134661+
134662+
module.exports = PREFERENCES_LIST;
134663+
});
134611134664
/*
134612134665
* GNU AGPL-3.0 License
134613134666
*

brackets.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ define(function (require, exports, module) {
121121
// load modules for later use
122122
require("utils/Global");
123123
require("editor/CSSInlineEditor");
124+
require("preferences/AllPreferences");
124125
require("project/WorkingSetSort");
125126
require("search/QuickOpen");
126127
require("search/QuickOpenHelper");

cacheManifest.json

Lines changed: 22 additions & 20 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)