Skip to content

Commit 71b85db

Browse files
authored
Merge branch 'main' into upgrade-go-git
2 parents a7c0524 + e2e8509 commit 71b85db

48 files changed

Lines changed: 2590 additions & 766 deletions

Some content is hidden

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

eslint.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export default defineConfig([
329329
'github/no-innerText': [2],
330330
'github/no-then': [2],
331331
'github/no-useless-passive': [2],
332-
'github/prefer-observers': [2],
332+
'github/prefer-observers': [0],
333333
'github/require-passive-events': [2],
334334
'github/unescaped-html-literal': [2],
335335
'grouped-accessor-pairs': [2],
@@ -1013,7 +1013,7 @@ export default defineConfig([
10131013
},
10141014
},
10151015
{
1016-
files: ['*', 'tools/**/*'],
1016+
files: ['*', 'tools/**/*', 'tests/**/*'],
10171017
languageOptions: {globals: globals.nodeBuiltin},
10181018
},
10191019
{

options/locale/locale_en-US.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,9 @@
213213
"editor.buttons.switch_to_legacy.tooltip": "Use the legacy editor instead",
214214
"editor.buttons.enable_monospace_font": "Enable monospace font",
215215
"editor.buttons.disable_monospace_font": "Disable monospace font",
216+
"editor.code_editor.command_palette": "Command Palette",
217+
"editor.code_editor.find": "Find",
218+
"editor.code_editor.placeholder": "Enter file content here",
216219
"filter.string.asc": "A–Z",
217220
"filter.string.desc": "Z–A",
218221
"error.occurred": "An error occurred",
@@ -2250,8 +2253,6 @@
22502253
"repo.settings.webhook.delivery.success": "An event has been added to the delivery queue. It may take few seconds before it shows up in the delivery history.",
22512254
"repo.settings.githooks_desc": "Git Hooks are powered by Git itself. You can edit hook files below to set up custom operations.",
22522255
"repo.settings.githook_edit_desc": "If the hook is inactive, sample content will be presented. Leaving content to an empty value will disable this hook.",
2253-
"repo.settings.githook_name": "Hook Name",
2254-
"repo.settings.githook_content": "Hook Content",
22552256
"repo.settings.update_githook": "Update Hook",
22562257
"repo.settings.add_webhook_desc": "Gitea will send <code>POST</code> requests with a specified content type to the target URL. Read more in the <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"%s\">webhooks guide</a>.",
22572258
"repo.settings.payload_url": "Target URL",

package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,28 @@
1010
"@citation-js/plugin-bibtex": "0.7.21",
1111
"@citation-js/plugin-csl": "0.7.22",
1212
"@citation-js/plugin-software-formats": "0.6.2",
13+
"@codemirror/autocomplete": "6.20.1",
14+
"@codemirror/commands": "6.10.3",
15+
"@codemirror/lang-json": "6.0.2",
16+
"@codemirror/lang-markdown": "6.5.0",
17+
"@codemirror/language": "6.12.3",
18+
"@codemirror/language-data": "6.5.2",
19+
"@codemirror/legacy-modes": "6.5.2",
20+
"@codemirror/lint": "6.9.5",
21+
"@codemirror/search": "6.6.0",
22+
"@codemirror/state": "6.6.0",
23+
"@codemirror/view": "6.40.0",
1324
"@github/markdown-toolbar-element": "2.2.3",
1425
"@github/paste-markdown": "1.5.3",
1526
"@github/text-expander-element": "2.9.4",
27+
"@lezer/highlight": "1.2.3",
1628
"@mcaptcha/vanilla-glue": "0.1.0-alpha-3",
1729
"@mermaid-js/layout-elk": "0.2.1",
1830
"@primer/octicons": "19.23.1",
31+
"@replit/codemirror-indentation-markers": "6.5.3",
32+
"@replit/codemirror-lang-nix": "6.0.1",
33+
"@replit/codemirror-lang-svelte": "6.0.0",
34+
"@replit/codemirror-vscode-keymap": "6.0.2",
1935
"@resvg/resvg-wasm": "2.6.2",
2036
"@silverwind/vue3-calendar-heatmap": "2.1.1",
2137
"@vitejs/plugin-vue": "6.0.5",
@@ -25,6 +41,7 @@
2541
"chartjs-adapter-dayjs-4": "1.0.4",
2642
"chartjs-plugin-zoom": "2.2.0",
2743
"clippie": "4.1.10",
44+
"codemirror-lang-elixir": "4.0.1",
2845
"colord": "2.9.3",
2946
"compare-versions": "6.1.1",
3047
"cropperjs": "1.6.2",
@@ -38,7 +55,6 @@
3855
"js-yaml": "4.1.1",
3956
"katex": "0.16.43",
4057
"mermaid": "11.13.0",
41-
"monaco-editor": "0.55.1",
4258
"online-3d-viewer": "0.18.0",
4359
"pdfobject": "2.3.1",
4460
"perfect-debounce": "2.1.0",

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineConfig({
1414
timeout,
1515
},
1616
use: {
17-
baseURL: env.GITEA_TEST_E2E_URL?.replace?.(/\/$/g, ''),
17+
baseURL: env.GITEA_TEST_E2E_URL?.replace?.(/\/$/, ''),
1818
locale: 'en-US',
1919
actionTimeout: timeout,
2020
navigationTimeout: 2 * timeout,

0 commit comments

Comments
 (0)