Skip to content

Commit 2b417b3

Browse files
committed
deploy: 606b7d0
1 parent 9473c4c commit 2b417b3

Some content is hidden

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

50 files changed

+627
-267
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ window.AppConfig = {
2626
"app_notification_url": "assets/notifications/dev/",
2727
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2828
"linting.enabled_by_default": true,
29-
"build_timestamp": "2024-09-06T05:52:31.723Z",
29+
"build_timestamp": "2024-09-07T15:04:24.936Z",
3030
"googleAnalyticsID": "G-P4HJFPDB76",
3131
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3232
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -38,7 +38,7 @@ window.AppConfig = {
3838
"bugsnagEnv": "development"
3939
},
4040
"name": "Phoenix Code",
41-
"version": "3.9.2-20554",
41+
"version": "3.9.2-20556",
4242
"apiVersion": "3.9.2",
4343
"homepage": "https://core.ai",
4444
"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: 67 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -21230,34 +21230,58 @@ define("editor/Editor", function (require, exports, module) {
2123021230

2123121231
const fullPath = this.document.file.fullPath;
2123221232
if(SPACING_OPTIONS.has(prefName)){
21233-
if(prefName === SPACE_UNITS){
21234-
newValue = Editor.getSpaceUnits(fullPath);
21235-
} else if(prefName === TAB_SIZE){
21236-
newValue = Editor.getTabSize(fullPath);
21237-
} else {
21238-
const newTabSpaceCfg = Editor.getAutoTabSpaces(fullPath);
21239-
if(newTabSpaceCfg){
21240-
_computeTabSpaces(this);
21241-
}
21242-
const newUseTabCharCfg = Editor.getUseTabChar(fullPath);
21243-
if(this._currentOptions[AUTO_TAB_SPACES] === newTabSpaceCfg &&
21244-
this._currentOptions[USE_TAB_CHAR] === newUseTabCharCfg) {
21245-
// no change
21233+
const newUseAutoTabs = Editor.getAutoTabSpaces(fullPath);
21234+
if(newUseAutoTabs){
21235+
_computeTabSpaces(this);
21236+
}
21237+
const newUseTabCharCfg = Editor.getUseTabChar(fullPath);
21238+
const newSpaceUnits = Editor.getSpaceUnits(fullPath);
21239+
const newTabSize = Editor.getTabSize(fullPath);
21240+
const newTabUnits = Editor.getAutoTabUnits(fullPath);
21241+
if(this._currentOptions[AUTO_TAB_SPACES] === newUseAutoTabs &&
21242+
this._currentOptions[USE_TAB_CHAR] === newUseTabCharCfg &&
21243+
this._currentOptions[SPACE_UNITS] === newSpaceUnits &&
21244+
this._currentOptions[TAB_SIZE] === newTabSize) {
21245+
// no change
21246+
const currentIndentUnit = this._codeMirror.getOption("indentUnit");
21247+
let expectedIndentUnit;
21248+
if(newUseAutoTabs) {
21249+
expectedIndentUnit = newUseTabCharCfg ?
21250+
newTabUnits * this._currentOptions[TAB_SIZE] :
21251+
this._currentOptions[SPACE_UNITS];
21252+
} else {
21253+
expectedIndentUnit = newUseTabCharCfg ?
21254+
this._currentOptions[TAB_SIZE]:
21255+
this._currentOptions[SPACE_UNITS];
21256+
}
21257+
if(currentIndentUnit === expectedIndentUnit) {
2124621258
return;
2124721259
}
21248-
this._currentOptions[AUTO_TAB_SPACES] = newTabSpaceCfg;
21249-
this._currentOptions[USE_TAB_CHAR] = newUseTabCharCfg;
21250-
this._currentOptions[SPACE_UNITS] = Editor.getSpaceUnits(fullPath);
21251-
this._currentOptions[TAB_SIZE] = Editor.getTabSize(fullPath);
21252-
this._codeMirror.setOption(cmOptions[USE_TAB_CHAR], newUseTabCharCfg);
21260+
}
21261+
this._currentOptions[AUTO_TAB_SPACES] = newUseAutoTabs;
21262+
this._currentOptions[USE_TAB_CHAR] = newUseTabCharCfg;
21263+
this._currentOptions[SPACE_UNITS] = newSpaceUnits;
21264+
this._currentOptions[TAB_SIZE] = newTabSize;
21265+
this._codeMirror.setOption(cmOptions[USE_TAB_CHAR], newUseTabCharCfg);
21266+
if(newUseAutoTabs) {
21267+
if(newUseTabCharCfg){
21268+
this._codeMirror.setOption(cmOptions[TAB_SIZE], this._currentOptions[TAB_SIZE]);
21269+
this._codeMirror.setOption("indentUnit", newTabUnits*this._currentOptions[TAB_SIZE]);
21270+
} else {
21271+
this._codeMirror.setOption(cmOptions[TAB_SIZE], this._currentOptions[TAB_SIZE]);
21272+
this._codeMirror.setOption("indentUnit", this._currentOptions[SPACE_UNITS]);
21273+
}
21274+
} else {
2125321275
this._codeMirror.setOption("indentUnit", newUseTabCharCfg === true ?
21254-
this._currentOptions[TAB_SIZE] :
21276+
this._currentOptions[TAB_SIZE]:
2125521277
this._currentOptions[SPACE_UNITS]
2125621278
);
21257-
this.trigger("optionChange", AUTO_TAB_SPACES, newTabSpaceCfg);
21258-
this.trigger("optionChange", USE_TAB_CHAR, newUseTabCharCfg);
21259-
return;
21279+
this._codeMirror.setOption(cmOptions[TAB_SIZE], this._currentOptions[TAB_SIZE]);
2126021280
}
21281+
this._codeMirror.setOption(cmOptions[USE_TAB_CHAR], newUseTabCharCfg);
21282+
this.trigger("optionChange", AUTO_TAB_SPACES, newUseAutoTabs);
21283+
this.trigger("optionChange", USE_TAB_CHAR, newUseTabCharCfg);
21284+
return;
2126121285
}
2126221286

2126321287
if (oldValue !== newValue) {
@@ -21587,6 +21611,19 @@ define("editor/Editor", function (require, exports, module) {
2158721611
return PreferencesManager.get(TAB_SIZE, _buildPreferencesContext(fullPath));
2158821612
};
2158921613

21614+
/**
21615+
* Gets the number of tabs for the file. Will
21616+
* @param fullPath
21617+
* @returns {number|*}
21618+
*/
21619+
Editor.getAutoTabUnits = function (fullPath) {
21620+
let computedValues = _getCachedSpaceCfg(fullPath);
21621+
if(Editor.getAutoTabSpaces(fullPath) && computedValues && computedValues.tabUnits) {
21622+
return computedValues.tabUnits;
21623+
}
21624+
return EditorPreferences.MIN_SPACE_UNITS;
21625+
};
21626+
2159021627
const MAX_LINES_TO_SCAN_FOR_INDENT = 700; // this is high to account for any js docs/ file comments
2159121628
function _computeTabSpaces(editor, scanFullFile, recompute) {
2159221629
const fullPath = editor.document.file.fullPath;
@@ -21604,8 +21641,9 @@ define("editor/Editor", function (require, exports, module) {
2160421641
tabSpacesStateManager.set(fullPath, null); // we dont have a remove api, so just nulling for now
2160521642
computedTabSpaces.set(fullPath, {
2160621643
useTabChar,
21607-
tabSize: useTabChar ? Math.min(amount, EditorPreferences.MAX_TAB_SIZE) : 0,
21608-
spaceUnits: useTabChar ? 0 : Math.min(amount, EditorPreferences.MAX_SPACE_UNITS)
21644+
tabSize: EditorPreferences.DEFAULT_TAB_SIZE,
21645+
spaceUnits: useTabChar ? 0 : Math.min(amount, EditorPreferences.MAX_SPACE_UNITS),
21646+
tabUnits: useTabChar ? Math.min(amount, EditorPreferences.MAX_AUTO_TAB_UNITS) : 0
2160921647
});
2161021648
}
2161121649
Editor._autoDetectTabSpaces = function (editor, scanFullFile, recompute) {
@@ -23494,8 +23532,10 @@ define("editor/EditorHelper/EditorPreferences", function (require, exports, modu
2349423532
MIN_TAB_SIZE = 1,
2349523533
DEFAULT_SPACE_UNITS = 4,
2349623534
DEFAULT_TAB_SIZE = 4,
23535+
AUTO_TAB_SIZE = 4,
2349723536
MAX_SPACE_UNITS = 10,
23498-
MAX_TAB_SIZE = 10;
23537+
MAX_TAB_SIZE = 10,
23538+
MAX_AUTO_TAB_UNITS = 4;
2349923539

2350023540
const LINE_NUMBER_GUTTER = "CodeMirror-linenumbers",
2350123541
LINE_NUMBER_GUTTER_PRIORITY = 100,
@@ -23655,6 +23695,8 @@ define("editor/EditorHelper/EditorPreferences", function (require, exports, modu
2365523695
exports.DEFAULT_TAB_SIZE = DEFAULT_TAB_SIZE;
2365623696
exports.MAX_SPACE_UNITS = MAX_SPACE_UNITS;
2365723697
exports.MAX_TAB_SIZE = MAX_TAB_SIZE;
23698+
exports.AUTO_TAB_SIZE = AUTO_TAB_SIZE;
23699+
exports.MAX_AUTO_TAB_UNITS = MAX_AUTO_TAB_UNITS;
2365823700

2365923701
exports.LINE_NUMBER_GUTTER = LINE_NUMBER_GUTTER;
2366023702
exports.LINE_NUMBER_GUTTER_PRIORITY = LINE_NUMBER_GUTTER_PRIORITY;

cacheManifest.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "8edd0e54b76931db85beac0bd47332944818a8e2c0e4e0ab5214e68f6774405b",
3-
"assets/default-project/en.zip": "4ddf44b2ee6a95938653d12c5fbf1f9825138fe5fd36213814e897d9a538df4b",
2+
"appConfig.js": "f502ecd49c860e26256b6add4daffb72c315e1a10850f6c11b51f3df2d1709f9",
3+
"assets/default-project/en.zip": "181531681059b3ca2003aed66a4cf92b98651a0e0741819d1cde268efb8576da",
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",
@@ -125,7 +125,7 @@
125125
"assets/pwa/32x32.png": "4f8f75bfcdb6efbbed1732f49edab4e292274cdeb1841e285ccc8194f4c9d8ac",
126126
"assets/pwa/phoenix.png": "d292bf76d6d61fdece2f97fb4cd71b8b0060d1058e9c1d02c94bfb20da8b7f0d",
127127
"assets/pwa/Square284x284Logo.png": "9887c2967039b4fae1214817925f1fb4f9227cba12d37612457c1c8ee1110c67",
128-
"assets/sample-projects/bootstrap-blog.zip": "1f3e1bcb411781283bd0688d591be33c7a2d523de029f4c40ec1f6b468291672",
128+
"assets/sample-projects/bootstrap-blog.zip": "2ef1ba949b6d89e4afb87b8e6de046570c06e73237e6f1822ff408ab4355f114",
129129
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
130130
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
131131
"assets/sample-projects/bootstrap-blog/assets/dist/css/bootstrap.min.css": "fb1763b59f9f5764294b5af9fa5250835ae608282fe6f2f2213a5952aacf1fbf",
@@ -135,7 +135,7 @@
135135
"assets/sample-projects/bootstrap-blog/blog.rtl.css": "33f49d02bbcb2e78f019b7582408fad2b5a76a2ecf79fe09d5b3c08c6ee3872b",
136136
"assets/sample-projects/bootstrap-blog/index-rtl.html": "c582278884060098ff51b9d350b0739e1a0396debdc76772c62b6ec375b6efcb",
137137
"assets/sample-projects/bootstrap-blog/index.html": "f4716c2affa299a27ab6f8c74c22fe67564f1b1d36ff2f0b322672bf0479d739",
138-
"assets/sample-projects/dashboard.zip": "cfbf02fb79f47931e16be8a4545e92c6fdabf4ae5bf980a623766bdb6a2b80e4",
138+
"assets/sample-projects/dashboard.zip": "19af5de9148d435b49009ea8e44dc00231c46d18dba4fd2e02304186cfb4f94d",
139139
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
140140
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
141141
"assets/sample-projects/dashboard/assets/dist/css/bootstrap.min.css": "fb1763b59f9f5764294b5af9fa5250835ae608282fe6f2f2213a5952aacf1fbf",
@@ -147,7 +147,7 @@
147147
"assets/sample-projects/dashboard/index.html": "1fb0c934f816d728cad85e180f78369679dc9edb1eca2d5c625b9360e6264235",
148148
"assets/sample-projects/dashboard/signin.css": "083bef710a6170a5112ce257c2ecf8580ca97ce19136d770f10460e5b85862de",
149149
"assets/sample-projects/dashboard/signin.html": "8c602e656631aeee624673397c0dc00c339498914ed930ab177478c4662a8d26",
150-
"assets/sample-projects/explore.zip": "d35aec8b81bb901ec2d8309553acace9bd76ba3e627ac2994032d71d9e05fc7f",
150+
"assets/sample-projects/explore.zip": "473201dfa240aabbb85ead4f114f231446f024373171908eea8fe83241d08eb1",
151151
"assets/sample-projects/explore/A-tribute-page.html": "bd510c60f444058b7fcb71d83841f32b1cb5193c1a39421d7739bd6af9fef248",
152152
"assets/sample-projects/explore/adjustable-fireworks.html": "11e69bb2dd8708ed8fbf1acc62b0aaaf88c7ffec859ee958dc1ae51cd53ddac8",
153153
"assets/sample-projects/explore/ant_colony.html": "bc9435ed1b9868f2fbc7212d526f7532c533a5fdf45da988fa5e575bc5f363b7",
@@ -237,7 +237,7 @@
237237
"assets/sample-projects/explore/watermelon-pixel.html": "765a3fbffb5db97910512fbabaa7c55c0b52dc8eedfcc630811be39d0af98663",
238238
"assets/sample-projects/explore/webmine.html": "6b808f52812dc03db28483411500c04daf8ee0226f535c600a36999d6b7837c0",
239239
"assets/sample-projects/explore/whack-a-mole.html": "25be94a3640553b4801f80edd49998bae3a360988e8a26ff3bdfdc2a76b77191",
240-
"assets/sample-projects/home-pages.zip": "284fc5e00f057d8a0de4fc6009bdae2b1ace5dc45e37c675272da63674e09c18",
240+
"assets/sample-projects/home-pages.zip": "91bf041103c25f22d0c8d84901de8d3b215b4c73a0cb78171dbd16ae02af3b34",
241241
"assets/sample-projects/home-pages/album/index.html": "e29a1e96644bc17bab1a7e3724e822d65a479e10df182725ee1afa916efbfdc1",
242242
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
243243
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
@@ -249,19 +249,19 @@
249249
"assets/sample-projects/home-pages/carousel/index.html": "235d650043a09f2954f24e4659f64d99ef3988858567fb2221fb1cf34df057e6",
250250
"assets/sample-projects/home-pages/cover/cover.css": "2fbb596077c570cad7ee9e98fb88f5665e0ecfc11e7085c3e04639ad03f7bc10",
251251
"assets/sample-projects/home-pages/cover/index.html": "759214701ff759432711b3421d80aca692c7a2b4c978c516a0bcd0c81a43f381",
252-
"assets/sample-projects/HTML5.zip": "f33f56fb12d386720fd69edd566fccc4dbff9d136c68532c7a6c835e75b57948",
252+
"assets/sample-projects/HTML5.zip": "9582693d18d701c91a591fc95082aa59db08cee802975323b1d1b0a2fa0eca80",
253253
"assets/sample-projects/HTML5/index.html": "2dc94c7d3e33aeeb44ec4f75bc7df86a5fd19f3121f2fd3638636fbf7c476c6a",
254254
"assets/sample-projects/HTML5/script.js": "c49e4b01cded4defbc21f5d5d0102719ce4cccbe1b9cb19f9232c5a05df658da",
255255
"assets/sample-projects/HTML5/styles.css": "744b85a9c31affbb00976694c4b9c9149b31e575ed9efdec386231d062ae93f2",
256256
"assets/sample-projects/new-project-list.json": "be1c907279163610779b000aa9ea6e4b035e07429203f16445a914c7045f2d64",
257257
"assets/sample-projects/zips/bootstrap.zip": "6f10407c00ce5d598e77f890528743dc645bc28014335483992b481e63fd7b97",
258258
"base-config/keyboard.json": "f3380c609a293a95644965958286b31863d733293824d56b7087fa0ce4c2d618",
259259
"base-config/readme-keyboard.md": "27e98128176dbd060e93b1f321a4ddcd609571b7b8eb8c9112588f4767d08a03",
260-
"brackets-min.js": "15cf779784fdd8a6d2f7a24b118b97266876ea01e268e36ba791eab3b0e46fd4",
260+
"brackets-min.js": "ae4fa44c5a57ceebd343c7fc504b8a764401ae0a99d1d04850e538ae4399e208",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "f7a3164510e76e012591c9758acb47f2445526642503180c57209d30faa24d69",
264-
"cacheManifest.json": "569732b063a783f1fab03bac456ad9785e0e1233dea7ec40fe6d8e1c011cfd91",
264+
"cacheManifest.json": "22bc79ec0b7fe40a776a36667ac914747072db7d122409ba3e5cc672f1643f23",
265265
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
266266
"command/CommandManager.js": "0600518322584495bbbfae76ed2bb39e416de3735ee65b12c63a2b3e6b3423ca",
267267
"command/Commands.js": "2dfb209ddd6f5f65da5434d45acb982772f27e629e82a0be2c35ecf178e5d45e",
@@ -270,7 +270,7 @@
270270
"command/KeyboardOverlayMode.js": "8ed49bc8728a109e3850d8ad2df374b51021f24a65811ac826210a1adcdbbb56",
271271
"command/Keys.js": "31cd87a01ce41de28e56ccbdd4fa14866cccc2b7bcde61c5134095adaa5cb674",
272272
"command/Menus.js": "6baf556623f3dea60474cd3b884478e03bb7d5c272b60c5a9b06ca003b9baefe",
273-
"config.json": "9478884002ed44dca04c31472ea75c3f2555566a8325ecc092b31b6377d6240f",
273+
"config.json": "e69520347459113b8595bbbf2abe7b2968c381aeba861de0afb7261025207165",
274274
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -285,10 +285,10 @@
285285
"editor/CodeHintList.js": "b0e38b0714484b84ded353074594337ad5a4461907925861b0eab625a6ab6fc3",
286286
"editor/CodeHintManager.js": "0eb31b7256efda342aec36e2b744539d7952118d96f7caeeed82a887ebd9f8a3",
287287
"editor/CSSInlineEditor.js": "20329138aea67b56f34a8d0772caab6a9a944db6ef7ac491a4be4cd8ed89c4cd",
288-
"editor/Editor.js": "fe5ab2d8a9af060d88c3e1e07a1a44cb5c8aeaa91ca5bded90c20e0c70621112",
288+
"editor/Editor.js": "e94cf739bc10013c3507c9743b993cdd30ba772f5ad68e07eba13d14be60c7d6",
289289
"editor/EditorCommandHandlers.js": "bcd9b4db3e2388d364f1d64882ed62bfde5bf77ce46b24cf36a7323c5ee2a9d2",
290290
"editor/EditorHelper/ChangeHelper.js": "55ec840f95e07846187c67e559df757b0a3f1c77d931fa7c5e72a919327ee371",
291-
"editor/EditorHelper/EditorPreferences.js": "b8eeedd6738b60a97e21938c69132baa1e3581cca409d4fe38f3cb6a31c7c69a",
291+
"editor/EditorHelper/EditorPreferences.js": "a4d102d4f2bd67ed231dbcd2689b6ca204fc20a912c7b08997cd05f3887f456b",
292292
"editor/EditorHelper/ErrorPopupHelper.js": "42e8e25b05cda4d38eeb5b91b8972b59f538de92248a8cd26b057196ee8a177c",
293293
"editor/EditorHelper/IndentHelper.js": "9aa00021d2486bc7e11b74068752c95f838f878868d32d45ff5bc262808a3fdc",
294294
"editor/EditorHelper/InlineWidgetHelper.js": "4f983404b6750ace51e88e0861847170446e20c304cb5af5ec502a75dc968aef",

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"app_notification_url": "assets/notifications/dev/",
2626
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2727
"linting.enabled_by_default": true,
28-
"build_timestamp": "2024-09-06T05:52:31.723Z",
28+
"build_timestamp": "2024-09-07T15:04:24.936Z",
2929
"googleAnalyticsID": "G-P4HJFPDB76",
3030
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3131
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -37,7 +37,7 @@
3737
"bugsnagEnv": "development"
3838
},
3939
"name": "Phoenix Code",
40-
"version": "3.9.2-20554",
40+
"version": "3.9.2-20556",
4141
"apiVersion": "3.9.2",
4242
"homepage": "https://core.ai",
4343
"issues": {

0 commit comments

Comments
 (0)