1
0
mirror of https://github.com/fazo96/homework.git synced 2025-01-10 12:14:22 +01:00

update meteor and packages

This commit is contained in:
Enrico Fasoli 2014-10-18 20:57:32 +02:00
parent e91a78ec7c
commit bf3b1a808a
6 changed files with 69 additions and 68 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/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,73 +1,73 @@
accounts-base@1.1.1 accounts-base@1.1.2
accounts-oauth@1.1.1 accounts-oauth@1.1.2
accounts-password@1.0.2 accounts-password@1.0.3
accounts-twitter@1.0.1 accounts-twitter@1.0.2
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
coffeescript@1.0.3 coffeescript@1.0.4
ctl-helper@1.0.3 ctl-helper@1.0.4
ctl@1.0.1 ctl@1.0.2
ddp@1.0.9 ddp@1.0.10
deps@1.0.4 deps@1.0.5
ejson@1.0.3 ejson@1.0.4
email@1.0.3 email@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
kevohagan:sweetalert@0.0.1 kevohagan:sweetalert@0.0.1
livedata@1.0.10 livedata@1.0.11
localstorage@1.0.0 localstorage@1.0.1
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
mizzao:bootstrap-3@3.2.0_1 mizzao:bootstrap-3@3.2.0_1
mobile-status-bar@1.0.0 mobile-status-bar@1.0.1
mongo@1.0.6 mongo@1.0.7
mrt:moment@2.8.1 mrt:moment@2.8.1
natestrauser:font-awesome@4.2.0 natestrauser:font-awesome@4.2.0
npm-bcrypt@0.7.7 npm-bcrypt@0.7.7
oauth1@1.1.0 oauth1@1.1.1
oauth@1.1.0 oauth@1.1.1
observe-sequence@1.0.2 observe-sequence@1.0.3
ordered-dict@1.0.0 ordered-dict@1.0.1
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
routepolicy@1.0.1 routepolicy@1.0.2
service-configuration@1.0.1 service-configuration@1.0.2
session@1.0.2 session@1.0.3
sha@1.0.0 sha@1.0.1
spacebars-compiler@1.0.2 spacebars-compiler@1.0.3
spacebars@1.0.2 spacebars@1.0.3
spiderable@1.0.3 spiderable@1.0.4
srp@1.0.0 srp@1.0.1
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
twitter@1.1.0 twitter@1.1.1
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

@ -1,5 +1,5 @@
# Homework - Client Side # Homework - Client Side
version = "1.1.5" version = "1.1.6"
# Utilities # Utilities
tick = new Deps.Dependency() tick = new Deps.Dependency()
Meteor.setInterval (-> tick.changed();), 15000 Meteor.setInterval (-> tick.changed();), 15000

View File

@ -28,8 +28,6 @@ Meteor.publish "archive", ->
# Custom new account default settings # Custom new account default settings
Accounts.onCreateUser (options, user) -> Accounts.onCreateUser (options, user) ->
console.log options
console.log user
user.dateformat = options.dateformat or "MM/DD/YYYY" user.dateformat = options.dateformat or "MM/DD/YYYY"
return user return user