Updated Meteor.

This commit is contained in:
Sean Li 2014-10-17 13:33:12 -07:00
parent 105fb835f2
commit 870fad25d4
5 changed files with 57 additions and 54 deletions

View File

@ -4,3 +4,4 @@
notices-for-0.9.0 notices-for-0.9.0
notices-for-0.9.1 notices-for-0.9.1
0.9.4-platform-file

2
meteor/.meteor/platforms Normal file
View File

@ -0,0 +1,2 @@
server
browser

View File

@ -1 +1 @@
METEOR@0.9.3.1 METEOR@0.9.4

View File

@ -1,61 +1,61 @@
application-configuration@1.0.2 application-configuration@1.0.3
autoupdate@1.1.1 autoupdate@1.1.2
base64@1.0.0 base64@1.0.1
binary-heap@1.0.0 binary-heap@1.0.1
blaze-tools@1.0.0 blaze-tools@1.0.1
blaze@2.0.1 blaze@2.0.2
boilerplate-generator@1.0.0 boilerplate-generator@1.0.1
callback-hook@1.0.0 callback-hook@1.0.1
check@1.0.1 check@1.0.2
ctl-helper@1.0.3 ctl-helper@1.0.4
ctl@1.0.1 ctl@1.0.2
dburles:collection-helpers@1.0.0 dburles:collection-helpers@1.0.0
ddp@1.0.9 ddp@1.0.10
deps@1.0.4 deps@1.0.5
ejson@1.0.3 ejson@1.0.4
fastclick@1.0.0 fastclick@1.0.1
follower-livedata@1.0.1 follower-livedata@1.0.2
geojson-utils@1.0.0 geojson-utils@1.0.1
html-tools@1.0.1 html-tools@1.0.2
htmljs@1.0.1 htmljs@1.0.2
http@1.0.6 http@1.0.7
id-map@1.0.0 id-map@1.0.1
iron:core@0.3.4 iron:core@0.3.4
iron:dynamic-template@0.4.1 iron:dynamic-template@0.4.1
iron:layout@0.4.1 iron:layout@0.4.1
iron:router@0.9.4 iron:router@0.9.4
jquery@1.0.0 jquery@1.0.1
json@1.0.0 json@1.0.1
less@1.0.9 less@1.0.10
livedata@1.0.10 livedata@1.0.11
logging@1.0.3 logging@1.0.4
meteor-platform@1.1.1 meteor-platform@1.1.2
meteor@1.1.1 meteor@1.1.2
minifiers@1.1.0 minifiers@1.1.1
minimongo@1.0.3 minimongo@1.0.4
mobile-status-bar@1.0.0 mobile-status-bar@1.0.1
mongo-livedata@1.0.5 mongo-livedata@1.0.6
mongo@1.0.6 mongo@1.0.7
mrt:underscore-string-latest@2.3.3 mrt:underscore-string-latest@2.3.3
observe-sequence@1.0.2 observe-sequence@1.0.3
ordered-dict@1.0.0 ordered-dict@1.0.1
raix:handlebar-helpers@0.1.3 raix:handlebar-helpers@0.1.3
random@1.0.0 random@1.0.1
reactive-dict@1.0.3 reactive-dict@1.0.4
reactive-var@1.0.2 reactive-var@1.0.3
reload@1.1.0 reload@1.1.1
retry@1.0.0 retry@1.0.1
reywood:iron-router-ga@0.3.2 reywood:iron-router-ga@0.3.2
routepolicy@1.0.1 routepolicy@1.0.2
session@1.0.2 session@1.0.3
simison:bootstrap3-less@0.3.0 simison:bootstrap3-less@0.3.0
spacebars-compiler@1.0.2 spacebars-compiler@1.0.3
spacebars@1.0.2 spacebars@1.0.3
standard-app-packages@1.0.2 standard-app-packages@1.0.3
templating@1.0.7 templating@1.0.8
tracker@1.0.2 tracker@1.0.3
ui@1.0.3 ui@1.0.4
underscore@1.0.0 underscore@1.0.1
url@1.0.0 url@1.0.1
webapp-hashing@1.0.0 webapp-hashing@1.0.1
webapp@1.1.2 webapp@1.1.3

View File

@ -3,7 +3,7 @@ var path = require('path');
Template.modal_create_app.helpers({ Template.modal_create_app.helpers({
images: function () { images: function () {
return Images.find({status: 'READY'}, {sort: {createdAt: -1}}); return Images.find({status: 'READY', 'docker.Config.ExposedPorts': {$ne: null}}, {sort: {createdAt: -1}});
} }
}); });