summaryrefslogtreecommitdiffstats
path: root/options
Commit message (Collapse)AuthorAgeFilesLines
* [skip ci] Updated translations via CrowdinGiteaBot2022-05-022-1/+6
|
* [skip ci] Updated licenses and gitignoresGiteaBot2022-05-012-0/+466
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-301-0/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-291-0/+6
|
* Add "Allow edits from maintainer" feature (#18002)qwerty2872022-04-281-0/+3
| | | | | | | | | | | | | | | | | Adds a feature [like GitHub has](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) (step 7). If you create a new PR from a forked repo, you can select (and change later, but only if you are the PR creator/poster) the "Allow edits from maintainers" option. Then users with write access to the base branch get more permissions on this branch: * use the update pull request button * push directly from the command line (`git push`) * edit/delete/upload files via web UI * use related API endpoints You can't merge PRs to this branch with this enabled, you'll need "full" code write permissions. This feature has a pretty big impact on the permission system. I might forgot changing some things or didn't find security vulnerabilities. In this case, please leave a review or comment on this PR. Closes #17728 Co-authored-by: 6543 <6543@obermui.de>
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-281-0/+1
|
* Add a new menu in file view to open blame view and fix blame view select ↵Lunny Xiao2022-04-261-1/+2
| | | | range bug (#19500)
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-2628-1/+127
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-251-0/+3
|
* Add RSS Feed buttons to Repo, User and Org pages (#19370)ktprograms2022-04-241-0/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-241-0/+7
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-231-9/+58
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-221-0/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-213-1/+7
|
* Add Helm Chart registry (#19406)KN4CK3R2022-04-191-0/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-181-0/+1372
|
* [skip ci] Updated licenses and gitignoresGiteaBot2022-04-171-1/+9
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-131-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-102-0/+117
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-0811-11/+0
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-071-0/+20
|
* Show ssh command directly in template instead of i18n translation (#19335)原俊杰2022-04-061-1/+0
| | | | | | | | | | | | | * add missing space for generate ssh token command Signed-off-by: Junjie Yuan <yuan@junjie.pro> * Do not use i18n for ssh command * Remove unnecessary settings.ssh_token_code * Revert locale_zh-CN.ini Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-061-0/+8
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-053-42/+130
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-043-7/+532
|
* Fix links to packages documentation (#19315)Steven2022-04-041-9/+9
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-031-0/+66
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-04-0127-0/+85
|
* Add Goroutine stack inspector to admin/monitor (#19207)zeripath2022-03-311-0/+2
| | | | | | | | | | | | | | | | | | | Continues on from #19202. Following the addition of pprof labels we can now more easily understand the relationship between a goroutine and the requests that spawn them. This PR takes advantage of the labels and adds a few others, then provides a mechanism for the monitoring page to query the pprof goroutine profile. The binary profile that results from this profile is immediately piped in to the google library for parsing this and then stack traces are formed for the goroutines. If the goroutine is within a context or has been created from a goroutine within a process context it will acquire the process description labels for that process. The goroutines are mapped with there associate pids and any that do not have an associated pid are placed in a group at the bottom as unbound. In this way we should be able to more easily examine goroutines that have been stuck. A manager command `gitea manager processes` is also provided that can export the processes (with or without stacktraces) to the command line. Signed-off-by: Andrew Thornton <art27@cantab.net>
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-312-0/+3
|
* fix link to package registry docs (#19268)Norwin2022-03-301-2/+2
|
* Add Package Registry (#16510)KN4CK3R2022-03-301-0/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added package store settings. * Added models. * Added generic package registry. * Added tests. * Added NuGet package registry. * Moved service index to api file. * Added NPM package registry. * Added Maven package registry. * Added PyPI package registry. * Summary is deprecated. * Changed npm name. * Sanitize project url. * Allow only scoped packages. * Added user interface. * Changed method name. * Added missing migration file. * Set page info. * Added documentation. * Added documentation links. * Fixed wrong error message. * Lint template files. * Fixed merge errors. * Fixed unit test storage path. * Switch to json module. * Added suggestions. * Added package webhook. * Add package api. * Fixed swagger file. * Fixed enum and comments. * Fixed NuGet pagination. * Print test names. * Added api tests. * Fixed access level. * Fix User unmarshal. * Added RubyGems package registry. * Fix lint. * Implemented io.Writer. * Added support for sha256/sha512 checksum files. * Improved maven-metadata.xml support. * Added support for symbol package uploads. * Added tests. * Added overview docs. * Added npm dependencies and keywords. * Added no-packages information. * Display file size. * Display asset count. * Fixed filter alignment. * Added package icons. * Formatted instructions. * Allow anonymous package downloads. * Fixed comments. * Fixed postgres test. * Moved file. * Moved models to models/packages. * Use correct error response format per client. * Use simpler search form. * Fixed IsProd. * Restructured data model. * Prevent empty filename. * Fix swagger. * Implemented user/org registry. * Implemented UI. * Use GetUserByIDCtx. * Use table for dependencies. * make svg * Added support for unscoped npm packages. * Add support for npm dist tags. * Added tests for npm tags. * Unlink packages if repository gets deleted. * Prevent user/org delete if a packages exist. * Use package unlink in repository service. * Added support for composer packages. * Restructured package docs. * Added missing tests. * Fixed generic content page. * Fixed docs. * Fixed swagger. * Added missing type. * Fixed ambiguous column. * Organize content store by sha256 hash. * Added admin package management. * Added support for sorting. * Add support for multiple identical versions/files. * Added missing repository unlink. * Added file properties. * make fmt * lint * Added Conan package registry. * Updated docs. * Unify package names. * Added swagger enum. * Use longer TEXT column type. * Removed version composite key. * Merged package and container registry. * Removed index. * Use dedicated package router. * Moved files to new location. * Updated docs. * Fixed JOIN order. * Fixed GROUP BY statement. * Fixed GROUP BY #2. * Added symbol server support. * Added more tests. * Set NOT NULL. * Added setting to disable package registries. * Moved auth into service. * refactor * Use ctx everywhere. * Added package cleanup task. * Changed packages path. * Added container registry. * Refactoring * Updated comparison. * Fix swagger. * Fixed table order. * Use token auth for npm routes. * Enabled ReverseProxy auth. * Added packages link for orgs. * Fixed anonymous org access. * Enable copy button for setup instructions. * Merge error * Added suggestions. * Fixed merge. * Handle "generic". * Added link for TODO. * Added suggestions. * Changed temporary buffer filename. * Added suggestions. * Apply suggestions from code review Co-authored-by: Thomas Boerger <thomas@webhippie.de> * Update docs/content/doc/packages/nuget.en-us.md Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Thomas Boerger <thomas@webhippie.de>
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-301-0/+1
|
* Show last cron messages on monitor page (#19223)zeripath2022-03-291-0/+1
| | | | | | | As discussed on #19221 we should store the results of the last task message on the crontask and show them on the monitor page. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* New cron task: delete old system notices (#19219)Pilou2022-03-281-0/+1
| | | Add a new cron task which deletes the old system notices.
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-281-0/+2
|
* [skip ci] Updated licenses and gitignoresGiteaBot2022-03-272-1/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-2523-44/+2
|
* Update issue_no_dependencies description (#19112)MeIchthys2022-03-231-2/+2
| | | | | | To be more consistent and concise we could change the issue_no_dependencies from: `This issue currently doesn't have any dependencies. ` to `No dependencies set.` like we do for the due date and others. Co-authored-by: delvh <dev.lh@web.de>
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-231-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-214-0/+14
|
* [skip ci] Updated licenses and gitignoresGiteaBot2022-03-201-0/+6
|
* Do not send activation email if manual confirm is set (#19119)zeripath2022-03-181-0/+1
| | | | | | | | | | If the mailer is configured then even if Manual confirm is set an activation email is still being sent because `handleUserCreated` is not checking for this case. Fix #17263 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-171-32/+32
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-142-37/+53
|
* [skip ci] Updated licenses and gitignoresGiteaBot2022-03-131-0/+9
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-122-0/+15
|
* [skip ci] Updated translations via CrowdinGiteaBot2022-03-102-0/+3
|
* Add button for issue deletion (#19032)Otto Richter (fnetX)2022-03-091-0/+3
| | | | Co-authored-by: Norwin <noerw@users.noreply.github.com> Co-authored-by: 6543 <6543@obermui.de>
* Feature: show issue assignee on project board (#15232)Roger Luo2022-03-091-0/+1
| | | | * Show assignees in project boards.