summaryrefslogtreecommitdiffstats
path: root/.meteor
Commit message (Collapse)AuthorAgeFilesLines
* Implement a disconnected indicatorMaxime Quandalle2016-07-201-0/+1
| | | | Fixes #451
* Add VSCode editor configuration to the repositoryMaxime Quandalle2016-07-201-1/+0
|
* Update Meteor to 1.3.5.1Maxime Quandalle2016-07-203-12/+13
| | | | | | | | | | | | | | | | | | | Meteor is moving fast these days! This version should make Wekan quicker to start. These packages were also updated: accounts-password upgraded from 1.1.12 to 1.1.13 babel-compiler upgraded from 6.8.4 to 6.8.5 coffeescript upgraded from 1.1.3 to 1.1.4 ddp-server upgraded from 1.2.9 to 1.2.10 ecmascript upgraded from 0.4.7 to 0.4.8 email upgraded from 1.0.15 to 1.0.16 npm-bcrypt upgraded from 0.8.6_2 to 0.8.6_3 stylus upgraded from 2.512.4 to 2.512.5 templating upgraded from 1.1.13 to 1.1.14 tracker upgraded from 1.0.14 to 1.0.15 webapp upgraded from 1.2.10 to 1.2.11
* 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
* Update flow router to 2.10.1 from 2.10.0Maxime Quandalle2016-02-011-1/+1
| | | | Fixes #498
* Downgrade blaze-componentMaxime Quandalle2016-01-052-3/+2
| | | | | | | | | The upgrade in 9ef8eba introduced a breaking change. peerlibrary:blaze-components downgraded from 0.16.2 to 0.15.1 peerlibrary:data-lookup removed from your project Fixes #471
* Update Meteor packagesMaxime Quandalle2016-01-041-8/+13
| | | | | | | | | | | | | | | | aldeed:collection2 upgraded from 2.5.0 to 2.8.0 aldeed:collection2-core added, version 1.0.0 aldeed:schema-deny added, version 1.0.1 aldeed:schema-index added, version 1.0.1 aldeed:simple-schema upgraded from 1.3.3 to 1.5.3 cosmos:browserify upgraded from 0.9.2 to 0.9.3 mdg:validation-error added, version 0.2.0 meteorhacks:subs-manager upgraded from 1.6.2 to 1.6.3 peerlibrary:blaze-components upgraded from 0.15.1 to 0.16.2 peerlibrary:data-lookup added, version 0.1.0 useraccounts:core upgraded from 1.13.0 to 1.13.1 useraccounts:flow-routing upgraded from 1.13.0 to 1.13.1 useraccounts:unstyled upgraded from 1.13.0 to 1.13.1
* Upgrade the version of mquandalle:jadeMaxime Quandalle2015-12-261-1/+1
| | | | v0.4.7 was bugged, see https://github.com/mquandalle/meteor-jade/issues/195
* Accelerate the build processMaxime Quandalle2015-12-243-21/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | Following a valuable comment from @Slava [0], this commit improves the build and the reload time of Wekan. It does so by implementing the following changes: * Upgrade the meteor build tool to a version which includes a fix to an issue with the caching of the dependency resolution [1]. This fix will be included in Meteor 1.3, so we won't have to use a "special release" anymore; * Change the stylus package from `mquandalle:stylus` to `stylus` as we don't use the libraries included with my (mquandalle) version like Jeet or Rupture, and the core package implement the new meteor build plugin API with caching. The generated CSS file is slighly different mostly mostly because we miss some autoprefixed values but even until meteor-core figure out a good way to configure CSS autoprefixing, the benefits (better compile time) outweights the cons. For record I attached a diff in the generated style [2]; * Upgrade `mquandalle:jade` to a version that implements the build plugin caching correctly. These 3 changes decrease the reload time of about 50% on my computer. [0]: https://github.com/meteor/meteor/issues/5269#issuecomment-166422201 [1]: https://github.com/meteor/meteor/pull/5747 [2]: https://gist.github.com/mquandalle/e95198626767b56fc63a
* Support card and and drop on mobile webMaxime Quandalle2015-12-211-1/+1
| | | | Fixes #449
* Export Wekan now server-based with proper authXavier Priour2015-12-162-2/+2
|
* Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-162-2/+2
|\
| * Replace reywood:publish-composite by cottz:publish-relationsMaxime Quandalle2015-12-142-2/+2
| | | | | | | | | | | | | | | | | | Since bug #431 is due to publish-composite I tried to fix this package and propose a pull request but the code was difficult to refactor. I decided to use @cottz package instead which handled DDP messages in the correct order. Fixes #431
* | board export now checks authenticationXavier Priour2015-12-132-2/+2
| |
* | export board to Wekan JSONXavier Priour2015-12-092-0/+2
|/
* Update dependenciesMaxime Quandalle2015-12-071-10/+10
| | | | | | | | | | | | | 3stack:presence upgraded from 1.0.4 to 1.0.5 arillo:flow-router-helpers upgraded from 0.4.5 to 0.4.7 cosmos:browserify upgraded from 0.8.3 to 0.9.2 fortawesome:fontawesome upgraded from 4.4.0 to 4.5.0 kadira:blaze-layout upgraded from 2.2.0 to 2.3.0 kadira:flow-router upgraded from 2.9.0 to 2.10.0 meteorhacks:fast-render upgraded from 2.10.0 to 2.11.0 useraccounts:core upgraded from 1.12.4 to 1.13.0 useraccounts:flow-routing upgraded from 1.12.4 to 1.13.0 useraccounts:unstyled upgraded from 1.12.4 to 1.13.0
* Merge pull request #411 from floatinghotpot/patch-4Maxime Quandalle2015-12-071-1/+1
|\ | | | | add: set user preferred lang and allow select lang for user form
| * add: use user preferred lang for user form, and allow selectingfloatinghotpot2015-12-071-1/+1
| |
* | add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-071-0/+1
|/ | | | to quit
* Sync Sandstorm URL and page title with the inner Wekan grainMaxime Quandalle2015-11-271-1/+1
| | | | | | | The page title synchronization required implementing reactivity in the kadira:dochead package, see https://github.com/kadirahq/meteor-dochead/pull/25 Closes #403.
* Fix #409Maxime Quandalle2015-11-251-1/+1
| | | | Credits goes to @floatinghotpot, thanks!
* code review fixesXavier Priour2015-11-172-3/+3
|
* Import members: board importXavier Priour2015-11-141-1/+2
|
* merge with /develXavier Priour2015-11-132-3/+4
|\
| * 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
| * Update Meteor packagesMaxime Quandalle2015-11-081-3/+3
| |
| * Implement fast-renderMaxime Quandalle2015-10-302-1/+5
| | | | | | | | | | | | This required updating 3stack:presence because of the following bug: https://github.com/3stack-software/meteor-presence/pull/3
| * Update packages and update Meteor to 1.2.1Maxime Quandalle2015-10-293-33/+29
| | | | | | | | Blaze-components had yet another methods rename.
| * Upgrade Meteor to 1.2.1-rc4Maxime Quandalle2015-10-232-19/+19
| | | | | | | | | | | | 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()`.
* | Import members: UI flow okXavier Priour2015-11-132-34/+33
|/
* Display the board name in the page titleMaxime Quandalle2015-10-222-0/+3
| | | | Fixes #364
* Upgrade peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-211-11/+12
| | | | | This change includes method renames and others UI related packages updates.
* Upgrade kenton:accounts-sandstorm package to 0.1.6Maxime Quandalle2015-10-211-1/+1
| | | | | We now delegates more user attributes sync (avatar and permissions) to this package instead of doing it ourselves.
* Translate the label colorsMaxime Quandalle2015-10-151-2/+2
|
* Remove the Meteor._wrapAsync depreciation warningMaxime Quandalle2015-10-131-1/+1
| | | | | This warning was raised by the `cfs:storage-adapter` package and fixed in https://github.com/CollectionFS/Meteor-CollectionFS/pull/663.
* Abstract the jquery-textcomplete integration with EscapeActionsMaxime Quandalle2015-10-131-1/+1
| | | | | We now can re-use this integration in multiple places, this will be useful for #342 for instance.
* Support app deployment under a path prefixMaxime Quandalle2015-10-081-1/+1
| | | | Fixes #133
* updated to Meteor 1.2.0.2hack1m2015-10-052-13/+13
|
* Upgrade to Meteor 1.2Maxime Quandalle2015-09-224-82/+85
|
* Upgrade Meteor 1.2 to RC 14Maxime Quandalle2015-09-122-14/+14
| | | | | This fixes the weird trace reported in #264 and in https://github.com/meteor/meteor/issues/5107.
* Centralize all mutations at the model levelMaxime Quandalle2015-09-082-1/+3
| | | | | | | | | | | | | | | 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.
* Upgrade dependenciesMaxime Quandalle2015-09-061-8/+8
|
* Change our presence packageMaxime Quandalle2015-09-042-2/+2
| | | | | | | | | 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.
* Upgrade meteor to v1.2-rc12Maxime Quandalle2015-09-042-10/+10
|
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-032-1/+5
| | | | | | | | | 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).
* Upgrade Meteor to v1.2-rc7Maxime Quandalle2015-08-282-20/+20
|
* Call me WekanMaxime Quandalle2015-08-281-1/+1
| | | | | | Thank you @neynah for the Wekan icons Closes #247
* Replace bower packages by meteor onesMaxime Quandalle2015-08-252-2/+4
| | | | | | | | | | | | | | | | | | | Bower build process was sometimes unpredictable and had unspecified dependencies (git) that caused bugs (eg #164, #172). Meteor packages have better integration with the meteor build system and ensure deterministic build, the downside being that we have to maintain wrapper of JS package just for the purpose of publishing in atmosphere. Others are also struggling with this, see for instance: https://github.com/MeteorCommunity/discussions/issues/14 Hopefully we'll have a better solution one day (official browserify integration? Who knows.) As a side effect the new release of perfect-scrollbar breaks the style, this will be fixed in a later commit. Fixes #172
* Upgrade meteor to 1.2-rc.4 and package versionsMaxime Quandalle2015-08-253-78/+106
| | | | | | | | | | | | The new version of meteor speeds up the reload cycle, which is super valuable during the development. I also removed the "imply-everything" "meteor-platform" package in favor of a more fined-grained package selection. This version also introduces ES6 support with transparent babeljs transpilation. Most features are enable (with the notable exception of ES6 modules) and this commit started to use them in places where a XXX comment suggested it.
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-232-11/+12
| | | | | | | | | | | | | | | | | | | Motivations: * Iron-Router foces us to use Tracker.nonreactive black magic in order to avoid un-necessary re-renders; * There is a community consensus (supported by some MDG members) that the flow-router API is easier to reason about; * The useraccounts now supports flow router (that was a blocking element when I considered the switch ~3months ago) On the server we use the Picker router, as encouraged by the Kadira team (which develop both Flow and Picker routers). In the current state of things there are some bugs related to the missing Loading architecure. Previously onRendered callback where always called when the data the component needed was available, now we have to handle this ourselves, which we will in a following commit.