Skip to content

Commit b92baf2

Browse files
committed
deploy: 606b7d0
1 parent e5c1e88 commit b92baf2

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

+408
-248
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ window.AppConfig = {
2424
"app_notification_url": "assets/notifications/dev/",
2525
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2626
"linting.enabled_by_default": true,
27-
"build_timestamp": "2024-04-04T10:37:22.064Z",
27+
"build_timestamp": "2024-04-04T12:02:19.201Z",
2828
"googleAnalyticsID": "G-P4HJFPDB76",
2929
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3030
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -36,7 +36,7 @@ window.AppConfig = {
3636
"bugsnagEnv": "development"
3737
},
3838
"name": "Phoenix Code",
39-
"version": "3.6.1-20110",
39+
"version": "3.6.1-20113",
4040
"apiVersion": "3.6.1",
4141
"homepage": "https://core.ai",
4242
"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: 33 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -84138,6 +84138,10 @@ define("nls/root/strings", {
8413884138
"FIND_NUM_FILES": "{0} {1}",
8413984139
"FIND_IN_FILES_SCOPED": "in <span class='dialog-filename'>{0}</span>",
8414084140
"FIND_IN_FILES_NO_SCOPE": "in project",
84141+
"FIND_IN_FILES_PROJECT_SCOPE": "Find in project",
84142+
"FIND_IN_FILES_PROJECT_SCOPE_FILTER": "Find in {0}",
84143+
"FIND_IN_FILES_PROJECT_SCOPE_REPLACE": "Replace in project",
84144+
"FIND_IN_FILES_PROJECT_SCOPE_REPLACE_FILTER": "Replace in {0}",
8414184145
"FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}",
8414284146
"FIND_IN_FILES_FILE": "file",
8414384147
"FIND_IN_FILES_FILES": "files",
@@ -126553,7 +126557,13 @@ define("search/FindBar", function (require, exports, module) {
126553126557
* The template we use for all Find bars.
126554126558
* @type {string}
126555126559
*/
126556-
const _searchBarTemplate = `<div class="find-input-group">
126560+
const _searchBarTemplate = `{{#multifile}}
126561+
<div id="searchlabel" style="text-align: center; font-weight: bold; font-size: medium; padding-bottom: 5px;">
126562+
{{{scopeLabel}}}
126563+
</div>
126564+
{{/multifile}}
126565+
126566+
<div class="find-input-group">
126557126567
<div id="find-group">
126558126568
<div class="search-input-container">
126559126569
<div class="find-what-wrapper">
@@ -126572,7 +126582,8 @@ define("search/FindBar", function (require, exports, module) {
126572126582
--><button id="find-next" class="btn no-focus" tabindex="-1" title="{{Strings.BUTTON_NEXT_HINT}}">{{Strings.BUTTON_NEXT}}</button><!--
126573126583
--></div><!--
126574126584
{{/multifile}}
126575-
--></div>
126585+
-->
126586+
</div>
126576126587

126577126588
{{#replace}}
126578126589
<div id="replace-group" {{#scope}}class="has-scope"{{/scope}}><!--
@@ -126590,10 +126601,6 @@ define("search/FindBar", function (require, exports, module) {
126590126601

126591126602
{{#multifile}}
126592126603
<div class="scope-group">
126593-
<div class="no-results-message">{{Strings.FIND_NO_RESULTS}}</div>
126594-
<div class="message">
126595-
<span id="searchlabel">{{{scopeLabel}}}</span>
126596-
</div>
126597126604
<!-- For Find in Files, the filter picker will be added here programmatically. -->
126598126605
</div>
126599126606
<div id="indexing-spinner" class="indexing-group forced-hidden">
@@ -127270,12 +127277,8 @@ define("search/FindBar", function (require, exports, module) {
127270127277
}
127271127278
ViewUtils.toggleClass($borderEl, "no-results", showIndicator);
127272127279

127273-
var $msg = this.$(".no-results-message");
127274-
if (showMessage) {
127275-
$msg.show();
127276-
} else {
127277-
$msg.hide();
127278-
}
127280+
const noResultsMessage = showMessage ? Strings.FIND_NO_RESULTS : "";
127281+
this.showFindCount(noResultsMessage);
127279127282
};
127280127283

127281127284
/**
@@ -128671,6 +128674,23 @@ define("search/FindInFilesUI", function (require, exports, module) {
128671128674
});
128672128675
}
128673128676

128677+
function _getScopeLabel(scope, isReplace) {
128678+
if (scope) {
128679+
const scopeStr = isReplace ?
128680+
Strings.FIND_IN_FILES_PROJECT_SCOPE_REPLACE_FILTER :
128681+
Strings.FIND_IN_FILES_PROJECT_SCOPE_FILTER;
128682+
return StringUtils.format(
128683+
scopeStr,
128684+
StringUtils.breakableUrl(
128685+
ProjectManager.makeProjectRelativeIfPossible(scope.fullPath)
128686+
)
128687+
);
128688+
}
128689+
return isReplace ?
128690+
Strings.FIND_IN_FILES_PROJECT_SCOPE_REPLACE :
128691+
Strings.FIND_IN_FILES_PROJECT_SCOPE;
128692+
}
128693+
128674128694
/**
128675128695
* @private
128676128696
* Displays a non-modal embedded dialog above the code mirror editor that allows the user to do
@@ -128716,7 +128736,7 @@ define("search/FindInFilesUI", function (require, exports, module) {
128716128736
historyHelp: brackets.platform === "mac" ? Strings.FIND_HISTORY_TOOLTIP_MAC : Strings.FIND_HISTORY_TOOLTIP,
128717128737
initialReplaceText: initialQuery.replaceText,
128718128738
queryPlaceholder: Strings.FIND_QUERY_PLACEHOLDER,
128719-
scopeLabel: FindUtils.labelForScope(scope)
128739+
scopeLabel: _getScopeLabel(scope, showReplace)
128720128740
});
128721128741
_findBar.open();
128722128742

cacheManifest.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "6b7a0853cca488ce31c8a865fdd26bddde89807ea7915ff282672f24b8fff571",
3-
"assets/default-project/en.zip": "7be7a94429953c6be127aed3dc93166bb943d75a3d6c89241eb363b39d82e12e",
2+
"appConfig.js": "973591c6d64873cc4eeb1ccddd893285b7d61de05341c609acc077c4cf1a1284",
3+
"assets/default-project/en.zip": "d38748514891cbed4251901a8aaa1e5c7d40c3d5c53b59b9d4656f7c27a8dd45",
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": "6619de0c3f1988d9efe0c2cb6d9adb903a7319c9153bc33adde35d75c9cafa9b",
128+
"assets/sample-projects/bootstrap-blog.zip": "87604087c88c07b02bad7e697212452f88149b5795bccb811de1c4367c04ff4b",
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": "3b788685e420ec259afc06dc9dd627948f146df758e46facca5a22795df8ab41",
138+
"assets/sample-projects/dashboard.zip": "9721ae8897f0b39b0f7a808f27809e4f9b0098819dc26bf87c8d7154e102ca3a",
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": "5e838f6c9af3f6b9e2cc515ce16482fbbbbc71c28987374b6ce9149de0061b9a",
150+
"assets/sample-projects/explore.zip": "1f190896c27828d6aef6e16d8b2bb0a8fc0744944e530a098d244deb2f20f561",
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": "4d1715e60f5ee7e990696909e561af7976a204cc5ed796759e09e746650c459d",
240+
"assets/sample-projects/home-pages.zip": "97c25158ece941a2361c9615df3b872f9d36a2b7b8e8e1286c15bfed7b4093ff",
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": "9b0d0d89a64b97283c434e29e0396f8b42c604d10eefcbdd1567e1aebb6f74f5",
252+
"assets/sample-projects/HTML5.zip": "56fab097c3f2b1b401b51cf029cd2cbe3d0ddfd296fd221e1bb09eee17164e62",
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": "fc032682675e1f7d576374b080b97aaaa48a69ab47f15dab1c7f112853024f3d",
259259
"base-config/readme-keyboard.md": "27e98128176dbd060e93b1f321a4ddcd609571b7b8eb8c9112588f4767d08a03",
260-
"brackets-min.js": "4871f724c700bac5634f2b81f4bf8ce2615fb2c1ae63a9efeed5c76b3a583c63",
260+
"brackets-min.js": "1b675616e6c2d0a6268dddaa801838162aac656e0b7bc68fd088d33217a6cb58",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "99c6af562437e2e3afa91901dd40b9fbcccb4425a9765b3dac5dd2cfec984e20",
264-
"cacheManifest.json": "84438befc017031ed850c0d963141cc70c0064606ee69391b8da423bf83c5c2b",
264+
"cacheManifest.json": "940afd65d63dca66261fe6de6c7c285bc5709756fb0c11922cb13d455d40cdcd",
265265
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
266266
"command/CommandManager.js": "0600518322584495bbbfae76ed2bb39e416de3735ee65b12c63a2b3e6b3423ca",
267267
"command/Commands.js": "3afaaae60d83ce7f8aee3585f2ae7db26c15105a4fb04a0a3d0c300876f35449",
@@ -270,7 +270,7 @@
270270
"command/KeyboardOverlayMode.js": "46a9aee18e36a7861fd0f0ae46d765cb30b079a6a5f00b21fbf1e3acd91dacee",
271271
"command/Keys.js": "31cd87a01ce41de28e56ccbdd4fa14866cccc2b7bcde61c5134095adaa5cb674",
272272
"command/Menus.js": "c31266bdd68f4c83e2aed71a6a89551d51bc63b3ed66e67dec94e1d9ae77859f",
273-
"config.json": "f87447509eef332746d034216dddc3a877cfb9fcd30b3386141be262db4c2905",
273+
"config.json": "c62ff77061856af7e9014f62db3abf81d644b9d223d504afd394f84b2a9e33e9",
274274
"desktop-metrics.html": "ca46d36aec85f715746d1b90af09664c98e17b8262e5b141eee69bdb9d2b1c89",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -612,7 +612,7 @@
612612
"htmlContent/dialog-template.html": "4ec7fbde503164df6842100e510e77ffeab32ecda3adb10f3834238792a72933",
613613
"htmlContent/extension-manager-dialog.html": "13328c682cd555064b801ca8c6b4e6ded4113dc62b890fa70b8330f2829512ce",
614614
"htmlContent/extension-manager-view-item.html": "f46ae820b1a8bfa14aec4c10dd6c6c9a8ddff3ad33ec4bf3f5242121c672d900",
615-
"htmlContent/findreplace-bar.html": "92be47e98e257aa077f8c3df6e0129f44473de30f9e622faa20c3e27f2788e69",
615+
"htmlContent/findreplace-bar.html": "20df8ea93c4527026bffc22a3c1c48695d4a7de38691182e6dc0794eae6c067f",
616616
"htmlContent/image-view.html": "5ed48116f4ad1b80e9a2d6e78afa8f45b59c393c587dde8a0a7f6ab8102ffd21",
617617
"htmlContent/infobar-template.html": "46cf946895658054a2bd8af07de3bed672667188769bd884d755f2daf584fcfa",
618618
"htmlContent/inline-menu.html": "665afe3a6b54b9cecddb1e5ef71725176b0a7c96d3c460cb824f156fa575cee2",
@@ -814,7 +814,7 @@
814814
"nls/ro/lastTranslatedLocale.json": "1e79559f3bf454da0933dfdc92211a5080d8a35d123eeccfae31b2819958335b",
815815
"nls/ro/strings.js": "438f9021a1879f78938fcae7a4ca680ba1f4c99a422f641b26908a2b4b3ce179",
816816
"nls/root/strings-app.js": "e82c0a855a2f6abc77063465c89c64974f1204146fbc629bd54fef2ae11a81bb",
817-
"nls/root/strings.js": "20664f3336e7408510f0236a2002e47f42cffe76cb65fee57e97633e75936b08",
817+
"nls/root/strings.js": "031383b79b6867c751622922a4dca252ca30a72ef218a6be9a0e310b3fccebcc",
818818
"nls/root/urls.js": "0e8522a0a58bb321a1de2d5fd72277089d558809a7c20af8922f1ea61ed4097e",
819819
"nls/ru/expertTranslations.json": "240db3c4d40756e39654a4e76e4acb65d0370ea499ab23bfdc0bff0e8969a4fb",
820820
"nls/ru/lastTranslated.json": "b80242ed74366ffd43f4836a48b998ae4376202589a52bfa725366bc2e949336",
@@ -892,9 +892,9 @@
892892
"project/WorkingSetView.js": "418b7c240613f4526bbbf6e5534623b7dd03a0563b6ea4dfa3ba3e93ca97db00",
893893
"robots.txt": "6143f094cdd03cc005dc7fdf99427d29c9ff5a88877d383bc7a07eea6b872348",
894894
"search/FileFilters.js": "17a54fb81e3081d87b290f9205985d0a0193e95c86aa30b075b7d0172c5deb97",
895-
"search/FindBar.js": "8c0a85d89f05b55fcc09eaf1e5b62f2b67ba06e626bdf28510ea272e1e50f34a",
895+
"search/FindBar.js": "8c46ed406ecde649562e4744cbff1f20fea2e602ba43671305cc844f49c4da88",
896896
"search/FindInFiles.js": "bec0f511a9aaf898d58dc14a4f85d82b374dca2f5d8adb17c309da7e3457cd7e",
897-
"search/FindInFilesUI.js": "af9110d33af8502a69a10df76e30862c93e81be317493e7a93e3fabd264d36b1",
897+
"search/FindInFilesUI.js": "7a7ba4597aba7b50ad830d76a22efdb4278e1a3990b48d9394033cc35302d71f",
898898
"search/FindReplace.js": "5dc33b7b8b4db50f703fff1160db90a59685aee2264a445e27f695ed575321fb",
899899
"search/FindUtils.js": "db07b3d9b243fdde9e3865443b983b7504f860dc8584b7f2af292da0b1ee2a30",
900900
"search/QuickOpen.js": "703844f1c10cf8d94347389a76d215d4f172c32cf392c6487fbc1250349fc3c7",
@@ -952,8 +952,8 @@
952952
"styles/brackets_shared.less": "6f342e7e04388844390ec57640188104081c8ffab7e96fef936af3d261a4a3c1",
953953
"styles/brackets_theme_default.less": "02543a2e462594eff8b62493702bfdad941b6fc384dcd305b8bb47dcc3f447bc",
954954
"styles/brackets_variables.less": "4dcfb39e4f677d8bac3d732096b5112c92080bdd67286611de6fd2c461a5c953",
955-
"styles/brackets-all.css": "fa791d7690d546cd5fce44d4ea6de7117bc586c89c6778fb7865040d75dc72cb",
956-
"styles/brackets.less": "f811da280843884dd4ec1716526cf2277a4c242171b8e873227cd5c559440a54",
955+
"styles/brackets-all.css": "c666e44d6665aed498a5611a54bc9e79af7d5fde0f752b3760d20feb26699a2d",
956+
"styles/brackets.less": "12915007d3602125fadada6bd16dccfa16160066ca0982a17bf55f28ec67e071",
957957
"styles/Extn-DisplayShortcuts.less": "67303bbaec8be1dc9db77ee0c9461020282b481df0d5e61e3881aa8415a188d1",
958958
"styles/Extn-NavigationAndHistory.less": "21b46882f8f37f29a2c51f29452e18f0659c30f05a5f4018490b2976944ee367",
959959
"styles/Extn-RecentProjects.less": "945e1f22da64351c0591e874fc1abe9090c30a00f8673add4a10c8f0f4fdc0e4",

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"app_notification_url": "assets/notifications/dev/",
2424
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2525
"linting.enabled_by_default": true,
26-
"build_timestamp": "2024-04-04T10:37:22.064Z",
26+
"build_timestamp": "2024-04-04T12:02:19.201Z",
2727
"googleAnalyticsID": "G-P4HJFPDB76",
2828
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
2929
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -35,7 +35,7 @@
3535
"bugsnagEnv": "development"
3636
},
3737
"name": "Phoenix Code",
38-
"version": "3.6.1-20110",
38+
"version": "3.6.1-20113",
3939
"apiVersion": "3.6.1",
4040
"homepage": "https://core.ai",
4141
"issues": {

0 commit comments

Comments
 (0)