| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
Fix multiselect toggle logic
This bug was introduced in 45b662a
|
| |
| |
| |
| |
| |
| | |
If every element already has the label/member, we do not need to add it
but it should be removed and if every element does not have the element,
we should add it.
|
|/ |
|
|\ |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This bug was introduced in e964fbb5.
Fixes #295.
|
| |
| |
| |
| | |
Fixes #255.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit uses a new package that I need to document. It tries to
solve the long-standing debate in the Meteor community about
allow/deny rules versus methods (RPC).
This approach gives us both the centralized security rules of
allow/deny and the white-list of allowed mutations similarly to Meteor
methods. The idea to have static mutation descriptions is also
inspired by Facebook's Relay/GraphQL.
This will allow the development of a REST API using the high-level
methods instead of the MongoDB queries to do the mapping between the
HTTP requests and our collections.
|
|
|
|
|
|
|
|
|
|
| |
This commit fixes the download link in the activity feed on the
sidebar and the mention link on card description and comments
(replaced by a popup).
`eslint .` now passes without any error or warning.
Fixes #286
|
|
|
|
| |
Fixes #237
|
| |
|
| |
|
|
|
|
|
|
| |
Fixes #288
Fixes #289
Fixes #290
|
|
|
|
| |
Fixes #284
|
|
|
|
| |
Fixes #265
|
|
|
|
|
|
|
| |
We now update the internal state of the application every time a user
connects to the application, which means that if the sandstorm sharing
graph has changed since the last time we saw a user, his permissions
will be updated accordingly.
|
| |
|
|
|
|
| |
Fixes #280
|
|
|
|
| |
Fixes #283
|
|
|
|
|
|
|
|
|
| |
tmeasday:presence was doing unnecessary ping calls to the server every
5 seconds instead of using the status of the DDP connection (this
could save a fair amount of traffic in case of important server load).
I guess this change also fixes #221, but since no issue reproduction
was provided, it's difficult to tell.
|
|
|
|
|
|
|
|
|
| |
Replace the old (and broken) jshint + jscsrc by eslint and configure
it to support some of the ES6 features.
The command `eslint` currently has one error which is a bug that was
discovered by its static analysis and should be fixed (usage of a
dead object).
|
| |
|
|
|
|
|
| |
Fixes #219
Fixes #256
|
|
|
|
| |
Fixes #260
|
|
|
|
| |
Fixes #261
|
|
|
|
|
| |
Credits go to @dwrensha who implement the required MongoDB upgrade on
meteor-spk.
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes #258
|
|
|
|
|
|
|
|
|
|
| |
Our spk currently have an issue with the bundled MongoDB (forked)
version that breaks if some files are inserted in a GridFS collection.
We need to find out a way to upgrade and migrate the bundled database
until we can re-enable the attachment feature.
Note that the feature is unmodified, it's just hidden in the UI.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This new draft saving system is currently only implemented for the
card description and comment. We need better a component
inheritance/composition model to support this for all editable fields.
Fixes #186
|
|
|
|
| |
Fixes #257
|
| |
|
|
|
|
| |
Fixes #250
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes #190
|
|
|
|
|
| |
Fixes #206
Fixes #244
|
|
|
|
|
|
|
|
|
| |
Safari infer different values for the `vertical-align` property of
`inline-block` element. See this answer for more details:
http://stackoverflow.com/a/4828136/1652064
Fixes #177
|
|
|
|
|
|
| |
Thank you @neynah for the Wekan icons
Closes #247
|
|
|
|
|
|
|
|
|
| |
* Grow the click-able zone of the list menu
* Remove a dead link on the list menu
* Merge list menu files with header menu to be consistent with the
board components internal organization
Closes #106
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Automatically display the overlay when the card details is opened
(previously we waited for the mouse to enter the card details panel)
* Improve the design of the minicards badges
* Change the minicard background when it is hovered or selected
* Removes unimplemented features links from the UI
* Fix the board canvas position when the sidebar is open (was hidden
behind)
Fixes #215
|
|
|
|
| |
Fixes #232
|
| |
|
|
|
|
| |
Fixes #241
|
|
|
|
|
|
| |
This feature is also sometime named the Pinterest-style route, which is further explained in this react-router example:
https://github.com/rackt/react-router/tree/cf0419f70e14a0ae39cba2ff99b01d3cbbd085be/examples/pinterest
|