summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix avatar support on SanstormMaxime Quandalle2015-12-303-16/+16
| | | | | | | | | | The bug comes for 9154b06 which this commit partially reverts. The synchronization between the user document profile and the Sandstorm HTTP headers is still not perfect. Having a clean model may requires the `accounts-sandstorm` to expose a hook to modify the user document just after the `services.sandstorm` credentials are updated. Fixes #460
* Fix drag and drop on SandstormMaxime Quandalle2015-12-303-13/+27
| | | | | | | | | | | | | | This bug was introduced with the introduction of fast-render in 41b23f8. With fast-render data is available instantly after the page logging, but calls to `Meteor.userId()` still return `null` as the user isn't authenticated on the DDP channel yet (previously the data was loaded on DDP after user authentication). Which mean that we know need to reactively activate Drag and Drop on user log in. I'm not sure why I was not able to reproduce this bug outside of Sandstorm. Fixes #453
* Release 0.10.0Maxime Quandalle2015-12-221-2/+2
|
* Pull translations from TransifexMaxime Quandalle2015-12-2212-368/+401
|
* Remove the import trello card featureMaxime Quandalle2015-12-223-6/+1
| | | | | | See the following discussion for rationale: https://github.com/wekan/wekan/issues/113#issuecomment-163039089
* Fix invitation email subjectMaxime Quandalle2015-12-212-6/+10
|
* Support card and and drop on mobile webMaxime Quandalle2015-12-211-1/+1
| | | | Fixes #449
* Don't display sing-in link to connected usersMaxime Quandalle2015-12-211-2/+3
|
* Don't publish private boards meta-data to former membersMaxime Quandalle2015-12-211-1/+4
| | | | Fixes #302
* Unassign members before removing them from a boardMaxime Quandalle2015-12-211-2/+5
| | | | Closes #399
* Release v0.10.0-rc4v0.10.0-rc4Maxime Quandalle2015-12-191-2/+2
|
* Improve some activitiy messagesMaxime Quandalle2015-12-191-5/+5
| | | | Fixes #433
* Fix home header barMaxime Quandalle2015-12-191-1/+1
| | | | | | | | | | The issue was introduced in 3b2eb0f but was only partially fixed (in urgency) in 71b9a42. We sould have test to avoid these trivial regressions! (I guess React will also yelp in this particular case by removing the need to link the template and the "component", and thus removing the possibility to break this link) Fixes #434
* Merge pull request #435 from xavierpriour/develMaxime Quandalle2015-12-188-0/+166
|\ | | | | | | | | Export a board to JSON Fixes #396
| * Export: improved API routesXavier Priour2015-12-173-16/+22
| | | | | | | | | | | | - use an explicit "boards" domain: /api/boards/:boardId - pass authToken as a request parameter: /api/boards/:boardId?authToken=:token - in the future, same route can be used with authToken set in the Authenticate: header easily
| * Improved doc on server-side export routeXavier Priour2015-12-171-0/+10
| |
| * Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-1727-130/+451
| |\
| * | Export: include attachmentsXavier Priour2015-12-172-16/+38
| | |
| * | Export: add _format fieldXavier Priour2015-12-171-0/+1
| | |
| * | Export Wekan now server-based with proper authXavier Priour2015-12-166-26/+42
| | |
| * | Export wekan: do not export board.starsXavier Priour2015-12-161-6/+7
| | |
| * | Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-163-91/+52
| |\ \
| * | | fix eslintXavier Priour2015-12-132-3/+3
| | | |
| * | | Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-1342-313/+539
| |\ \ \
| * | | | board export now checks authenticationXavier Priour2015-12-136-21/+52
| | | | |
| * | | | export works but no authenticationXavier Priour2015-12-111-5/+23
| | | | |
| * | | | export board to Wekan JSONXavier Priour2015-12-096-0/+61
| | | | |
* | | | | Merge pull request #444 from floatinghotpot/patch-9Maxime Quandalle2015-12-175-15/+34
|\ \ \ \ \ | |_|_|_|/ |/| | | | fix board header issue
| * | | | fix board headeer issuefloatinghotpot2015-12-175-15/+34
|/ / / /
* | | | Complete the release notes for 0.10Maxime Quandalle2015-12-172-2/+6
| | | |
* | | | Merge pull request #442 from floatinghotpot/mobile-webMaxime Quandalle2015-12-1723-128/+433
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | This PR improves the UI on devices or windows with small screens. Fixes #75 Fixes #437
| * | | | add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-1723-128/+433
| | |/ / | |/| |
* | | | Merge pull request #439 from Zyko0/develMaxime Quandalle2015-12-162-0/+12
|\ \ \ \ | |_|_|/ |/| | | One click deploy to Scalingo
| * | | Add Scalingo one-click deploybertrand jung2015-12-142-0/+12
| |/ /
* / / Replace reywood:publish-composite by cottz:publish-relationsMaxime Quandalle2015-12-143-91/+52
|/ / | | | | | | | | | | | | | | | | Since bug #431 is due to publish-composite I tried to fix this package and propose a pull request but the code was difficult to refactor. I decided to use @cottz package instead which handled DDP messages in the correct order. Fixes #431
* | Release v0.10.0-rc3v0.10.0-rc3Maxime Quandalle2015-12-101-1/+1
| |
* | Add a button to move selected cardsMaxime Quandalle2015-12-103-9/+26
| | | | | | | | | | | | | | This is an alternative to drag and drop to move a set of selected cards. This feature was available at the list level until I deleted it in 5bdf91b, so it makes sense to add it back at the multi-selection level.
* | Dynamically resize the new card form if the title is too longMaxime Quandalle2015-12-092-2/+8
| |
* | Fix a regression introduced in 71b9a42fMaxime Quandalle2015-12-092-7/+2
| | | | | | | | The buttons in the board header were not click-able anymore.
* | Release v0.10-RC2v0.10-rc2Maxime Quandalle2015-12-091-1/+1
| |
* | Pull translations from Transifex in prepartion of v0.10-RC2Maxime Quandalle2015-12-0913-133/+338
| |
* | Allow the header bar customizationMaxime Quandalle2015-12-0912-50/+98
| | | | | | | | | | This commit also provide a way to escape the Shorcuts page on Sandstorm.
* | Fix board archive instructionsMaxime Quandalle2015-12-092-3/+3
| | | | | | | | Fixes #277.
* | Remove the move and archive all cards of a list featureMaxime Quandalle2015-12-094-30/+1
| | | | | | | | | | | | | | | | | | | | This operation should now be handled using the multi-selection feature, ie “select all cards” and then move them or click the “archive selection” button. This new process add an extra click which I consider reasonable enough for a relatively rare operation -- plus I want to encourage mutli-selection usage. Closes #390.
* | Merge pull request #426 from floatinghotpot/patch-8Maxime Quandalle2015-12-089-78/+62
|\ \ | |/ |/| bugfix: only care active members, also optimize some code
| * bugfix: only care active members, also optimize some codefloatinghotpot2015-12-089-78/+62
|/
* Release v0.10.0-rc1v0.10.0-rc1Maxime Quandalle2015-12-071-3/+3
|
* Merge branch 'master' into develMaxime Quandalle2015-12-071-0/+6
|\
| * Create a security disclosure processMaxime Quandalle2015-10-211-0/+6
| |
* | Update dependenciesMaxime Quandalle2015-12-071-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | 3stack:presence upgraded from 1.0.4 to 1.0.5 arillo:flow-router-helpers upgraded from 0.4.5 to 0.4.7 cosmos:browserify upgraded from 0.8.3 to 0.9.2 fortawesome:fontawesome upgraded from 4.4.0 to 4.5.0 kadira:blaze-layout upgraded from 2.2.0 to 2.3.0 kadira:flow-router upgraded from 2.9.0 to 2.10.0 meteorhacks:fast-render upgraded from 2.10.0 to 2.11.0 useraccounts:core upgraded from 1.12.4 to 1.13.0 useraccounts:flow-routing upgraded from 1.12.4 to 1.13.0 useraccounts:unstyled upgraded from 1.12.4 to 1.13.0