Commit Graph

2851 Commits

Author SHA1 Message Date
Frederic Guillot
a3819c33d2 Add missing HTML escaping for textarea 2016-08-29 21:16:08 -04:00
Frederic Guillot
08bdb708e7 Add the possibility to move tasks without drag and drop 2016-08-28 22:30:48 -04:00
Frederic Guillot
a24840a533 Add the possibility to unlock users from the user interface 2016-08-26 21:27:30 -04:00
Frederic Guillot
98798c5b76 Show both time spent and estimated on the board 2016-08-25 21:15:41 -04:00
Frederic Guillot
71221c1bbd Fix indentation in PR #2587 2016-08-23 20:33:02 -04:00
Frederic Guillot
fb24b527f2 Merge pull-request #2587 2016-08-23 20:24:43 -04:00
Frederic Guillot
4ffb4df5fd Sync locales 2016-08-23 20:15:01 -04:00
Frederic Guillot
3b4326c397 Fix conflicts for PR #2603 (Korean translations) 2016-08-23 20:08:16 -04:00
ninearif
73c79a6eb2 fix Thai translation 2016-08-23 20:02:12 -04:00
nineArif
b0698c8d35 fix Thai typo 2016-08-23 20:01:57 -04:00
Napier
ad9dc93cc3 Translate to korean 2016-08-23 18:18:13 +09:00
Frederic Guillot
51fef80f7d Store board collapsed mode user preference in the database 2016-08-22 21:20:48 -04:00
Frederic Guillot
1d16a53c48 Store comment sorting direction in user metadata 2016-08-21 20:36:16 -04:00
Frederic Guillot
8e83e404fb Add FileCache driver 2016-08-21 18:46:34 -04:00
Frederic Guillot
093905c895 Show project name in notifications 2016-08-21 13:45:06 -04:00
dalmond
e8ec7861af New Automatic Actions: Colour by Swimlane and Priority by Swimlane 2016-08-17 12:52:24 +01:00
dalmond
5c685a2a78 Automatic Actions now support Swimlanes 2016-08-17 12:51:59 +01:00
Frederic Guillot
900e98068e Rename template hooks from PR #2586 2016-08-16 19:09:57 -04:00
stinnux
72e46401ff Added template hooks for menu on project list 2016-08-16 09:12:50 +02:00
Frederic Guillot
5f82a942c0 Fix PHP notice when sending overdue notifications 2016-08-15 20:46:26 -04:00
Frederic Guillot
50b354851f Merge pull-request #2539 2016-08-14 14:34:02 -04:00
Frederic Guillot
e24c37290b Make form columns and popover more responsive 2016-08-14 14:19:20 -04:00
Frederic Guillot
cb73946751 Make project overview page more responsive 2016-08-14 13:46:46 -04:00
Frederic Guillot
e985e27281 Make tables more responsive 2016-08-14 12:50:07 -04:00
Frederic Guillot
2ca3cc7f72 Fix PHP 5.3 compatibility issue 2016-08-13 23:47:58 -04:00
Frederic Guillot
521379a350 Display same task summary on all task view pages 2016-08-13 20:23:04 -04:00
Frederic Guillot
a631b76175 Remove fixed table on dashboard and improve input placeholders 2016-08-13 19:34:21 -04:00
Frederic Guillot
4520026e91 Replace SQL query by a PicoDB query 2016-08-13 19:19:55 -04:00
Frederic Guillot
010199e8f8 Add the possibility to attach template hooks with a callback 2016-08-13 18:41:01 -04:00
Frederic Guillot
2ebe8b3272 Add the possibility to attach template hooks with local variables 2016-08-13 18:08:46 -04:00
Frederic Guillot
ffe61abc69 Improve form helpers and add more hooks 2016-08-13 17:49:27 -04:00
Frederic Guillot
4ffaba2ba0 Add reference hooks 2016-08-13 14:23:53 -04:00
Eskiso
531a210db3 Fixed missing space on Activities title 2016-08-12 12:05:17 +01:00
Anjar Febrianto
801dcd35cd Update Locale for ID (#2578) 2016-08-11 20:20:31 -04:00
Frederic Guillot
195fae86d6 Make filter box and project header more responsive 2016-08-08 21:54:45 -04:00
Frederic Guillot
fd0bea2187 Use Sass custom mixins for grid 2016-08-07 22:52:29 -04:00
Frederic Guillot
41f93e0957 Add SASS variables for colors 2016-08-07 18:08:28 -04:00
Frederic Guillot
508a5eaf85 Re-indent code of PR #2560 2016-08-07 13:43:18 -04:00
Frederic Guillot
f0192a7b2e Merge pull-request #2560 2016-08-07 13:41:44 -04:00
Frederic Guillot
69c6271c6e Convert application header to grid system 2016-08-07 12:51:03 -04:00
Thomas Lutz
74b2a1ffb4 fix selfsigned ssl certificates swift mail 2016-08-07 17:30:17 +02:00
Frederic Guillot
590d2c2396 Show project name on task bulk creation form 2016-08-07 10:33:23 -04:00
Frederic Guillot
c0ee8b4092 Show project name in task forms 2016-08-07 10:31:48 -04:00
Frederic Guillot
928d27d2ad Reduce number of font size 2016-08-07 09:02:26 -04:00
Frederic Guillot
1dc947eac4 Convert vanilla CSS to SASS 2016-08-06 22:19:36 -04:00
Duamel Sevans
411a66c8cb Update russian translation (#2542) 2016-08-02 22:06:55 -04:00
Rys Sommefeldt
861441ed31 Display priority changes in board view for inverted priority ranges
Similar to allowing update of priorities when `priority_end` is greater than `priority_start`, to support inverted priority ranges, allow that change to propagate into `formatPriority` and display in the board view.
2016-08-01 15:49:43 +01:00
Rys Sommefeldt
b30a4fca24 Allow priority changes when start and end differ
It's common to want an 'inverted' priority range, for example where P0 is the highest. The task helper logic would hide priority editing when priority_end was larger than priority_start. This logic change allows it by checking that priority_start and priority_end are different.
2016-08-01 12:00:32 +01:00
Frederic Guillot
86c950743f Move API calls for task metadata to a separate class 2016-07-31 15:10:42 -04:00
Frederic Guillot
f5abf6c94e Merge pull-request #2533 2016-07-31 14:44:18 -04:00