summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unnecessary template name declarationMaxime Quandalle2016-01-0316-92/+0
| | | | | | This code was duplicate with the name we use to `register` the component. A update of blaze-component removed the need to duplicate this declaration.
* Fix card infinite scrolling on card activitiesMaxime Quandalle2016-01-033-11/+8
| | | | | | | | I imagine blaze-component changed their Mixins API since I written this code. We need some tests to avoid this kind of regressions when updating dependencies! Fixes #420
* added exact time as tooltip to activity time (saying only something like 'x ↵Dominic Sonntag2016-01-031-3/+3
| | | | days ago')
* Fix layout on Apple devicesMaxime Quandalle2016-01-028-0/+16
| | | | | | | | | | | | | | | The layout issue was related to the lack of autoprexing for CSS properties. c69f993 did improve the reload time significantly but for that I had to replace `mquandalle:stylus` by the core `stylus` package. Unfortunatly it is currently difficult to run an autoprefixer with the core CSS compilers (as reported in https://github.com/meteor/meteor/issues/5219). So instead we rely on `nib` which transparently define some mixins for autoprefixing, the only restrictions being that we have to manually `@import 'nib'` on top of stylus files. Fixes #461
* change edit card title input to textarea for editing larger titlesalayek2016-01-012-4/+21
|
* Fix avatar support on SanstormMaxime Quandalle2015-12-301-2/+2
| | | | | | | | | | 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
* Forbid trailing spacesMaxime Quandalle2015-12-301-1/+1
|
* Share the router configuration between the client and the serverMaxime Quandalle2015-12-281-125/+0
|
* Partially revert aae5030Maxime Quandalle2015-12-241-1/+1
| | | | | | | As discussed in #370 and announced in the official Eslint-meteor plugin repository (https://github.com/dferber90/eslint-plugin-meteor), it is recommended to not use this plugin anymore has the author has it is currently broken and the author has abandoned it.
* Optimize login form layout & cssfloatinghotpot2015-12-282-66/+71
| | | | Fixes #448
* Remove the import trello card featureMaxime Quandalle2015-12-222-2/+0
| | | | | | See the following discussion for rationale: https://github.com/wekan/wekan/issues/113#issuecomment-163039089
* Don't display sing-in link to connected usersMaxime Quandalle2015-12-211-2/+3
|
* Unassign members before removing them from a boardMaxime Quandalle2015-12-211-2/+5
| | | | Closes #399
* 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-182-0/+13
|\ | | | | | | | | Export a board to JSON Fixes #396
| * Export: improved API routesXavier Priour2015-12-171-2/+1
| | | | | | | | | | | | - 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
| * Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-1723-128/+433
| |\
| * | Export Wekan now server-based with proper authXavier Priour2015-12-162-18/+10
| | |
| * | fix eslintXavier Priour2015-12-131-1/+2
| | |
| * | Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-1322-106/+125
| |\ \
| * | | board export now checks authenticationXavier Priour2015-12-132-1/+15
| | | |
| * | | export board to Wekan JSONXavier Priour2015-12-092-0/+7
| | | |
* | | | fix board headeer issuefloatinghotpot2015-12-175-15/+34
| |_|/ |/| |
* | | add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-1723-128/+433
| |/ |/|
* | Add a button to move selected cardsMaxime Quandalle2015-12-102-0/+15
| | | | | | | | | | | | | | 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.
* | Allow the header bar customizationMaxime Quandalle2015-12-0911-33/+69
| | | | | | | | | | This commit also provide a way to escape the Shorcuts page on Sandstorm.
* | Fix board archive instructionsMaxime Quandalle2015-12-091-1/+1
| | | | | | | | Fixes #277.
* | Remove the move and archive all cards of a list featureMaxime Quandalle2015-12-093-28/+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.
* | bugfix: only care active members, also optimize some codefloatinghotpot2015-12-085-35/+29
|/
* Merge pull request #411 from floatinghotpot/patch-4Maxime Quandalle2015-12-073-0/+50
|\ | | | | add: set user preferred lang and allow select lang for user form
| * add: use user preferred lang for user form, and allow selectingfloatinghotpot2015-12-073-0/+50
| |
* | add: optional board descriptionfloatinghotpot2015-12-073-0/+6
| |
* | add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-077-42/+179
|/ | | | to quit
* bugfix: template. does not accept dom elements, but jquery canfloatinghotpot2015-11-271-3/+3
|
* Merge GitHub PR #401Maxime Quandalle2015-11-254-28/+274
|\ | | | | | | | | | | I also completed the release notes related to the import feature. Closes #401
| * Fix eslintXavier Priour2015-11-171-1/+1
| |
| * code review fixesXavier Priour2015-11-171-46/+63
| |
| * Import attachmentsXavier Priour2015-11-161-1/+2
| |
| * Fix buildXavier Priour2015-11-141-1/+1
| |
| * Import members: board importXavier Priour2015-11-143-8/+12
| |
| * Import members: working on card importXavier Priour2015-11-132-39/+65
| |
| * merge with /develXavier Priour2015-11-1315-90/+188
| |\
| * | Import members: UI flow okXavier Priour2015-11-134-52/+220
| | |
| * | Merge branch 'devel' into feature/import-board-membersXavier Priour2015-10-2311-18/+43
| |\ \
| * | | Import members: added UIXavier Priour2015-10-232-10/+40
| | | |
* | | | Enphasize keyboard shortcuts with a dedicated styleMaxime Quandalle2015-11-253-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | Also add release notes related to the #387 merge. -- Fluctuat nec mergitur