aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix internal server error when updating labels without write permission (#32776)yp053272024-12-101-5/+5
| | | | | | Fix #32775 if permission denined, `prepareForReplaceOrAdd` will return nothing, and this case is not handled.
* Fix wiki ui (#32781)wxiaoguang2024-12-101-14/+14
| | | Fix #32774
* Change typescript `module` to `nodenext` (#32757)silverwind2024-12-102-3/+2
| | | | | | | | | | | | | | | | | Typescript 5.7 changed semantics around JSON imports and `nodenext` is now [treated differently](https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-beta/#validated-json-imports-in---module-nodenext) than `node16` for JSON imports and it requires the import attribute, so change the value to that and add the attribute to eliminate this typescript error. [`moduleResolution`](https://www.typescriptlang.org/tsconfig/#moduleResolution) is treated as an alias when `module` is `nodenext`, so we don't need to specify it. Also see https://github.com/microsoft/TypeScript/issues/60589. It appears the next Typescript release will fix this for `node16`, but I guess it'll still be good to switch to `nodenext`.
* Refactor issue filter (labels, poster, assignee) (#32771)wxiaoguang2024-12-1018-320/+293
| | | | | | | | | | | | Rewrite a lot of legacy strange code, remove duplicate code, remove jquery, and make these filters reusable. Let's forget the old code, new code affects: * issue list open/close switch * issue list filter (label, author, assignee) * milestone list open/close switch * milestone issue list filter (label, author, assignee) * project view (label, assignee)
* Make RepoActionView.vue support `##[group]` (#32770)wxiaoguang2024-12-102-14/+43
|
* [skip ci] Updated translations via CrowdinGiteaBot2024-12-103-2/+110
|
* Make Monaco theme follow browser, fully type codeeditor.ts (#32756)silverwind2024-12-091-34/+79
| | | | | | | | 1. Monaco's theme now follows changes in dark/light mode setting, this works via [`MediaQueryList`](https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList)'s [change event](https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList/change_event). 2. Fully type the file, it now passes typescript strict mode.
* Fix duplicate dropdown dividers (#32760)wxiaoguang2024-12-0910-42/+179
| | | | | | | | Fix #27466 The problem is that any item in the menu could be hidden, pure CSS won't work, and dropdown's builtin "hideDividers" doesn't work with our "scope dividers". The newly introduced "archived" label makes the dividers regression more.
* Remove unnecessary border in repo home page sidebar (#32767)yp053272024-12-091-2/+2
|
* [skip ci] Updated licenses and gitignoresGiteaBot2024-12-0920-52/+910
|
* Fix repo home row-right grow (#32763)wxiaoguang2024-12-092-8/+9
| | | Fix #32753
* Refactor issue list (#32755)wxiaoguang2024-12-088-155/+246
| | | | | 1. add backend support for filtering "poster" and "assignee" * due to the limits, there is no frontend support at the moment 2. rewrite TS code without jquery, now there are 14 jQuery files left:
* Fix compare page bug view as anonymous (#32754)Lunny Xiao2024-12-081-1/+3
| | | | Fix a bug introduced from https://github.com/go-gitea/gitea/pull/32403/files#diff-dc86301f15109eee38296d469630672193e0587ad1485fdd8f503bf4c789cf7eR692
* Split issue/pull view router function as multiple smaller functions (#32749)Lunny Xiao2024-12-082-298/+356
| | | | This PR splits issue/pull view function into multiple smaller functions. It also removed duplicated branches load.
* fix: render job title as commit message (#32748)metiftikci2024-12-082-16/+22
| | | | | | | resolves #32724 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Fix typescript errors in Vue files, fix regression in "Recent Commits" chart ↵silverwind2024-12-086-37/+59
| | | | | | | | | | | (#32649) - Fix all typescript errors in `.vue` files - Fix regression from https://github.com/go-gitea/gitea/pull/32329 where "Recent Commits" chart would not render. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Refactor LabelEdit (#32752)wxiaoguang2024-12-089-180/+97
| | | | | | | | | | | And fix a regression: https://github.com/go-gitea/gitea/pull/30053#discussion_r1874405470 Major changes: * rewrite without jquery * remove the "delete modal", using "link-action" is good enough * merge "new modal" and "edit modal"
* [skip ci] Updated translations via CrowdinGiteaBot2024-12-081-0/+7
|
* fix(project): add title to project view page (#32747)metiftikci2024-12-071-0/+1
| | | Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* [skip ci] Updated translations via CrowdinGiteaBot2024-12-0728-372/+405
|
* Fix case of .tsbuildinfo in .gitignore (#32737)silverwind2024-12-061-1/+1
| | | | The docs at https://www.typescriptlang.org/tsconfig/#tsBuildInfoFile are inconsistent, but I'm positive now that the file name is all-lowercase.
* Support "merge upstream branch" (Sync fork) (#32741)wxiaoguang2024-12-0610-136/+323
| | | | | | | | | Add basic "sync fork" support (GitHub-like) <details> ![image](https://github.com/user-attachments/assets/e71473f4-4518-48c7-b9e2-fedfcd564fc3) </details>
* Update changelog to add missed changelog (#32734)Lunny Xiao2024-12-061-0/+393
|
* GitHub like repo home page (#32213)yp053272024-12-0620-1043/+1245
| | | | | | | Move some components (description, license, release, language stats) to sidebar --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Refactor markdown render (#32736)wxiaoguang2024-12-065-31/+100
| | | and add some tests
* Make wiki pages visit fast (#32732)Lunny Xiao2024-12-062-10/+44
|
* Refactor markdown render (#32728)wxiaoguang2024-12-066-166/+268
| | | | Follow up recent render system refactoring PRs (split test code), and fine tune the math render (added some new cases)
* Refactor RepoActionView.vue, add `::group::` support (#32713)wxiaoguang2024-12-065-156/+301
| | | | | | | 1. make it able to "force reload", then the previous pending request won't block the new request 2. make it support `::group::` 3. add some TS types (but there are still many variables untyped, this PR is large enough, the remaining types could be added in the future)
* Bump relative-time-element to v4.4.4 (#32730)Yarden Shoham2024-12-062-5/+5
| | | | | | | | | | Fix #32716 Tested, it still works. - cc @wxiaoguang for https://github.com/github/relative-time-element/pull/296 Signed-off-by: Yarden Shoham <git@yardenshoham.com>
* Update dependencies, tweak eslint (#32719)silverwind2024-12-057-800/+974
| | | | | | | | | - ~~Remove `eslint-plugin-sonarjs`. I lost faith in it since they moved it to their monorepo and I can't recall the last time when this plugin raised a useful error.~~ - Add new rules from `no-jquery` - ~~Tweak typescript config to prevent temp files in root directory in certain situations~~ File is just gitignored now. - Tested all relevant dependencies
* Issue time estimate, meaningful time tracking (#23113)Illya Marchenko2024-12-0521-164/+390
| | | | | | | | | | | | | Redesign the time tracker side bar, and add "time estimate" support (in "1d 2m" format) Closes #23112 --------- Co-authored-by: stuzer05 <stuzer05@gmail.com> Co-authored-by: Yarden Shoham <hrsi88@gmail.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Fix fork page branch selection (#32711)Lunny Xiao2024-12-051-8/+6
| | | Fix #32709
* Add Arch package registry (#32692)KN4CK3R2024-12-0443-91/+1687
| | | | | | | | | | | | | | | | | | | | | | | Close #25037 Close #31037 This PR adds a Arch package registry usable with pacman. ![grafik](https://github.com/user-attachments/assets/81cdb0c2-02f9-4733-bee2-e48af6b45224) Rewrite of #25396 and #31037. You can follow [this tutorial](https://wiki.archlinux.org/title/Creating_packages) to build a package for testing. Docs PR: https://gitea.com/gitea/docs/pulls/111 Co-authored-by: [d1nch8g@ion.lc](mailto:d1nch8g@ion.lc) Co-authored-by: @ExplodingDragon --------- Co-authored-by: dancheg97 <dancheg97@fmnx.su> Co-authored-by: dragon <ExplodingFKL@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Use new mail package instead of an unmintained one (#32682)Lunny Xiao2024-12-0511-71/+133
| | | Resolve #18664
* Fix mentionable users when writing issue comments (#32715)wxiaoguang2024-12-045-15/+19
| | | Fix #32702
* Fix file editor & preview (#32706)wxiaoguang2024-12-046-94/+52
| | | | | | Fix a regression caused by jQuery removal (`renderPreviewPanelContent`) And simplify the file editor, it doesn't need to be that complex. And remove jQuery code.
* Remove outdated code about fixture generation (#32708)Lunny Xiao2024-12-043-167/+0
|
* Fix gogit `GetRefCommitID` (#32705)Zettat1232024-12-032-2/+34
|
* Fix delete branch perm checking (#32654)Lunny Xiao2024-12-045-81/+128
|
* Refactor markdown editor and use it for milestone description editor (#32688)wxiaoguang2024-12-0429-116/+147
| | | | | | | | | | Refactor markdown editor to clarify its "preview" behavior and remove jQuery code. Close #15045 --------- Co-authored-by: silverwind <me@silverwind.io>
* Fix issue title rendering and refactor legacy function names (#32703)wxiaoguang2024-12-0414-53/+69
| | | | | | | | Fix #32700, regression of recent markup refactoring And by the way, clarify many legacy problems: 1. Some "RenderXxx" functions do not really "render", they only call "post processors" 2. Merge "RenderEmoji | RenderCodeBlock", they are all for "simple issue title"
* Fix oauth2 login methods (#32698)wxiaoguang2024-12-032-4/+5
| | | | | | Regression of #32687 It should use "or" but not "and", otherwise the oauth2 methods won't show when no ENABLE_OPENID_SIGNIN
* Fix word overflow in file search page (#32695)yp053272024-12-032-1/+2
|
* Add Swift login endpoint (#32693)KN4CK3R2024-12-033-43/+77
| | | | | Fix #32683 This PR adds the login endpoint and fixes the documentation links.
* Quick fix for license file name (#32696)Lunny Xiao2024-12-031-0/+4
|
* Add "View all branches/tags" entry to Branch Selector (#32653)Kerwin Bryant2024-12-024-0/+15
| | | | | | | ![image](https://github.com/user-attachments/assets/7b62a38f-36d5-452a-8a97-204842c68b2e) --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Remove all "floated" CSS styles (#32691)wxiaoguang2024-12-035-50/+28
| | | | | | | | | | | | | | | | | | | | flex but don't float diff with ignoring spaces : https://github.com/go-gitea/gitea/pull/32691/files?diff=split&w=1 related pages: ### admin users ![image](https://github.com/user-attachments/assets/40dd4c46-3f5b-4a68-89b0-d0a9a806f1fc) ### milestone ![image](https://github.com/user-attachments/assets/e3efb630-f07c-4c9d-b877-71e28cddcdce) ### user account setting ![image](https://github.com/user-attachments/assets/d15609ee-016d-4aee-999a-b5455fe6185c)
* Optimize the styling of icon buttons within file-header-right (#32675)Kerwin Bryant2024-12-021-5/+5
| | | | | | | | | | | | | Optimize partial layout and styling to achieve uniformity and consistency. Some buttons's structure is `<a><span><svg/></span></a>`, while others buttons's structure is `<a><svg/></a>`. Additionally, some buttons have icons that are **14** in size, while others have icons that are **16**. Now, the layout has been unified to structure `<a><svg/></a>`, and the icon size for all buttons has been standardized to the default size of **16**. Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* fix: show tag name on branch/tag selector if repo shown from tag ref (#32689)metiftikci2024-12-022-4/+4
|
* Refactor RepoBranchTagSelector (#32681)wxiaoguang2024-12-028-288/+275
|