| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
start/due dates.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Closes #646
|
|\ |
|
| | |
|
| |
| |
| |
| | |
The attachements should be scaled inside the card, too.
|
| | |
|
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| | |
If the minOrder is 0, the previous code does not work. This code is now
doing the obvious stuff to change the order.
|
|/
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
See https://github.com/meteor/meteor/issues/6162
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Also add release notes related to the #387 merge.
-- Fluctuat nec mergitur
|
|\ |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
| |
This commit stands on the initial support implemented in #342. We now
avoid error-prone parsing step by adding the member or the label
directly to the card object.
We also added support for `Tab` to completion on our textComplete
component.
Closes #342
|
|
|
|
|
|
| |
This version includes a more complete selection of ES2015 polyfills
that I started used across the code base, for instance by replacing
`$.trim(str)` by `str.trim()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since 07cc454 (ie the switch to Meteor 1.2) we includes the `es5-shim`
polyfill to support methods like `Array.prototype.forEach` in a
consistent way across all supported browsers (IE8+).
MDG recently released a blog post recommending the use of these native
methods instead of underscore [0]. We know follow this recommendation.
This commit also favor some ES6 features (argument defaults,
destructing assignment) in places where we didn’t use them.
[0]: http://info.meteor.com/blog/es2015-get-started
|
|
|
|
|
| |
This change includes method renames and others UI related packages
updates.
|
|
|
|
|
|
| |
This was not ported during v0.9 re-factor.
Fixes #322
|
| |
|
| |
|
|
|
|
| |
Fixes #133
|
|
|
|
|
|
| |
We need to use "function() {}" instead of the ES6 style "() {}" with
popup.afterCommit because we need the original value of "this" inside
the callback.
|
|\ |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
Fixes #288
Fixes #289
Fixes #290
|
|
|
|
| |
Fixes #280
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
Credits go to @dwrensha who implement the required MongoDB upgrade on
meteor-spk.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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
|