summaryrefslogtreecommitdiffstats
path: root/options
Commit message (Collapse)AuthorAgeFilesLines
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-181-0/+33
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-171-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-111-0/+27
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-102-1/+26
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-092-0/+51
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-0829-3/+63
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-081-3/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-081-6/+6
|
* Integrate OAuth2 Provider (#5378)Jonas Franz2019-03-081-0/+32
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-074-13/+16
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-061-0/+7
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-051-9/+28
|
* Add ability to sort issues by due date (#6206) (#6244)stevegt2019-03-051-0/+2
| | | Signed-off-by: Steve Traugott <stevegt@t7a.org>
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-011-3/+69
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-281-0/+7
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-271-0/+26
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-261-1/+24
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-251-0/+50
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-191-0/+18
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-191-0/+24
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-1829-0/+29
|
* Implement "conversation lock" for issue comments (#5073)Lanre Adelowo2019-02-181-0/+19
|
* Allow to set organization visibility (public, internal, private) (#1763)Rémy Boulanouar2019-02-181-0/+6
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-181-0/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-1717-34/+0
|
* Allow labels to contain emoji (#6063)John Olheiser2019-02-161-2/+2
| | | | | | | | | | | | | | | | | | | * Add emoji to labels Minor cleanup of tribute code in footer.tmpl Signed-off-by: jolheiser <john.olheiser@gmail.com> * Quick find/replace in other i18n files containing label translations Signed-off-by: jolheiser <john.olheiser@gmail.com> * Revert "Quick find/replace in other i18n files containing label translations" This reverts commit ec3e1a3a1775989301bb2c1cd08e8871b317688d. * Add style to overwrite emoji height in labels * Revert Makefile change that makes Windows work
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-141-0/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-131-0/+2
|
* Allow markdown files to read from the LFS (#5787)zeripath2019-02-121-0/+1
| | | | | | | This PR makes it possible for the markdown renderer to render images and media straight from the LFS. Fix #5746 Signed-off-by: Andrew Thornton [art27@cantab.net](mailto:art27@cantab.net)
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-121-0/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-112-0/+7
|
* Add option to close issues via commit on a non master branch (#5992)Lanre Adelowo2019-02-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes #5957 * add tests to make sure config option is respected * use already defined struct * - use migration to make the flag repo wide not for the entire gitea instance Also note that the config value can still be set so as to be able to control the value for new repositories that are to be created - fix copy/paste error in copyright header year and rearrange import - use repo config instead of server config value to determine if a commit should close an issue - update testsuite * use global config only when creating a new repository * allow repo admin toggle feature via UI * fix typo and improve testcase * fix fixtures * add DEFAULT prefix to config value * fix test
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-082-2/+6
|
* Enhance closed PR and Issue status in the list (#6000)Lanre Adelowo2019-02-081-0/+2
| | | | | | | | | | * working version * Update options/locale/locale_en-US.ini Co-Authored-By: adelowo <adelowomailbox@gmail.com> * update templates
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-081-0/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-061-0/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-051-0/+2
|
* Pull request conflict files detection (#5951)Lunny Xiao2019-02-051-0/+1
| | | | | | | | | | * add conflict detection * test pull request conflict files * fix detection files number * fix comments
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-052-0/+2
|
* Automatically clear stopwatch on merging a PR (#4327)Lanre Adelowo2019-02-051-0/+1
| | | | | | | | | | | | | | | | | | | | * Don't display buttons if there are no notices * clear stopwatch on merging a PR * remove redundant gt check * use ctx.Flash as per @bkcsoft comment * stop timer on closing issues/PRs too * updated translation as per review * redirect to login page after successfully activating account * remove unrelated changes * stop timer for issues that are closed via commits too..Not just the 'close' UI button
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-042-0/+5
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-0413-13/+0
|
* Fix ssh deploy and user key constraints (#1357) (#5939)zeripath2019-02-031-1/+1
| | | | | | | | | | | | | | | | 1. A key can either be an ssh user key or a deploy key. It cannot be both. 2. If a key is a user key - it can only be associated with one user. 3. If a key is a deploy key - it can be used in multiple repositories and the permissions it has on those repositories can be different. 4. If a repository is deleted, its deploy keys must be deleted too. We currently don't enforce any of this and multiple repositories access with different permissions doesn't work at all. This PR enforces the following constraints: - [x] You should not be able to add the same user key as another user - [x] You should not be able to add a ssh user key which is being used as a deploy key - [x] You should not be able to add a ssh deploy key which is being used as a user key - [x] If you add an ssh deploy key to another repository you should be able to use it in different modes without losing the ability to use it in the other mode. - [x] If you delete a repository you must delete all its deploy keys. Fix #1357
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-311-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-293-0/+20
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-287-7/+1
|
* Fix "pulls.blocked_by_approvals" text (#5879)Lanre Adelowo2019-01-281-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-284-0/+89
|
* Fix wording of #5858 issue.review.reject string (#5869)zeripath2019-01-271-1/+1
| | | | | As per @lafriks comment this should be: requested changes Signed-off-by: Andrew Thornton <art27@cantab.net>
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-271-0/+8
|