summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
...
* | [Fix Adding Labels to cards is not possible ↵Lauri Ojansivu2019-03-043-30/+83
| | | | | | | | | | | | | | | | anymore](https://github.com/wekan/wekan/issues/2223). Thanks to xet7 ! Closes #2223
* | [Combine hamburger menus at right](https://github.com/wekan/wekan/issues/2219).Lauri Ojansivu2019-03-034-385/+390
| | | | | | | | | | | | Thanks to xet7 ! Related #2219
* | Change board menu:Lauri Ojansivu2019-03-032-3/+3
| | | | | | | | | | | | | | | | | | - Board menu (hamburger icon) to Board Settings (Cog icon) - Sidebar arrows icons to hamburger icon Thanks to xet7 ! Related #2219
* | Fix card copyAndrés Manelli2019-02-281-4/+4
| |
* | Fix popup titleAndrés Manelli2019-02-272-0/+9
| | | | | | | | Add element title modification
* | Standarize copy functions. Match labels by nameAndrés Manelli2019-02-271-9/+3
| |
* | Merge branch 'devel' into edgeLauri Ojansivu2019-02-278-155/+145
|\ \
| * | Add the following new Sandstorm features and fixes:Lauri Ojansivu2019-02-278-149/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - All Boards page [so it's possible to go back from subtask board](https://github.com/wekan/wekan/issues/2082) - Board favorites - New Sandstorm board first user is Admin and [has IFTTT Rules](https://github.com/wekan/wekan/issues/2125) and Standalone Wekan Admin Panel. Probably some Admin Panel features do not work yet. Please keep backup of your grains before testig Admin Panel. - Linked Cards and Linked Boards. - Some not needed options like Logout etc have been hidden from top bar right menu. - [Import board now works. "Board not found" is not problem anymore](https://github.com/wekan/wekan/issues/1430), because you can go to All Boards page to change to imported board. and removes the following features: - Remove Welcome Board from Standalone Wekan, [to fix Welcome board not translated](https://github.com/wekan/wekan/issues/1601). Sandstorm Wekan does not have Welcome Board. Thanks to xet7 ! Closes #2125, closes #2082, closes #1430, closes #1601, related #2205, related #2070, related #1695, related #1192.
* | | Removed console.log.Lauri Ojansivu2019-02-261-1/+0
| | |
* | | Fix list view issues. Allow creation of boards from templatesAndrés Manelli2019-02-257-25/+67
| | |
* | | Fix miniscreen renderAndrés Manelli2019-02-243-15/+17
| | |
* | | Fix lint errorsAndrés Manelli2019-02-243-44/+44
| | |
* | | Allow swimlane creation from templateAndrés Manelli2019-02-247-20/+24
| | | | | | | | | | | | Mix lists with same name to avoid duplicates
* | | Allow list creation from templateAndrés Manelli2019-02-246-26/+79
| | |
* | | Allow card creation from templateAndrés Manelli2019-02-241-17/+18
| | |
* | | Prepare to create card from templateAndrés Manelli2019-02-243-60/+11
| | |
* | | Add template search in Add Card menuAndrés Manelli2019-02-242-31/+39
| | | | | | | | | | | | | | | | | | Archive all cards in list when list is archived Remove default board in link popup Only list non-template boards in card link and search
* | | Avoid links on a template-boardAndrés Manelli2019-02-244-27/+52
| | | | | | | | | | | | | | | Allow creation of template boards with a linked card Avoid changing the name of the template-container swimlanes
* | | Remove links from templates board for the momentAndrés Manelli2019-02-245-10/+32
| | | | | | | | | | | | | | | | | | Insert the correct template type in templates board Allow independant lists in templates board Add some helpers
* | | Save template swimlanes in profile. Fix swimlane view for templates board. ↵Andrés Manelli2019-02-245-15/+21
| | | | | | | | | | | | Avoid deleting template containers
* | | Add first draft of data model and user interface. No actions.Andrés Manelli2019-02-247-6/+37
|/ /
* | Merge pull request #2191 from Akuket/feature-improve-authenticationLauri Ojansivu2019-02-153-3/+9
|\ \ | | | | | | Fix authentication dropdown
| * | Fix authentication dropdownguillaume2019-02-153-3/+9
| | |
* | | - Fix2: Remove overlap of side bar button with card/list menu button on ↵Lauri Ojansivu2019-02-132-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | mobile browser Thanks to xet7 ! Closes #2183
* | | - Fix: Remove overlap of side bar button with card/list menu button on ↵Lauri Ojansivu2019-02-131-1/+1
| |/ |/| | | | | | | | | | | | | mobile browser Thanks to xet7 ! Closes #2183
* | Fix swimlanes sortingBenjamin Tissoires2019-02-082-4/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 7cc185ac "Properly fix horizontal rendering on Chrome and Firefox" The rendering of the new design of the swimlanes was correct, but this commit broke the reordering capability. Having the swimlane header at the same level than the lists of cards makes the whole sortable pattern fail. 2 solutions: - revert to only have 1 div per swimlane. But this introduces the firefox bug mentioned in 7cc185ac, so not ideal - force the sortable pattern to do what we want. To force the sortable pattern, we need: - add in the helper a clone of the list of cards (to not just move the header) - make sure the placeholder never get placed between the header and the list of cards in a swimlane - fix the finding of the next and previous list of cards. For all of this to be successful, we need to resize the swimlanes to a known value. This can lead to some visual jumps with scrolling when you drag or drop the swimlanea. I tried to remedy that by computing the new scroll value. Still not ideal however, as there are still some jumps when dropping. Fixes #2159
* | Merge remote-tracking branch 'upstream/feature-improve-authentication' into ↵Lauri Ojansivu2019-02-084-69/+128
|\| | | | | | | feature-improve-authentication
| * Fix lintsguillaume2019-02-071-6/+11
| |
| * - Fix lint errors.Lauri Ojansivu2019-02-012-14/+9
| | | | | | | | Thanks to xet7 !
| * Improve authenticationguillaume2019-02-014-66/+125
| |
* | - Fix Sandstorm open card on public board, part 2.Lauri Ojansivu2019-02-031-2/+0
| | | | | | | | Thanks to ChronikEwok !
* | - [Fix: Not displaying card content of public board: Snap, Docker and ↵Lauri Ojansivu2019-02-031-5/+11
|/ | | | | | | | | | | Sandstorm Shared Wekan Board Link](https://github.com/wekan/wekan/issues/1623) with [code from ChronikEwok](https://github.com/ChronikEwok/wekan/commit/cad9b20451bb6149bfb527a99b5001873b06c3de). Thanks to ChronikEwok ! Closes #1623
* - When writing to minicard, press Shift-Enter on minicard to go to next line ↵Lauri Ojansivu2019-02-011-1/+1
| | | | | | | | below, to continue writing on same minicard 2nd line. Thanks to bentiss!
* Use infinite-scrolling on listsBenjamin Tissoires2019-02-013-1/+95
| | | | | | | | | | | This allows to reduce the loading time of a big board. Note that there is an infinite scroll implementation in the mixins, but this doesn't fit well as the cards in the list can have arbitrary height. The idea to rely on the visibility of a spinner is based on http://www.meteorpedia.com/read/Infinite_Scrolling
* - Fix: Bug: Not logged in public board page has calendar.Lauri Ojansivu2019-01-312-5/+11
| | | | | | Thanks to xet7 ! Closes #2061
* automatic scroll: fix vertical automatic scrolling when opening a cardBenjamin Tissoires2019-01-281-5/+4
| | | | | | | We actually want the vertical scrolling to be fixed when opening the card details. I am not sure where the `100` value comes from, but this makes the scrolling happy on the swimlane view and on the lists view.
* make the max height of the swimlane not too bigBenjamin Tissoires2019-01-281-1/+1
| | | | We should take a full screen minus the header height
* Properly fix horizontal rendering on Chrome and FirefoxBenjamin Tissoires2019-01-282-26/+15
| | | | | | | | | | | | | | | | | | | This reverts commit 74cf9e2573 "- Fix Firefox left-rigth scrollbar." This reverts commit 9dd8216dfb. "- Fix cards below swimlane title in Firefox by making [previous fix](https://github.com/wekan/wekan/pull/2132/commits/f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb)" And this partially reverts commit dd88eb4cc The root of the issue was that I was adding a new div and nesting the list of lists in this new list. This resulted in some weird behavior that Firefox could not handled properly Revert to a code colser to v2.02, by just having the swimlane header in a separate line, and keep only one flex element. fixes #2137
* - Fix Firefox left-rigth scrollbar.Lauri Ojansivu2019-01-281-1/+5
| | | | | | Thanks to xet7 ! Closes #2137
* - Fix cards below swimlane title in Firefox by making [previous ↵Lauri Ojansivu2019-01-271-0/+6
| | | | | | | | fix](https://github.com/wekan/wekan/pull/2132/commits/f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb) Firefox-only. Thanks to xet7 !
* - Add back scrollbars that [were hidden when trying to fix anotherLauri Ojansivu2019-01-271-1/+0
| | | | | | | | bug](https://github.com/wekan/wekan/pull/2132/commits/f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb). Thanks to xet7 ! Closes #2134
* ui: fix rendering issue on firefoxBenjamin Tissoires2019-01-261-0/+1
| | | | | | | | | | | When a list have more cards that can fit in the screen, the members icons are drawn on top of the swimlane below and the scrollbar is not available. According to https://github.com/utatti/perfect-scrollbar the container must have an `overflow: hidden` css style. When changing the swimlane header from vertical to horizontal, dd88eb4cc19 broke this which led to this weird bug.
* ifttt: card actions: simplify the logic for setting the colorBenjamin Tissoires2019-01-262-13/+17
| | | | | Jade allows a simpler approach than my initial manual update. Just declare the correct ReactiveVar and accessor, and done.
* lists-color: only colorize the bottom borderBenjamin Tissoires2019-01-253-5/+12
| | | | | And make the background clearer to visually separate the header from the list of cards
* ui: lists: make sure all lists boxes are the same heightBenjamin Tissoires2019-01-252-0/+6
| | | | | | | | When `Show card count` is enabled, the lists with the card counts have two lines of text while the lists without have only one. This results in the box around the list headers are not of the same size and this is visible when setting a color to the list.
* colors: add per list colorBenjamin Tissoires2019-01-253-1/+132
| | | | | | | | | Hamburger menu only. Note that I am definitively not responsible for the resulting Christmas tree. fixes #328
* client: lists headers: use padding instead of marginBenjamin Tissoires2019-01-251-4/+4
| | | | No visual changes but allows to set a background color to the list header.
* Make sure Swimlanes and Lists have a populated sort fieldBenjamin Tissoires2019-01-251-0/+31
| | | | | | | | | When moving around the swimlanes or the lists, if one element has a sort with a null value, the computation of the new sort value is aborted, meaning that there are glitches in the UI. This happens on the first swimlane created with the new board, or when a swimlane or a list gets added through the API.
* Add colors to swimlanesBenjamin Tissoires2019-01-253-1/+131
| | | | fixes #1688
* swimlane: insert the new swimlane after the one we clicked onBenjamin Tissoires2019-01-241-2/+11
|