Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
 - Compatibility with `meteor@1.5.2.2`
 - Fix #9 , thanks to @nicooprat
 - Make sure reactive data sources is supported and will trigger
re-computation
 - Implement `.set()` (*see updated docs*)
 - Docs are updated
 - Dependencies update
 - More tests, 100% tests coverage, now with reactive data sources
 - Overall codebase enhancements
  • Loading branch information
dr-dimitru committed Oct 16, 2017
1 parent a0f9fb9 commit 5d5fe27
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 26 deletions.
39 changes: 20 additions & 19 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,57 +1,58 @@
allow-deny@1.0.6
babel-compiler@6.19.4
allow-deny@1.0.9
babel-compiler@6.20.0
babel-runtime@1.0.1
base64@1.0.10
binary-heap@1.0.10
blaze@2.3.2
blaze-tools@1.0.10
boilerplate-generator@1.1.1
boilerplate-generator@1.2.0
caching-compiler@1.1.9
caching-html-compiler@1.0.6
callback-hook@1.0.10
check@1.2.5
ddp@1.3.0
ddp-client@2.0.0
ddp@1.3.1
ddp-client@2.1.3
ddp-common@1.2.9
ddp-server@2.0.0
ddp-server@2.0.2
deps@1.0.12
diff-sequence@1.0.7
ecmascript@0.8.1
ecmascript@0.8.3
ecmascript-runtime@0.4.1
ecmascript-runtime-client@0.4.3
ecmascript-runtime-server@0.4.1
ejson@1.0.13
ejson@1.0.14
geojson-utils@1.0.10
html-tools@1.0.11
htmljs@1.0.11
id-map@1.0.9
jquery@1.11.10
local-test:ostrio:flow-router-title@3.0.7
local-test:ostrio:flow-router-title@3.1.0
logging@1.1.17
meteor@1.7.0
minimongo@1.2.1
modules@0.9.2
meteor@1.7.2
minimongo@1.3.2
modules@0.10.0
modules-runtime@0.8.0
mongo@1.1.19
mongo@1.2.2
mongo-dev-server@1.0.1
mongo-id@1.0.6
npm-mongo@2.2.24
npm-mongo@2.2.30
observe-sequence@1.0.16
ordered-dict@1.0.9
ostrio:flow-router-extra@3.3.1
ostrio:flow-router-title@3.0.7
promise@0.8.9
ostrio:flow-router-extra@3.4.0
ostrio:flow-router-title@3.1.0
promise@0.9.0
random@1.0.10
reactive-dict@1.1.9
reactive-var@1.0.11
retry@1.0.9
routepolicy@1.0.12
session@1.1.7
spacebars@1.0.15
spacebars-compiler@1.1.2
templating@1.2.13
templating-tools@1.1.1
tinytest@1.0.12
tracker@1.1.3
ui@1.0.13
underscore@1.0.10
webapp@1.3.17
webapp@1.3.19
webapp-hashing@1.0.9
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ FlowRouter.route('/path', {
```

Support this project:
========
This project can't be possible without [ostr.io](https://ostr.io).
======
This project wouldn't be possible without [ostr.io](https://ostr.io).

By using [ostr.io](https://ostr.io) you are not only [protecting domain names](https://ostr.io/info/domain-names-protection), [monitoring websites and servers](https://ostr.io/info/monitoring), using [Prerendering for better SEO](https://ostr.io/info/prerendering) of your JavaScript website, but support our Open Source activity, and great packages like this one are available for free.
Using [ostr.io](https://ostr.io) you are not only [protecting domain names](https://ostr.io/info/domain-names-protection), [monitoring websites and servers](https://ostr.io/info/monitoring), using [Prerendering for better SEO](https://ostr.io/info/prerendering) of your JavaScript website, but support our Open Source activity, and great packages like this one could be available for free.
12 changes: 8 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
Package.describe({
name: 'ostrio:flow-router-title',
version: '3.0.7',
version: '3.1.0',
summary: 'Change document.title (page title) on the fly within flow-router',
git: 'https://github.com/VeliovGroup/Meteor-flow-router-title',
documentation: 'README.md'
});

Package.onUse(function (api) {
api.versionsFrom('1.4');
api.use(['underscore', 'ecmascript', 'reactive-var', 'ostrio:flow-router-extra@3.3.1'], 'client');
api.use(['underscore', 'ecmascript', 'reactive-var', 'tracker', 'ostrio:flow-router-extra@3.4.0'], 'client');
api.mainModule('flow-router-title.js', 'client');
});

Package.onTest(function(api) {
api.use(['tinytest', 'ecmascript', 'random', 'ostrio:flow-router-extra', 'ostrio:flow-router-title'], 'client');
api.addFiles('tests.js', 'client');
api.use(['tinytest', 'ecmascript', 'random', 'session', 'reactive-var', 'tracker', 'ostrio:flow-router-extra@3.4.0', 'ostrio:flow-router-title'], 'client');
api.addFiles('tests/init.js', 'client');
api.addFiles('tests/common.js', 'client');
api.addFiles('tests/group.js', 'client');
api.addFiles('tests/reactive.js', 'client');
api.addFiles('tests/group-reactive.js', 'client');
});

0 comments on commit 5d5fe27

Please sign in to comment.