summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix an event name from animationend to transitionendMaxime Quandalle2016-07-191-1/+1
| | | | Closes #646
* Merge PR #593 into develMaxime Quandalle2016-07-195-12/+12
|\
| * UI: Put every attachment action on its own lineAlexander Sulfrian2016-05-191-1/+1
| |
| * UI: Scale the attachemnt thumbnailsAlexander Sulfrian2016-05-191-2/+2
| | | | | | | | The attachements should be scaled inside the card, too.
| * UI: Center add-attachment linkAlexander Sulfrian2016-05-192-1/+6
| |
| * UI: Fix scaling of cover images (Fixes: #548)Alexander Sulfrian2016-04-253-8/+3
| | | | | | | | | | | | This reverts f039923ac134e4a3cc70a1a7d47c21460676b1c0 and fixes #196 in a different way (adding quotes). So that we can use the css background properties to scale the cover images.
* | Fix untranslated watch/unwatch for gecko (#606)Alexander Sulfrian2016-07-191-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | In the Gecko JavaScript engine the Object prototype has a method 'watch()' and 'unwatch()'. This causes strange error messages displayed, if 'watch' and 'unwatch' are not translated in the chosen localization. The i18n module cannot handle, if it gets a function for the translation. This is a quick fix that removes the 'watch' and 'unwatch' properties from the Object prototype. See also: https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Object/watch
* | optimize png images losslessly using zopflipngPeter Dave Hello2016-07-184-0/+0
| |
* | Add MongoDB indexesMaxime Quandalle2016-07-183-4/+16
| | | | | | | | | | | | | | These indexes will optimize the queries that are used in the board and card views. Fixes #524.
* | Fix move to topAlexander Sulfrian2016-07-181-2/+2
| | | | | | | | | | If the minOrder is 0, the previous code does not work. This code is now doing the obvious stuff to change the order.
* | Meteor and Meteor packages updatesMaxime Quandalle2016-07-185-99/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Meteor was updated to 1.3.4.4, though we haven't modified the code base to organize it around the new module system, we will still benefit from the possibility of importing NPM packages dirrectly. From my tests, it also improves the build time. Also as https://github.com/meteor/meteor/pull/5841 was merged in Meteor 1.3.4.2, \#385 is now fixed. We updated the following packages in the process: aldeed:collection2 upgraded from 2.8.0 to 2.9.1 aldeed:collection2-core upgraded from 1.0.0 to 1.1.1 alethes:pages upgraded from 1.8.4 to 1.8.6 arillo:flow-router-helpers upgraded from 0.4.7 to 0.5.2 blaze-html-templates removed from your project cfs:http-methods upgraded from 0.0.30 to 0.0.32 cosmos:browserify removed from your project cottz:publish-relations upgraded from 2.0.0 to 2.0.6 kadira:dochead upgraded from 1.4.0 to 1.5.0 kadira:flow-router upgraded from 2.10.1 to 2.12.1 kenton:accounts-sandstorm upgraded from 0.1.8 to 0.5.1 meteorhacks:fast-render upgraded from 2.11.0 to 2.14.0 meteorhacks:inject-data* upgraded from 1.4.1 to 2.0.0 meteorhacks:meteorx added, version 1.4.1 meteorhacks:subs-manager upgraded from 1.6.3 to 1.6.4 mquandalle:jade upgraded from 0.4.8 to 0.4.9 softwarerero:accounts-t9n upgraded from 1.1.7 to 1.3.4 tap:i18n upgraded from 1.7.0 to 1.8.2 templates:tabs upgraded from 2.2.0 to 2.2.2 useraccounts:core upgraded from 1.13.1 to 1.14.2 useraccounts:flow-routing upgraded from 1.13.1 to 1.14.2 useraccounts:unstyled upgraded from 1.13.1 to 1.14.2
* | Merge #616 into develMaxime Quandalle2016-07-189-105/+242
|\ \
| * | Welcome board: Allow localizationAlexander Sulfrian2016-06-032-4/+6
| | |
| * | Fix initial board creationAlexander Sulfrian2016-06-032-13/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We cannot rely on the automatic userId setting of the collection hooks. If a user is created during invitation, the userId field will contain the id of the inviting user. This fix this, by mocking the CollectionHooks.getUserId function and returning the userId of the new user for all new documents after creating the user.
| * | Remove duplicated logicAlexander Sulfrian2016-06-031-7/+0
| | | | | | | | | | | | | | | | | | The duplicated logic was nessessary because the before.insert hook was not called before validation, when inserting was initiated on the server. Using autoValues fixed this problem.
| * | Meteor.users: Add SimpleSchemaAlexander Sulfrian2016-06-031-8/+90
| | | | | | | | | | | | Replace before.insert hook with SimpleSchema and autoValue.
| * | Models: Replace before.insert with autoValuesAlexander Sulfrian2016-06-036-75/+129
| |/ | | | | | | | | | | | | | | The before.insert hooks have the problem, that they are executed in a different order if called from the client or from the server. If called from the client, the before.insert hook is called before validation of the schema, but if called from the server, the validation is called first and fails.
* | profile.name is called profile.fullname (#615)Alexander Sulfrian2016-07-113-5/+5
| | | | | | | | The name of the profile field was changed log ago. This fixes the remaining wrong references.
* | UI: Fix overlapping click event handler (#614)Alexander Sulfrian2016-07-111-9/+11
| | | | | | | | | | The click event handler for links in the card display are overlapping: The general event for opening the link in a new window matches on user mentions, too. But user mentions cannot be opened in a new window.
* | UI: Fix small bug with the multi-selection button (#591)Alexander Sulfrian2016-07-111-1/+1
| | | | | | This bug was introduced in 081b09207f2247d7e38fc28e0f0f9748eecbbcbe.
* | Fix a typo (#515)Prayag Verma2016-07-111-1/+1
|/ | | Remove extra `the`
* Add changes for v0.11 to the changelogAlexander Sulfrian2016-04-211-0/+24
|
* UI: Add missing title attributesAlexander Sulfrian2016-04-211-5/+6
| | | | | | | The buttons of the normal view should have the same title attribute, than the mini screen buttons. I missed this in 0587158b6be930f53325baa54fccadc54d18c9a3.
* UI: Add log-in button to public boardsAlexander Sulfrian2016-04-213-10/+24
| | | | | | | | | Even if a board is public and a user can view it, the user might want to log in to be able to edit the board. The button replaces the "public" permission indicator, because it is obvious (if the user is not logged in and can view the board, it has to be public).
* UI: Only display the options, if there is a boardAlexander Sulfrian2016-04-211-70/+72
| | | | | | The board options does not have valid use case (or even valid values) if the board is not found (either because the user is not logged in or the board really does not exists).
* UI: Do not display notification settingsAlexander Sulfrian2016-04-211-19/+21
| | | | | The notification settings are only usefull if there is a current user, because the email address is required.
* Some small fixes for the buttons in the board header (#580)Alexander Sulfrian2016-04-211-7/+8
| | | | | | | | | | | * UI: Fix title of button The multi selection button should not get the filter description. * UI: Add title for all buttons in the header bar This is espectially important for the miniScreen view, because there is only the icon and no text next to the button.
* UI: Center text in the avatars (#581)Alexander Sulfrian2016-04-211-1/+1
|
* Do not publish the whole user doc of board members (#579)Alexander Sulfrian2016-04-211-1/+5
| | | | The user document contains hashed passwords and hashed resume tokens. We should only publish the required bits.
* Fix initials avatar generation (#577)Alexander Sulfrian2016-04-211-2/+2
| | | | The ES5 reduce method also needs a initial value. This bug was introduced in aa974aa54ab6e5b7db7450206d12b44ffb3a0306.
* Merge pull request #530 from ForNeVeR/feature/move-to-endMaxime Quandalle2016-03-193-0/+16
|\ | | | | Move cards to top / bottom
| * cardDetails: allow to move cards to top / bottomFriedrich von Never2016-03-193-0/+16
| |
* | Merge pull request #531 from TheElf/develMaxime Quandalle2016-03-1818-32/+32
|\ \ | | | | | | Plural of Emoji
| * | Changes in code to correct the spelling of emoji (plural)Daniel2016-02-2818-25/+25
| | |
| * | Changing to the correct pluralization of emojiDaniel2016-02-2810-17/+17
| |/
* / Upgrade ESLint to v2Maxime Quandalle2016-03-1714-164/+161
|/ | | | This commit also tweak the code style following backward-incompatible v2 rules.
* Fix a bug with the inheritance modelMaxime Quandalle2016-02-101-1/+1
| | | | See https://github.com/meteor/meteor/issues/6162
* Merge pull request #512 from pierreozoux/patch-1Maxime Quandalle2016-02-071-0/+4
|\ | | | | Adds IndieHosters SaaS offer
| * Adds IndieHosters SaaS offerpierreozoux2016-02-051-0/+4
|/ | | | I'm wondering, should it be in a different category than PaaS offer?
* Update flow router to 2.10.1 from 2.10.0Maxime Quandalle2016-02-011-1/+1
| | | | Fixes #498
* Merge pull request #430 from wekan/full-screen-importMaxime Quandalle2016-02-0113-210/+207
|\ | | | | Full screen board import
| * Simplify an internal data model used in the importerMaxime Quandalle2016-01-312-15/+14
| | | | | | | | | | We used to save the whole user document in a internal data structure while we only needed the userId.
| * Change the board import layout from a popup to a full pageMaxime Quandalle2016-01-3113-201/+199
|/ | | | | | | | This commit also removes the “import a single Trello card” as we couldn’t figure out some reasonable use case. We also create a new publication on the server to provide the minimal user profile informations required to display an avatar.
* Merge pull request #477 from floatinghotpot/bugfix-notificationMaxime Quandalle2016-01-084-11/+11
|\ | | | | Bugfix, and optimize icon for notification
| * Bugfix, and optimize icon for notificationfloatinghotpot2016-01-084-11/+11
| |
* | Merge pull request #478 from seschwar/develMaxime Quandalle2016-01-081-1/+2
|\ \ | |/ |/| ports in docker-compose.yml must be an array
| * ports in docker-compose.yml must be an arraySebastian Schwarz2016-01-081-1/+2
|/
* Merge pull request #454 from floatinghotpot/notificationMaxime Quandalle2016-01-0624-16/+585
|\ | | | | Add notifications, allow watch boards / lists / cards
| * Improve PR, adding more commentsfloatinghotpot2016-01-063-26/+32
| |
| * Add notification, allow watch boards / lists / cardsLiming Xie2016-01-0524-16/+579
| |