Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Display the board name in the page title | Maxime Quandalle | 2015-10-22 | 1 | -0/+23 |
| | | | | Fixes #364 | ||||
* | Prefer ES5 methods over underscore utilities | Maxime Quandalle | 2015-10-22 | 10 | -18/+20 |
| | | | | | | | | | | | | | | Since 07cc454 (ie the switch to Meteor 1.2) we includes the `es5-shim` polyfill to support methods like `Array.prototype.forEach` in a consistent way across all supported browsers (IE8+). MDG recently released a blog post recommending the use of these native methods instead of underscore [0]. We know follow this recommendation. This commit also favor some ES6 features (argument defaults, destructing assignment) in places where we didn’t use them. [0]: http://info.meteor.com/blog/es2015-get-started | ||||
* | Upgrade peerlibrary:blaze-components to v0.14 | Maxime Quandalle | 2015-10-21 | 7 | -15/+15 |
| | | | | | This change includes method renames and others UI related packages updates. | ||||
* | Upgrade kenton:accounts-sandstorm package to 0.1.6 | Maxime Quandalle | 2015-10-21 | 1 | -2/+2 |
| | | | | | We now delegates more user attributes sync (avatar and permissions) to this package instead of doing it ourselves. | ||||
* | Merge branch 'xavierpriour-devel' into devel | Maxime Quandalle | 2015-10-20 | 10 | -79/+151 |
|\ | | | | | | | | | Conflicts: models/import.js | ||||
| * | Provide a default date for lists and cards creation date | Maxime Quandalle | 2015-10-20 | 4 | -21/+23 |
| | | | | | | | | | | | | | | | | See https://github.com/wekan/wekan/pull/362#issuecomment-149645497 for motivation. This commit also contains cosmetic changes to the import Popup and on the code style to be more consistent with the code base. | ||||
| * | Import board: import comments and log activities | Xavier Priour | 2015-10-19 | 3 | -29/+46 |
| | | |||||
| * | Import board: now proper createdAt dates | Xavier Priour | 2015-10-17 | 1 | -1/+9 |
| | | |||||
| * | Import board: added UI | Xavier Priour | 2015-10-17 | 7 | -48/+93 |
| | | |||||
* | | Re-implement label deletion | Maxime Quandalle | 2015-10-20 | 1 | -1/+1 |
|/ | | | | | | This was not ported during v0.9 re-factor. Fixes #322 | ||||
* | Translate the label colors | Maxime Quandalle | 2015-10-15 | 2 | -1/+5 |
| | |||||
* | Add some ESLint rules and fix some related issues | Maxime Quandalle | 2015-10-14 | 2 | -8/+6 |
| | |||||
* | Prevent dublicated empty labels of the same color | Maxime Quandalle | 2015-10-14 | 1 | -1/+1 |
| | |||||
* | Import single card: proper error handling | Xavier Priour | 2015-10-14 | 2 | -23/+41 |
| | |||||
* | Import single card: create an 'importCard' activity entry | Xavier Priour | 2015-10-14 | 2 | -0/+12 |
| | |||||
* | Import single card: refactor to meteor method | Xavier Priour | 2015-10-14 | 2 | -55/+14 |
| | |||||
* | Import single card: archived card | Xavier Priour | 2015-10-14 | 1 | -0/+1 |
| | |||||
* | Import single card: map labels | Xavier Priour | 2015-10-14 | 1 | -10/+33 |
| | |||||
* | Import single card: now with description and comments | Xavier Priour | 2015-10-14 | 1 | -1/+16 |
| | |||||
* | Import single card: title and proper sort index | Xavier Priour | 2015-10-14 | 1 | -0/+26 |
| | |||||
* | Add card import UI | Xavier Priour | 2015-10-14 | 2 | -0/+11 |
| | |||||
* | Use a better API to retrieve the new card position | Maxime Quandalle | 2015-10-13 | 1 | -1/+1 |
| | | | | Fixes #347 | ||||
* | Set some DOM transformation to fix some of the accessibility issues | Maxime Quandalle | 2015-10-13 | 1 | -0/+41 |
| | | | | | | See #337 for the complete rationale by @ndarilek -- thank you :) Closes #338 | ||||
* | Abstract the jquery-textcomplete integration with EscapeActions | Maxime Quandalle | 2015-10-13 | 2 | -25/+31 |
| | | | | | We now can re-use this integration in multiple places, this will be useful for #342 for instance. | ||||
* | Fix a typo in a function call introduced in a78debc | Maxime Quandalle | 2015-10-13 | 1 | -1/+1 |
| | |||||
* | Support app deployment under a path prefix | Maxime Quandalle | 2015-10-08 | 5 | -7/+11 |
| | | | | Fixes #133 | ||||
* | Merge pull request #326 from AlexanderS/fix/display-all-archived | Maxime Quandalle | 2015-09-24 | 1 | -2/+8 |
|\ | | | | | sidebar: Filter archived cards/lists for current board | ||||
| * | sidebar: Filter archived cards/lists for current board | Alexander Sulfrian | 2015-09-24 | 1 | -2/+8 |
| | | | | | | | | | | The archived items should be filtered for the current board or else you will get a global list of all archived items on all boards. | ||||
* | | Fix removeMemberPopup | Alexander Sulfrian | 2015-09-20 | 2 | -1/+10 |
|/ | | | | | The removeMemberPopup was missing the required helper to get the user and board information and the user profile field is called "fullname" and not "name". | ||||
* | Merge pull request #316 from AlexanderS/fix/delete-card | Maxime Quandalle | 2015-09-20 | 4 | -5/+5 |
|\ | | | | | | | | | Fix card deletion This bug was introduced in b3851817. | ||||
| * | Fix Popup.afterCommit | Alexander Sulfrian | 2015-09-20 | 4 | -5/+5 |
| | | | | | | | | | | | | We need to use "function() {}" instead of the ES6 style "() {}" with popup.afterCommit because we need the original value of "this" inside the callback. | ||||
* | | Shortcut: F toggles filter sidebar | fisle | 2015-09-19 | 1 | -0/+11 |
| | | |||||
* | | Shortcut: Spacebar assigns self to current card | fisle | 2015-09-19 | 1 | -0/+23 |
| | | |||||
* | | Add some strings to the translation set | Maxime Quandalle | 2015-09-18 | 1 | -2/+2 |
| | | |||||
* | | Display “Filter cards” action for non-board members | Maxime Quandalle | 2015-09-18 | 1 | -16/+15 |
|/ | |||||
* | Merge pull request #305 from AlexanderS/fix/multiselect-toggle | Maxime Quandalle | 2015-09-16 | 1 | -4/+4 |
|\ | | | | | | | | | Fix multiselect toggle logic This bug was introduced in 45b662a | ||||
| * | Fix multiselect toggle logic | Alexander Sulfrian | 2015-09-16 | 1 | -4/+4 |
| | | | | | | | | | | | | If every element already has the label/member, we do not need to add it but it should be removed and if every element does not have the element, we should add it. | ||||
* | | Remove redundant words | Alexander Sulfrian | 2015-09-16 | 1 | -2/+2 |
|/ | |||||
* | Merge branch 'master' into devel | Maxime Quandalle | 2015-09-10 | 4 | -4/+13 |
|\ | |||||
| * | Fix the draft saving feature on card switching | Maxime Quandalle | 2015-09-10 | 2 | -2/+5 |
| | | |||||
| * | Fix labels drag and drop from the sidebar | Maxime Quandalle | 2015-09-10 | 1 | -1/+1 |
| | | | | | | | | | | | | This bug was introduced in e964fbb5. Fixes #295. | ||||
| * | Fix text selection in the card detailed pane | Maxime Quandalle | 2015-09-10 | 1 | -1/+7 |
| | | | | | | | | Fixes #255. | ||||
* | | Centralize all mutations at the model level | Maxime Quandalle | 2015-09-08 | 13 | -249/+78 |
|/ | | | | | | | | | | | | | | | This commit uses a new package that I need to document. It tries to solve the long-standing debate in the Meteor community about allow/deny rules versus methods (RPC). This approach gives us both the centralized security rules of allow/deny and the white-list of allowed mutations similarly to Meteor methods. The idea to have static mutation descriptions is also inspired by Facebook's Relay/GraphQL. This will allow the development of a REST API using the high-level methods instead of the MongoDB queries to do the mapping between the HTTP requests and our collections. | ||||
* | Fix some dead links | Maxime Quandalle | 2015-09-06 | 4 | -42/+54 |
| | | | | | | | | | | This commit fixes the download link in the activity feed on the sidebar and the mention link on card description and comments (replaced by a popup). `eslint .` now passes without any error or warning. Fixes #286 | ||||
* | Fix header style when there are too much starred boards | Maxime Quandalle | 2015-09-06 | 2 | -4/+14 |
| | | | | Fixes #237 | ||||
* | Fix a recurrent English typo | Maxime Quandalle | 2015-09-06 | 9 | -24/+24 |
| | |||||
* | Add a missing translation | Maxime Quandalle | 2015-09-06 | 1 | -4/+2 |
| | |||||
* | Hide some disabled forms for anonymous board viewers | Maxime Quandalle | 2015-09-06 | 3 | -17/+22 |
| | | | | | | Fixes #288 Fixes #289 Fixes #290 | ||||
* | Fix markdown rendering in the message viewer | Maxime Quandalle | 2015-09-06 | 1 | -0/+7 |
| | | | | Fixes #284 | ||||
* | Show avatars in search results | Maxime Quandalle | 2015-09-06 | 2 | -2/+8 |
| | | | | Fixes #265 |