06 May, 2014
3 commits
-
Fix mobile menu after adding help link After https://github.com/gitlabhq/gitlabhq/pull/6897 the mobile menu ran off the left side of the screen. I don't see much we can do to squeeze all the items into mobile's width. I think hiding one of the items is acceptable and which is a matter of opinion. I suggest hiding the user's avatar on mobile but the search icon or help icon would both be options as well. Let me know if you want a different icon hidden on mobile. [Before Screenshot](https://www.dropbox.com/s/hnfmaln3ilcy0p7/Screen%20Shot%202014-05-02%20at%205.17.28%20PM.png) [After Screenshot](https://www.dropbox.com/s/3ifxa8gfa12h37h/Screen%20Shot%202014-05-05%20at%204.52.25%20AM.png)
-
Fix missing lines in Parallel Diff
-
Add support to show files from wiki repository on wiki pages
05 May, 2014
3 commits
02 May, 2014
6 commits
-
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Save repository size to projects table This will allow us to get largest repos by simple sql query. Also it increase loading of `admin/projects` page a lot because right now it calculate 20x project sizes per page
-
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
01 May, 2014
5 commits
-
Remove redundant signin link from signin page.
-
Add help link to header.
30 Apr, 2014
1 commit
29 Apr, 2014
6 commits
-
do not html encode plaintext part of emails for push notifications
-
Fix unclear text in broadcast message view.
-
editing preview
28 Apr, 2014
6 commits
-
Users who have not refreshed their browser tab will poll GitLab using outdated JS. This change makes the server fall back to the old behavior (send all comments) for old clients, instead of throwing an exception for old clients.
26 Apr, 2014
1 commit
-
Also-by: Andrew Karpow <andy@ndyk.de>
25 Apr, 2014
2 commits
-
Add uniq db index on project_id+iid Because: * its faster * it solves problem with repeating iid's in one project
24 Apr, 2014
4 commits
-
Fix syntax highlighting
-
Fix diff height
23 Apr, 2014
3 commits
-
allow passing user's email address in custom Gravatar urls Some custom avatar systems use the user's email address rather than its hash. This merge request will allow the administrator to configure gitlab-ce to use the user's email address gravatar.plain_url and gravatar.ssl_url in the config file like this: ``` gravatar: enabled: true plain_url: "http://company.com/avatar/?mail=%{email}&size=%{size}" ssl_url: "https://company.com/avatar/?mail=%{email}&size=%{size}" ``` It's a only a 2 word patch.