gitea

Development moved to Codeberg

Commits at cfb4c23a5009b9c236d48ac0bc156577c7d70741

  1. cfb4c23a [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  2. b41111bc Fix duplicate paragraph in documentation (#19820) Vladimir Yakovlev authored at GitHub comitted at
  3. 8720f876 Make WIP prefixes case insensitive, e.g. allow `Draft` as a WIP prefix (#19780) The issue was that only the actual title was converted to uppercase, but not the prefix as specified in `WORK_IN_PROGRESS_PREFIXES`. As a result, the following did not work: WORK_IN_PROGRESS_PREFIXES=Draft:,[Draft],WIP:,[WIP] One possible workaround was: WORK_IN_PROGRESS_PREFIXES=DRAFT:,[DRAFT],WIP:,[WIP] Then indeed one could use `Draft` (as well as `DRAFT`) in the title. However, the link `Start the title with DRAFT: to prevent the pull request from being merged accidentally.` showed the suggestion in uppercase; so it is not possible to show it as `Draft`. This PR fixes it, and allows to use `Draft` in `WORK_IN_PROGRESS_PREFIXES`. Fixes #19779. Co-authored-by: zeripath <art27@cantab.net> Ondřej Čertík authored at GitHub comitted at
  4. 9574626a Fix follower display on user page (#19805) silverwind authored at GitHub comitted at
  5. 0692f437 Show source/target branches on PR's list (#19747) Add ability to show source/target branches for Pull Request's list. It can be useful to see which branches are used in each PR right in the list. Co-authored-by: Alexey Korobkov <akorobkov@cian.ru> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv> IT-AlexKor authored at GitHub comitted at
  6. 35d0358c Github style following followers (#19482) Removed tabbed following and followers from user page and added Github style following followers. istiak101 authored at GitHub comitted at
  7. 0cbec3cd alpine 3.16 (#19797) Co-authored-by: 6543 <6543@obermui.de> techknowlogick authored at GitHub comitted at
  8. 93ab9074 Prevent loop if there is an error in GetNotificationCount (#19799) If the context is cancelled `.NotificationUnreadCount` in a template can cause an infinite loop with `ctx.ServerError()` being called, which creates a template that then calls `.NotificationUnreadCount` calling `GetNotificationCount()` with the cancelled context resulting in an error that calls `ctx.ServerError`... and so on... This PR simply stops calling `ctx.ServerError` in the error handler code for `.NotificationUnreadCount` as we have already started rendering and so it is too late to call `ctx.ServerError`. Additionally we skip logging the error if it's a context cancelled error. Fix #19793 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io> zeripath authored at GitHub comitted at
  9. b24db66a Add 'make tidy' (#19800) Convenience command to run 'go mod tidy'. The compat flag is set to the minimum supported go version instead of min version minus one which is go's default, which eliminated some checksums in go.sum as a result. silverwind authored at GitHub comitted at
  10. 4266bd92 Update document to use FHS `/usr/local/bin/gitea` instead of `/app/...` for Docker (#19794) * Update document to use FHS `/usr/local/bin/gitea` instead of `/app/...` in Docker * Update docs/content/doc/installation/with-docker.zh-cn.md wxiaoguang authored at GitHub comitted at
  11. 7671a332 [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  12. b65ad70f Add the possibility to allow the user to have a favicon which differs from the main logo (#18542) * Changed the filename of the favicon SVG This allows the user to have a favicon which differs from the logo. * Added favicon.svg This is needed to accommodate the changes for allowing the user to have a differing logo and favicon * Adjusted page to accommodate what icon is used as favicon * Added functionality to also generate the favicon.svg via generate-images.js * Adjusted the description for the new favicon compatibility Co-authored-by: silverwind <me@silverwind.io> * Updated generate-images.js to generate favicons from a separate favicons.svg file This belongs to PR #18542. * Added description on how custom favicons can be generated * Replaced space indents with tabs * Synced changes with current state of the file * Synced changes with current state of the file Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv> Jan-Eric Schober authored at GitHub comitted at
  13. d2a91e5e [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  14. fa5dec96 [skip ci] Updated licenses and gitignores GiteaBot authored at GiteaBot comitted at
  15. ffb7ab31 Estimate Action Count in Statistics (#19775) zeripath authored at GitHub comitted at
  16. 468387e9 Prevent NPE when cache service is disabled (#19703) The cache service can be disabled - at which point ctx.Cache will be nil and the use of it will cause an NPE. The main part of this PR is that the cache is used for restricting resending of activation mails and without this we cache we cannot restrict this. Whilst this code could be re-considered to use the db and probably should be, I think we can simply disable this code in the case that the cache is disabled. There are also several bug fixes in the /nodeinfo API endpoint. Signed-off-by: Andrew Thornton <art27@cantab.net> zeripath authored at GitHub comitted at
  17. bc4764ff Detect truncated utf-8 characters at the end of content as still representing utf-8 (#19773) Our character detection algorithm can potentially incorrectly detect utf-8 as iso-8859-x if there is a truncated character at the end of the partially read file. This PR changes the detection algorithm to truncated utf8 characters at the end of the buffer. Fix #19743 Signed-off-by: Andrew Thornton <art27@cantab.net> zeripath authored at GitHub comitted at
  18. f6c99297 Add silentcodeg to MAINTAINERS (#19771) * Add silentcodeg to MAINTAINERS * add missing trailing g to chat nick Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> silentcodeg authored at GitHub comitted at
  19. 876cad00 Allows repo search to match against "owner/repo" pattern strings (#19754) * Allows repo search to match against "owner/repo" pattern strings * Gofumpt * Adds test case for "owner/repo" style repo search * With "owner/repo" search terms, prioritise results which match the owner field * Fixes unquoted SQL string in repo search Eekle authored at GitHub comitted at
  20. ba7750d6 Update JS dependencies (#19767) - Update all JS dependencies minus Vue - Tested mermaid, swagger, build Co-authored-by: 6543 <6543@obermui.de> silverwind authored at GitHub comitted at
  21. a9af93cb Nuke the incorrect permission report on /api/v1/notifications (#19761) The permissions created in convertRepo use a minimal perm.AccessModeRead instead of correctly computing the permission for the repository. This incorrect permission is then reported to the user. I do not believe that reporting the permissions is helpful and therefore I propose we simply null these out. The user can check their permissions using a different endpoint. Fix #19759 Signed-off-by: Andrew Thornton <art27@cantab.net> zeripath authored at GitHub comitted at
  22. fd7d83ac Move almost all functions' parameter db.Engine to context.Context (#19748) * Move almost all functions' parameter db.Engine to context.Context * remove some unnecessary wrap functions Lunny Xiao authored at GitHub comitted at
  23. d81e31ad Move org functions (#19753) * Move org functions * Fix comment Lunny Xiao authored at GitHub comitted at
  24. 63f6e6c0 [doctor] pq: syntax error at or near "." quote user table name (#19765) silentcodeg authored at GitHub comitted at
  25. 2c66bd8a [doctor] update the help with fix capabilities (#19762) * [doctor] update the help with fix capabilities silentcodeg authored at GitHub comitted at
  26. ac8bee6a Remove fomantic progress module (#19760) Replace it with HTML `<progress>` element. The bar won't go green at 100% anymore but I think it's not something that fits stylistically anyways. silverwind authored at GitHub comitted at
  27. cc7236e8 Make Ctrl+Enter (quick submit) work for issue comment and wiki editor (#19729) * Make Ctrl+Enter (quick submit) work for issue comment and wiki editor * Remove the required `SubmitReviewForm.Type`, empty type (triggered by quick submit) means "comment" * Merge duplicate code wxiaoguang authored at GitHub comitted at
  28. 3b359b16 Enable packages by default again (as described by docs) (#19746) delvh authored at GitHub comitted at
  29. 9da3d78e Replace blue button and label classes with primary (#19763) * make blue really blue * replace blue button and label classes with primary * add --color-blue-dark * add light color variants, tweak a few colors * fix colors * add comment Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> silverwind authored at GitHub comitted at
  30. ce525147 Fix org package owner permissions (#19742) Old code did not respect owner visibility and the organization access calculation was wrong if the user was not a member. KN4CK3R authored at GitHub comitted at