Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | repo: rename PageIsViewCode -> PageIsViewFiles | Unknwon | 2017-03-22 |
| | | | | Also highlight 'Files' tab when use editor. | ||
* | repo/webhook: able to retrigger delivery history (#2187) | Unknwon | 2017-03-19 |
| | |||
* | repo: allow issues and wiki for bare repository (#4104) | Unknwon | 2017-03-16 |
| | |||
* | release: improve attachment handle | Unknwon | 2017-03-13 |
| | |||
* | release: able to add attchments to release (#1614) | Unknwon | 2017-03-13 |
| | | | | Added new config section '[release.attachment]’. | ||
* | repo: commits, branches and releases should highlight files tab | Unknwon | 2017-03-11 |
| | |||
* | repo/branches: overview and all (#2310) | Unknwon | 2017-03-11 |
| | |||
* | repo/pull: handle head repository of merged pull requests deleted | Unknwon | 2017-03-10 |
| | |||
* | repo/release: 404 when edit draft (4262) | Unknwon | 2017-03-10 |
| | |||
* | 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. | ||
* | 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 |
| | |||
* | refactoring: modules/auth/*_form.go -> modules/form | Unknwon | 2017-02-27 |
| | |||
* | release: fix unable to edit release of a fork repository | Unknwon | 2017-02-23 |
| | |||
* | router: fix 404 when repository name contains dot | Unknwon | 2017-02-20 |
| | | | | E.g. atomi.github.io | ||
* | vendor: update github.com/go-macaron/toolbox (#2857) | Unknwon | 2017-02-20 |
| | | | | Support HEAD requests of '/healthcheck' for service monitoring. | ||
* | 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. | ||
* | commits: able to specify pageSize dynamically (#3965) | Unknwon | 2017-02-18 |
| | | | | | | | Usage: <url>?page={page}&pageSize={pageSize} Also avoid/removed getting total commits count for pagination, users are only allowed navigation by 'newer' and 'older'. | ||
* | webhook: add native Discord support | Unknwon | 2017-02-18 |
| | |||
* | 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 | ||
* | 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. | ||
* | wiki: fix crash with blob name contains tab (#3916) | Unknwon | 2017-02-16 |
| | |||
* | vendor: update git-module (#4128) | Unknwon | 2017-02-15 |
| | |||
* | git: delegate all server-side Git hooks (#1623) | Unknwon | 2017-02-14 |
| | |||
* | Use very strong ciphers (#4116) | Aaron Wood | 2017-02-12 |
| | | | | | | * Use very strong ciphers * Remove TLS_RSA_WITH_AES_256_GCM_SHA384 to be compatible with Go 1.5 | ||
* | diff: fix can't show compare page for fork repository (#4110) | Unknwon | 2017-02-12 |
| | |||
* | Able to disable non-admin to create new organization (#1556) | Unknwon | 2017-02-10 |
| | | | | | Add new config option '[admin] DISABLE_REGULAR_ORG_CREATION', by default it's 'false'. | ||
* | log: start using gopkg.in/clog.v1 | Unknwon | 2017-02-09 |
| | |||
* | routers/repo/branch: fix can't delete branch with slashes after merge (#4089) | Unknwon | 2017-02-09 |
| | |||
* | routers/repo/pull: fix 404 on PR compare (#4074) | Unknwon | 2017-02-08 |
| | | | | | | | | | | | | Due to recent code refactor, ctx.PullRequest is not initialized for route repo.CompareAndPullRequest, which leads the UI thinks the compare is not happening inside the same repository. The current fix is to allow compare URL to include redundant head user name so everything works fine again, but code logic isn't as clean as before. Made comments about possible future fix. | ||
* | Do a fast-fail testing on repository URL before mirroring | Unknwon | 2017-01-31 |
| | | | | | To ensure the URL is accessible under good condition to prevent long blocking on URL resolution without syncing anything. | ||
* | Move models/mail.go to modules/mail.go | Unknwon | 2017-01-30 |
| | | | | To use interface to replace *models.User in avoiding cycle import. | ||
* | Able to set custom Access-Control-Allow-Origin header (#3987) | Unknwon | 2017-01-28 |
| | | | | Added new config option '[http] ACCESS_CONTROL_ALLOW_ORIGIN'. | ||
* | Add 'Organizations' page to user settings (#3587) | Unknwon | 2017-01-27 |
| | | | | User is now able to view full list of organizations belongs to. | ||
* | Setting orgs (#3587) | Rémy Boulanouar | 2017-01-27 |
| | | | | | | | | | | | | * Implement organizations listing in setting and allow user to create new organization. * Implement organizations listing in setting and allow user to create new organization. * Add space remove by mistake * Remove unused part of the template * Update display and behavior according to @Unknown remarks | ||
* | Update XORM required version and 'go fmt' | Unknwon | 2017-01-26 |
| | |||
* | Fetch before Checkout when create pull request (#3699) | Unknwon | 2016-12-23 |
| | |||
* | Fix regex on route file (#3851) | Thibault Meyer | 2016-12-21 |
| | |||
* | Merge branch 'develop' of https://github.com/tanapoln/gogs into develop | Unknwon | 2016-12-21 |
|\ | |||
| * | provide button to delete merged pull request | Tanapol Nearunchorn | 2016-09-02 |
| | | |||
* | | Update git-module version to support back Git 1.7.1 | Unknwon | 2016-12-08 |
| | | |||
* | | #3590 fix 404 for release draft edition | Unknwon | 2016-09-03 |
|/ | | | | Closes #3591 | ||
* | Add the ability to explore organizations (#3573) | Daniel Oaks | 2016-09-01 |
| | | | | | | * Add ability to explore organizations * Use right icon for org explore links | ||
* | Minor code fix [CI SKIP] | Unknwon | 2016-08-31 |
| | |||
* | #3548 disable issue cannot edit label and milestonefor pull requests | Unknwon | 2016-08-30 |
| | |||
* | Web editor: support upload files | Unknwon | 2016-08-30 |
| | |||
* | codegangsta/cli => urfave/cli (#3546) | Kim "BKC" Carlbäcker | 2016-08-30 |
| | |||
* | Bump git-module required version | Unknwon | 2016-08-29 |
| | |||
* | Load a set of predefined labels (#3459) | Thibault Meyer | 2016-08-29 |
| | | | | | | | | | | | | | | | | | | | | | | * Can use a predefined set of labels * Change UI * Fix HTML file indentation * Avoid reading file from other directory (security issue) * Apply a better fix * Remove not used variable * Merge upstream/develop * Do modifications * Raname * remove binding + rename variable |