Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix missing branch in release bug (#3108) (#3117) | Ethan Koenig | 2017-12-08 | 1 | -0/+1 |
| | |||||
* | Add init support of orgmode document type on file view and readme (#2525) | Lunny Xiao | 2017-09-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | * add init support of orgmode document type on file view and readme * fix imports * fix imports and readmeExist * fix imports order * fix format * remove unnecessary convert | ||||
* | Sync releases table with tags on push and for mirrors (#2459) | Lauris BH | 2017-09-20 | 1 | -45/+53 |
| | | | | | | | | | | | | | | | * Sync releases table with tags on push and for mirrors * Code style fixes * Fix api to return only releases * Optimize release creation and update Minimize posibility of race conditions * Fix release lower tag name updating * handle tag reference update by addionally comparing commit id | ||||
* | Fix release display and correct paging (#2080) | Lauris BH | 2017-06-29 | 1 | -8/+7 |
| | |||||
* | Pagination on releases page (#2035) | iszla | 2017-06-28 | 1 | -2/+8 |
| | | | | | | | | | | | | | | | | | | | | | | * Added count to GetReleasesByRepoID so pagination will work * Separated it out to a new function, can then also leave the API part unaffected * Remove extra whitespace added in untouched function * Added comment and corrected name in error handler * Account for if the user is owner or not in the count * Also check if repo is draft * revert back to the correct count in the ReleasesToDisplay loop * Fixed lint error regarding else with return statement * Use Cond struct instead of string, corrected name in error handler * Removed unused return variable names | ||||
* | Let not-logged-in users view releases (#1999) | Ethan Koenig | 2017-06-18 | 1 | -1/+4 |
| | |||||
* | Fix paginater length (#1866) | Ethan Koenig | 2017-06-04 | 1 | -1/+1 |
| | |||||
* | Display draft releases (#1854) | Ethan Koenig | 2017-06-03 | 1 | -75/+23 |
| | | | | | | | | * Display draft releases * Include ctx.User in user cache * Integration test | ||||
* | fix: tag contain character ) will http 500 on release page (#1670) | Bo-Yi Wu | 2017-05-04 | 1 | -0/+1 |
| | |||||
* | fix releases count and resolved #764 (#857) | Lunny Xiao | 2017-02-07 | 1 | -1/+1 |
| | |||||
* | Allow custom public files (#782) | Thomas Boerger | 2017-01-28 | 1 | -2/+2 |
| | | | | | | * Allow custom public files * Gofmt code, lots of places not related to this pr | ||||
* | Attach to release (#673) | Philip Couling | 2017-01-15 | 1 | -2/+21 |
| | | | | | | | | | | | | | | * Moved attachaments POST url from /issues/attachments to /attachments * Implemented attachment upload on release page * Implemented downloading attachments on the release page * Added zip and gzip files to default allowed attachments * Implemented uploading attachments on edit release * Renamed UploadIssueAttachment to UploadAttachment | ||||
* | bug fix release | Lunny Xiao | 2017-01-09 | 1 | -0/+5 |
| | |||||
* | Make releases faster than before and resolved #490 (#588) | Lunny Xiao | 2017-01-06 | 1 | -56/+46 |
| | | | | | | * make releases faster than before and resolved #490 * fix comment | ||||
* | change the default action when deleting a release to not delete tag | Lunny Xiao | 2017-01-03 | 1 | -1/+2 |
| | |||||
* | Cache users on list releases (#527) | Lunny Xiao | 2016-12-29 | 1 | -14/+22 |
| | |||||
* | fixed vulnerabilities on deleting release (#399) | Lunny Xiao | 2016-12-16 | 1 | -1/+1 |
| | |||||
* | golint fixed for routers (#208) | Lunny Xiao | 2016-11-24 | 1 | -10/+16 |
| | |||||
* | Allow updating draft releases while keeping them as draft | Sandro Santilli | 2016-11-14 | 1 | -0/+1 |
| | | | | Closes #162 | ||||
* | Normalize files with gofmt | Thibault Meyer | 2016-11-11 | 1 | -1/+1 |
| | |||||
* | Update import paths from github.com/go-gitea to code.gitea.io (#135) | Sandro Santilli | 2016-11-10 | 1 | -6/+6 |
| | | | | | | | - Update import paths from github.com/go-gitea to code.gitea.io - Fix import path for travis See https://docs.travis-ci.com/user/languages/go#Go-Import-Path | ||||
* | Add Pagination to Releases-page | Kim "BKC" Carlbäcker | 2016-11-07 | 1 | -1/+8 |
| | |||||
* | Change import reference to match gitea instead of gogs (#37) | Rémy Boulanouar | 2016-11-03 | 1 | -6/+6 |
| | |||||
* | #2246 fully support of webhooks for pull request | Unknwon | 2016-08-14 | 1 | -2/+2 |
| | |||||
* | Fix #3314: Cannot edit release with tag name contains slash (#3434) | Thibault Meyer | 2016-08-11 | 1 | -2/+2 |
| | |||||
* | Fix #3315: Release dont use tag creation date (#3374) | Thibault Meyer | 2016-08-06 | 1 | -0/+10 |
| | | | | | | | | | | * Fix #3315: Release dont use tag creation date * Simplify code and apply gofmt * remove useless block (ctx.Repo.GitRepo.GetTag) on EditReleasePost * apply gofmt on modified files | ||||
* | routers/repo/release: Use correct branch reference (#3330) | 마누엘 | 2016-07-27 | 1 | -9/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When calculating the current behind commit count the calculation should use the current release target to get the total commit count. Should the release target not exist anymore the calculation will return zero for the newest release on that target. Older releases on that target will then use that calculated commit count as reference. The only use case that is now somehow invalid is when the release target was merged / deleted after a tag on that release target: master 1 - - - - - - - 6 \ / branch 2 - 3 - 4 - 5 When `4` is the last tag on branch `branch` and the branch `branch` is not yet deleted the calculated numbers would be: 1 commits to branch since this release Now if the branch `branch` gets deleted the calculation function will not find the branch and use the commit count of the newest release (`4`) as reference resulting in: 0 commit to branch since this release This fixes #3326 | ||||
* | Refactor User.Id to User.ID | Unknwon | 2016-07-24 | 1 | -1/+1 |
| | |||||
* | #3076 detect invalid tag name git error | Unknwon | 2016-07-23 | 1 | -3/+6 |
| | |||||
* | Rename module: middleware -> context | Unknwon | 2016-03-11 | 1 | -8/+8 |
| | |||||
* | Remove duplicated of code | Unknwon | 2016-03-06 | 1 | -53/+48 |
| | |||||
* | Make markdown as an independent module | Unknwon | 2016-02-20 | 1 | -2/+3 |
| | |||||
* | Removed HTTP 500 error on the release page when a user deleted their account | Martin Hartkorn | 2016-02-10 | 1 | -4/+12 |
| | |||||
* | move out git module and #1573 send push hook | Unknwon | 2015-12-09 | 1 | -14/+14 |
| | |||||
* | fix #1829 and fix #890 | Unknwon | 2015-12-04 | 1 | -2/+2 |
| | |||||
* | fix #1383 | Unknwon | 2015-11-20 | 1 | -2/+15 |
| | |||||
* | repo sidebar active class | Unknwon | 2015-11-16 | 1 | -0/+5 |
| | |||||
* | fix #1958 | Unknwon | 2015-11-15 | 1 | -44/+27 |
| | |||||
* | rename fields | Unknwon | 2015-11-03 | 1 | -3/+3 |
| | |||||
* | WIP: create PR - choose branch | Unknwon | 2015-08-08 | 1 | -6/+6 |
| | |||||
* | Updating context and fixing permission issues | Peter Smit | 2015-02-16 | 1 | -5/+5 |
| | | | | | | The boolean flags in the repo context have been replaced with mode and two methods Also, the permissions have been brought more in line with https://help.github.com/articles/permission-levels-for-an-organization-repository/ , Admin Team members are able to change settings of their repositories. | ||||
* | Finish new UI for release page | Unknwon | 2014-12-10 | 1 | -38/+54 |
| | |||||
* | Fix #605, fix #255, fix #101 | Unknwon | 2014-11-06 | 1 | -13/+36 |
| | |||||
* | Huge updates!!!!! Be careful to merge!!!! | Unknwon | 2014-07-26 | 1 | -218/+216 |
| | |||||
* | New UI merge in progress | Unknwon | 2014-07-26 | 1 | -217/+217 |
| | |||||
* | Use constants to name template file | Unknown | 2014-06-22 | 1 | -4/+15 |
| | |||||
* | Support edit release and save as draft | Unknown | 2014-06-12 | 1 | -39/+97 |
| | |||||
* | Fix #199 | Unknown | 2014-06-12 | 1 | -1/+6 |
| | |||||
* | Fix #197 | Unknown | 2014-06-12 | 1 | -2/+8 |
| | |||||
* | update with git api | slene | 2014-05-10 | 1 | -2/+1 |
| |