summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar/sidebar.jade
Commit message (Collapse)AuthorAgeFilesLines
* user can now leave the boardamadilsons2017-10-091-7/+11
|
* comment only working, naive implementation completeRyan Helsing2017-03-181-1/+1
|
* ability to store comment only, actual prevention nextRyan Helsing2017-03-181-1/+7
|
* to remove 'multiple attributes' errorJoel Louzado2017-02-201-1/+2
|
* Added dynamic tooltip for sidebar tongueJoel Louzado2017-02-151-1/+1
|
* Merge branch 'feature/link-to-shortcuts' of ↵Lauri Ojansivu2017-02-101-8/+13
|\ | | | | | | https://github.com/AlexanderS/wekan into AlexanderS-feature/link-to-shortcuts
| * UI: Add link to keyboard shortcutsAlexander Sulfrian2016-04-251-8/+13
| |
* | only show 'add member' button to users who can edit the boardDavid Renshaw2016-11-031-2/+3
| |
* | powerbox identity requestsDavid Renshaw2016-11-031-4/+6
| |
* | profile.name is called profile.fullname (#615)Alexander Sulfrian2016-07-111-1/+1
|/ | | | The name of the profile field was changed log ago. This fixes the remaining wrong references.
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-171-0/+2
|
* add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-071-18/+33
| | | | to quit
* Improve Sandstorm usernames managementMaxime Quandalle2015-11-111-1/+1
| | | | | | | | We now use the `preferredHandle` exposed by Sandstorm as source for the username and append a number if the username is already taken since we need to ensure username uniqueness (eg 'max', 'max1', 'max2') Fixes #352
* Fix removeMemberPopupAlexander Sulfrian2015-09-201-1/+1
| | | | | 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".
* Display “Filter cards” action for non-board membersMaxime Quandalle2015-09-181-16/+15
|
* Fix labels drag and drop from the sidebarMaxime Quandalle2015-09-101-1/+1
| | | | | | This bug was introduced in e964fbb5. Fixes #295.
* Fix a recurrent English typoMaxime Quandalle2015-09-061-1/+1
|
* Hide some disabled forms for anonymous board viewersMaxime Quandalle2015-09-061-1/+2
| | | | | | Fixes #288 Fixes #289 Fixes #290
* Show avatars in search resultsMaxime Quandalle2015-09-061-1/+1
| | | | Fixes #265
* Fix member permission modificationMaxime Quandalle2015-09-051-10/+12
| | | | Fixes #280
* Hide feature non-member users can't useMaxime Quandalle2015-08-281-2/+3
| | | | | Fixes #206 Fixes #244
* Adds new app store metadata to sandstorm package definitionMaxime Quandalle2015-08-201-10/+11
| | | | | | | | We still miss some branding stuff, such as screenshots, icons, and a description. This commit also hides an option related to user permissions managment in the sandstorm package.
* Switch the font to robotoMaxime Quandalle2015-08-201-7/+6
|
* profile name changed fullname and comma hotfix.Yasar icli2015-07-181-4/+4
|
* (Re-)implement default avatar using user initialsMaxime Quandalle2015-06-101-7/+9
| | | | | We use a embedded svg to scale the initials text to its container size. The user is free to overwrite its initials in the profile form.
* Re-factor the avatar system and support avatar uploadsMaxime Quandalle2015-06-091-6/+2
| | | | | | | | | | | | | | | The user is now able to upload an avatar, and pick one in a list. This functionality should eventually be abstracted in a community package but we still need to work on a great public API. We rely on collectionFS to manage uploaded avatars. We also removed bengott:avatar which was trying to solve the wrong problem (namely displaying the avatar, which is as simple as displaying an image), and not a avatar system as it should be. Gravatar support is coming (back) soon. We may also want to have a list of default fun avatars the user can choose instead of uploading its own one.
* Restore the popup to add a member to the boardMaxime Quandalle2015-06-061-2/+48
|
* Start designing the card details paneMaxime Quandalle2015-06-051-4/+4
| | | | Implement a dynamic overflow to focus sight on the pane.
* Implement presence indicatorsMaxime Quandalle2015-05-301-1/+2
|
* Implement multi-selectionMaxime Quandalle2015-05-301-33/+6
| | | | | | The UI and the internal APIs are still rough around the edges but the feature is basically working. You can now select multiple cards and move them together or (un|)assign them a label.
* Implement a new system to handle "escape actions"Maxime Quandalle2015-05-261-5/+1
| | | | | | | | The new EscapeActions object decide what to do when the user press the Escape key (such as closing a opened popup or inlined form). This commit also re-introduced the sidebar current view as a sidebar component local state.
* Improve scrollingMaxime Quandalle2015-05-241-0/+103
We now replace native scrollbar by custom ones on the list card (which is required by the new ergonomics in the parent commit), but the "scrolling engine", is still native, we just hide the scrollbar and draw our own in HTML/CSS using the perfect-scrollbar package (from bower). This commit also implements component scrolling when certain actions are performed, eg scroll to the bottom when the new card composer is opened.