Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | repo: able to view size (#1158) | Unknwon | 2017-03-12 |
| | |||
* | repo/branches: overview and all (#2310) | Unknwon | 2017-03-11 |
| | |||
* | markdown: support Smartypants (#4162) | Unknwon | 2017-03-10 |
| | | | | Added new config section '[smartypants]', and disabled by default. | ||
* | issue_mail: send notifications to participants in comments (#2929) | Unknwon | 2017-03-10 |
| | |||
* | release: improve page load performance | Unknwon | 2017-03-10 |
| | | | | | | | | Previously, we load all releases of a repository which could hurt performance when the repository has a lot of releases. Now we're able to only load releases in current page view we need to show by matching with 'tag_name'. | ||
* | webhook: add issue comment event | Unknwon | 2017-03-09 |
| | |||
* | webhook: support Issues event (#2319) | Unknwon | 2017-03-09 |
| | | | | Also addresses #3485. | ||
* | models/user: handle case when user doesn't belong to any organization (#4258) | Unknwon | 2017-03-08 |
| | |||
* | mirror: update repository updated_unix after sync (#2807) | Unknwon | 2017-03-08 |
| | |||
* | Protected branches: allow whitelist bypass require pull request check (#4207) | Unknwon | 2017-03-08 |
| | |||
* | security: fix vulnerability in changing username | Unknwon | 2017-03-07 |
| | | | | Reported by João Arnaut. | ||
* | Update locale | Unknwon | 2017-03-06 |
| | |||
* | modules/markdown: fix wrong raw link to internal images | Unknwon | 2017-03-05 |
| | |||
* | routers/repo/http: only prompt HTTP Basic Authentication when intended | Unknwon | 2017-03-04 |
| | | | | | | | | | Sometimes user could simply request wrong URL, but if that wrong URL has nothing related Git HTTP operations, HTTP Basic Authentication should not prompted. Instead, clean 404 page should be presented. The patch also supports Git HTTP operations without '.git' suffix to the repository name, which addresses #4226 and #4189. | ||
* | models/org: reduce to 2 SQL executions for GetOrgIDsByUserID | Unknwon | 2017-03-03 |
| | | | | | | | This also addresses #4231. It is now ignoring nonexistent organizations returned from 'org_user' table. This was a bug caused in older version that didn't cleanup 'org_user' table when delete an organization. | ||
* | setting: fix Webhook.SkipTLSVerify didn't load (#4228) | Unknwon | 2017-03-02 |
| | |||
* | vendor: update golang.org/x/crypto/ssh | Unknwon | 2017-03-01 |
| | | | | Related to #4160 | ||
* | hook: fix can’t be executed while run as service on Windows (#4207) | Unknwon | 2017-02-28 |
| | |||
* | webhook: fix push panic to organizational repository (#4206) | Unknwon | 2017-02-28 |
| | |||
* | Merge branch 'master' of github.com:gogits/gogs into develop | Unknwon | 2017-02-28 |
|\ | |||
| * | Bump version | Unknwon | 2017-02-28 |
| | | |||
* | | cmd: able to backup and restore | Unknwon | 2017-02-27 |
| | | | | | | | | | | | | Not very robust, must execute under correct workdir. Addresses #2072, #3708, #648 | ||
* | | cmd: refactoring command name | Unknwon | 2017-02-27 |
|/ | |||
* | Prepare release | Unknwon | 2017-02-27 |
| | |||
* | modes/org: code format for PR #4194 | Unknwon | 2017-02-26 |
| | |||
* | repo: able to add organization member as repository collaborator | Unknwon | 2017-02-24 |
| | |||
* | repo: add protect branch whitelist (#4177) | Unknwon | 2017-02-23 |
| | | | | | Add options to add users and teams to whitelist of a protected branch. This is only available for organizational repositories. | ||
* | models/access: hasAccess only need userID not user object | Unknwon | 2017-02-23 |
| | |||
* | release: fix unable to edit release of a fork repository | Unknwon | 2017-02-23 |
| | |||
* | csrf: able to set custom cookie name | Unknwon | 2017-02-22 |
| | | | | Add new config option '[session] CSRF_COOKIE_NAME'. | ||
* | comment: only show title of commit message from a commit ref (#3206) | Unknwon | 2017-02-22 |
| | |||
* | webhook: also only enable certain types (#3356) | Unknwon | 2017-02-21 |
| | | | | Add new config option '[webhook] TYPES’. | ||
* | webhook: minor improvements on Discord | Unknwon | 2017-02-21 |
| | |||
* | Prepare release | Unknwon | 2017-02-21 |
| | |||
* | webhook: support color for Discord | Unknwon | 2017-02-21 |
| | |||
* | editor: redirect to new pull request page after create new branch | Unknwon | 2017-02-20 |
| | |||
* | router: fix 404 when repository name contains dot | Unknwon | 2017-02-20 |
| | | | | E.g. atomi.github.io | ||
* | diff: able to highlight line with hashtag URL | Unknwon | 2017-02-20 |
| | |||
* | models/webhook: fix bad query | Unknwon | 2017-02-20 |
| | |||
* | repo: several minor improvements | Unknwon | 2017-02-19 |
| | | | | | | 1. Fix sample content didn't show up when hook doesn't exist. 2. Fix CSS 'word-break' to use 'break-word' not 'break-all'. 3. Fix single quote in 'locale_en-US.ini' file. | ||
* | api: add list user and organization's repositories (#3984) | Unknwon | 2017-02-18 |
| | |||
* | cron: add repository archive cleanup (#4061) | Unknwon | 2017-02-18 |
| | |||
* | install: able to enable builtin SSH server (#3773) | Unknwon | 2017-02-18 |
| | |||
* | webhook: add native Discord support | Unknwon | 2017-02-18 |
| | |||
* | repo: assignee can be anyone who has read access (#3739) | Unknwon | 2017-02-17 |
| | |||
* | repo/release: add pagination (#2164) | Unknwon | 2017-02-17 |
| | |||
* | Initial version of protected branches (#776) | Unknwon | 2017-02-17 |
| | | | | | - Able to restrict force push and deletion - Able to restrict direct push | ||
* | Security: fix XSS attack on milestone | Unknwon | 2017-02-17 |
| | | | | Reported by Miguel Ángel Jimeno. | ||
* | refactoring: SSH and HTTP push procees is now unified | Unknwon | 2017-02-16 |
| | | | | | | | | | | | | | | We used to handle SSH and HTTP push separately which produces duplicated code, but now with post-receive hook, the process is unified to one single place and much cleaner. Thus, UpdateTask struct is removed. Narrow down the range of Git HTTP routes to reduce condufsing HTTP Basic Authentication window popup on browser. By detecting <old-commit, new-commit, ref-name> inside post-receive hook, Git HTTP doesn't need to read the whole content body anymore, which completely solve the RAM problem reported in #636. | ||
* | repo/editor: fix breadcrumb path cuts parent dirs (#3859) | Unknwon | 2017-02-16 |
| |