aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix wrong slack webhook payload URLUnknwon2015-12-067-7/+16
|
* Merge pull request #2112 from nanoant/patch/better-git-message-displayUnknwon2015-12-066-25/+52
|\ | | | | Render commit msg as header + verbatim description
| * Render commit msg as header + verbatim descriptionAdam Strzelecki2015-12-076-25/+52
|/ | | | | | | | | Most commit in Git are expected to follow standard of single header line, followed by description paragraphs, separated by empty line from previous block. Previously Gogs were treating everything as single header. Now we are trying to render only first line as header, but following lines (description chunks) as a verbatim.
* prepare releaseUnknwon2015-12-0617-200/+458
|
* Merge pull request #2110 from msoedov/misspellingsUnknwon2015-12-063-10/+10
|\ | | | | Fix misspelled words
| * Fix misspelled wordsAlex Myasoedov2015-12-063-10/+10
|/
* remember page number when delete repoUnknwon2015-12-052-2/+2
|
* #2063 Ability to delete repo from admin panelUnknwon2015-12-0510-7/+52
|
* APIs: admin usersUnknwon2015-12-058-32/+207
|
* update READMEUnknwon2015-12-053-19/+19
|
* fix #2105 and fix #1857Unknwon2015-12-0513-360/+443
|
* fix #2102Unknwon2015-12-051-1/+1
|
* Set default language for i18nUnknwon2015-12-051-1/+2
|
* #2052 advanced select ops for system noticesUnknwon2015-12-0513-54/+186
|
* init with all enabledUnknwon2015-12-041-6/+9
|
* template fixUnknwon2015-12-042-3/+3
|
* fix #1829 and fix #890Unknwon2015-12-0425-94/+248
|
* #2045 have fallback but empty valueUnknwon2015-12-041-3/+0
|
* #2045 move fallback to empty stringUnknwon2015-12-041-2/+3
|
* fix #2101Unknwon2015-12-041-4/+0
|
* fix panic for #2045Unknwon2015-12-043-116/+113
|
* refactor API routes and some work for #976Unknwon2015-12-0417-376/+373
|
* more fixes on #2045Unknwon2015-12-041-9/+9
|
* Merge branch 'develop' of github.com:gogits/gogs into developUnknwon2015-12-037-12/+14
|\
| * minor JS and UI fixUnknwon2015-12-033-1/+4
| |
| * fix #2095Unknwon2015-12-031-1/+1
| |
| * Merge pull request #2094 from nanoant/patch/less-pronounced-sha-labelsUnknwon2015-12-034-2/+8
| |\ | | | | | | UI: Use more subtle grey SHA1 labels
| | * UI: More subtle strips on commits listAdam Strzelecki2015-12-032-0/+6
| | | | | | | | | | | | | | | | | | With grey SHA1 labels, we should consider having also more subtle strips on commits list. As current strips blend too much with grey SHA1 labels and top bar, making hard to distinguish headers from content.
| | * UI: Use more subtle grey SHA1 labelsAdam Strzelecki2015-12-032-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Current green SHA1 labels are more pronounced than other UI elements attracting attention as if they were most important thing in the UI, while they are not as important, especially without real Git client. Using grey SHA1 labels makes the UI more balanced, less aggressive and lets user to focus on other content elements. NOTE: Neither GitHub or Bitbucket uses so heavy pronunciation as Gogs.
| * | work on #2093Unknwon2015-12-031-1/+1
| | |
| * | Merge pull request #2092 from nanoant/patch/non-bold-last-commit-shaUnknwon2015-12-032-7/+0
| |\ \ | | |/ | |/| UI: Remove CSS rule making last-commit SHA bold
| | * UI: Remove CSS rule making last-commit SHA boldAdam Strzelecki2015-12-032-7/+0
| |/ | | | | | | This removes remains from old design, that was not cleaned by previous #2068 PR.
* / fix broken linkUnknwon2015-12-031-1/+1
|/
* 500 when wiki not existsUnknwon2015-12-031-4/+12
|
* fix #2090Unknwon2015-12-031-1/+6
|
* fix #2087Unknwon2015-12-032-2/+2
|
* fix #976Unknwon2015-12-0315-57/+235
|
* more UI minor fixesUnknwon2015-12-0210-35/+37
|
* Merge pull request #2088 from nanoant/patch/further-layout-fixesUnknwon2015-12-0226-62/+41
|\ | | | | Further layout fixes
| * CSS: Octicons 16px fix outside of _octicons.lessAdam Strzelecki2015-12-033-6/+5
| | | | | | | | | | | | Otherwise the fix will be overwritten by next _octicons.less update. This is follow-up for 22b0dfbb35f10f22ef0485e289f44532d7a71863.
| * UI: Always show menu on repo pagesAdam Strzelecki2015-12-0323-56/+36
| | | | | | | | | | Merges repo/sidebar.tmpl with repo/header.tmpl and makes every repo page use middleware.RepoRef() necessary to display information on this menu.
* | clean test dataUnknwon2015-12-021-3/+1
| |
* | minor CSS fixUnknwon2015-12-023-2/+25
| |
* | minor CSS fix for #2068Unknwon2015-12-022-0/+2
|/
* minor fix for #2086Unknwon2015-12-021-28/+28
|
* Merge pull request #2068 from nanoant/patch/repo-file-list-layoutUnknwon2015-12-0228-298/+214
|\ | | | | Repo file list layout & misc fixes
| * UI: Display last-commit header without 2nd columnAdam Strzelecki2015-12-033-2/+12
| | | | | | | | | | | | | | | | This uses a CSS trick making first th to be relative block with width equal to first two columns, effectively working around inability to use colspan="2" on first row that was breaking "fixed-layout" for tables. Also use grey header for last-commit SHA1 tag.
| * UI: Keep repo URL action right of ref combo & pathAdam Strzelecki2015-12-023-108/+73
| | | | | | | | | | | | | | Just use secondary menu instead custom ".head.meta", which simplifies code. Also do not display repo URL action when we are in subdirectory or viewing a file.
| * UI: Make repository menu divide header and contentAdam Strzelecki2015-12-0224-49/+78
| | | | | | | | | | This is more inline with way GitHub looks like and feels much more natural and in style with rest of the interface.
| * UI: Keep repository settings menu button rightAdam Strzelecki2015-12-021-3/+5
| |