This commit is contained in:
Sacha Greif 2016-06-12 12:15:11 +09:00
parent 20acd10117
commit 7b8624f709
36 changed files with 144 additions and 145 deletions

View file

@ -77,34 +77,33 @@ modules-runtime@0.6.3
mongo@1.1.7
mongo-id@1.0.4
mongo-livedata@1.0.12
nova:api@0.26.2-nova
nova:base-components@0.26.2-nova
nova:base-routes@0.26.2-nova
nova:base-styles@0.26.2-nova
nova:categories@0.26.2-nova
nova:comments@0.26.2-nova
nova:core@0.26.2-nova
nova:debug@0.26.2-nova
nova:email@0.26.2-nova
nova:email-templates@0.26.2-nova
nova:embedly@0.26.2-nova
nova:events@0.26.2-nova
nova:forms@0.26.2-nova
nova:getting-started@0.26.2-nova
nova:i18n@0.26.2-nova
nova:i18n-en-us@0.26.2-nova
nova:i18n-fr-fr@1.0.0
nova:kadira@0.26.2-nova
nova:lib@0.26.2-nova
nova:newsletter@0.26.2-nova
nova:notifications@0.26.2-nova
nova:posts@0.26.2-nova
nova:rss@0.26.2-nova
nova:search@0.26.2-nova
nova:settings@0.26.2-nova
nova:share@0.26.2-nova
nova:users@0.26.2-nova
nova:voting@0.26.2-nova
nova:api@0.26.3-nova
nova:base-components@0.26.3-nova
nova:base-routes@0.26.3-nova
nova:base-styles@0.26.3-nova
nova:categories@0.26.3-nova
nova:comments@0.26.3-nova
nova:core@0.26.3-nova
nova:debug@0.26.3-nova
nova:email@0.26.3-nova
nova:email-templates@0.26.3-nova
nova:embedly@0.26.3-nova
nova:events@0.26.3-nova
nova:forms@0.26.3-nova
nova:getting-started@0.26.3-nova
nova:i18n@0.26.3-nova
nova:i18n-en-us@0.26.3-nova
nova:kadira@0.26.3-nova
nova:lib@0.26.3-nova
nova:newsletter@0.26.3-nova
nova:notifications@0.26.3-nova
nova:posts@0.26.3-nova
nova:rss@0.26.3-nova
nova:search@0.26.3-nova
nova:settings@0.26.3-nova
nova:share@0.26.3-nova
nova:users@0.26.3-nova
nova:voting@0.26.3-nova
npm-bcrypt@0.8.5
npm-mongo@1.4.43
oauth@1.1.10

View file

@ -1,7 +1,7 @@
Package.describe({
name: "invites",
summary: "Telescope invites package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-invites.git"
});
@ -17,7 +17,7 @@ Package.onUse(function (api) {
// automatic (let the package specify where it's needed)
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
// client

View file

@ -1,7 +1,7 @@
Package.describe({
name: "migrations",
summary: "Telescope migrations package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -9,7 +9,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
api.addFiles([
'lib/server/migrations.js'

View file

@ -1,7 +1,7 @@
Package.describe({
name: "subscribe-to-posts",
summary: "Subscribe to posts to be notified when they get new comments",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-subscribe-to-posts.git"
});
@ -14,7 +14,7 @@ Package.onUse(function (api) {
// automatic (let the package specify where it's needed)
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
// ---------------------------------- 2. Files to include ----------------------------------

View file

@ -1,7 +1,7 @@
Package.describe({
name: "theme-test",
summary: "Telescope components package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:lib@0.26.2-nova'
'nova:lib@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:api",
summary: "Telescope API package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
api.addFiles([
'lib/server/api.js',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:base-components",
summary: "Telescope components package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -13,11 +13,11 @@ Package.onUse(function (api) {
// Nova packages
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova',
'nova:comments@0.26.2-nova',
'nova:share@0.26.2-nova',
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova',
'nova:comments@0.26.3-nova',
'nova:share@0.26.3-nova',
// third-party packages

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:base-routes",
summary: "Nova routes package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -13,10 +13,10 @@ Package.onUse(function (api) {
// Nova packages
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova',
'nova:comments@0.26.2-nova',
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova',
'nova:comments@0.26.3-nova',
// third-party packages

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:base-styles",
summary: "Nova basic styles package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova',
'nova:core@0.26.3-nova',
'fourseven:scss@3.4.1',
// 'juliancwirko:postcss@1.0.0-rc.4',
// 'seba:minifiers-autoprefixer@0.0.1',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:categories",
summary: "Telescope tags package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-tags.git"
});
@ -10,9 +10,9 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova'
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: 'nova:cloudinary',
summary: 'Telescope file upload package.',
version: '0.26.2-nova',
version: '0.26.3-nova',
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,8 +10,8 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:posts@0.26.2-nova',
'nova:core@0.26.2-nova'
'nova:posts@0.26.3-nova',
'nova:core@0.26.3-nova'
]);
api.use([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:comments",
summary: "Telescope comments package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,16 +10,16 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:lib@0.26.2-nova',
// 'nova:i18n@0.26.2-nova',
'nova:settings@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova'
'nova:lib@0.26.3-nova',
// 'nova:i18n@0.26.3-nova',
'nova:settings@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova'
]);
api.use([
'nova:notifications@0.26.2-nova',
'nova:email@0.26.2-nova'
'nova:notifications@0.26.3-nova',
'nova:email@0.26.3-nova'
], ['client', 'server'], {weak: true});
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:core",
summary: "Telescope core package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,10 +10,10 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
var packages = [
'nova:lib@0.26.2-nova', // no dependencies
// 'nova:messages@0.26.2-nova', // lib
'nova:i18n@0.26.2-nova', // lib
'nova:events@0.26.2-nova' // lib, i18n
'nova:lib@0.26.3-nova', // no dependencies
// 'nova:messages@0.26.3-nova', // lib
'nova:i18n@0.26.3-nova', // lib
'nova:events@0.26.3-nova' // lib, i18n
];
api.use(packages);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:debug",
summary: "Telescope debug package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -13,10 +13,10 @@ Package.onUse(function (api) {
// Nova packages
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova',
'nova:comments@0.26.2-nova',
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova',
'nova:comments@0.26.3-nova',
'fourseven:scss@3.4.1'

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:demo",
summary: "Telescope components package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -13,7 +13,7 @@ Package.onUse(function (api) {
// Nova packages
'nova:core@0.26.2-nova',
'nova:core@0.26.3-nova',
'utilities:react-list-container@0.1.10',
'utilities:smart-publications@0.1.4',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:email-templates",
summary: "Telescope email templates package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -10,11 +10,11 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova',
'nova:comments@0.26.2-nova',
'nova:email@0.26.2-nova'
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova',
'nova:comments@0.26.3-nova',
'nova:email@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:email",
summary: "Telescope email package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-email.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova'
'nova:core@0.26.3-nova'
]);
// do not use for now since tap:i18n doesn't support server-side templates yet

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:embedly",
summary: "Telescope Embedly module package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
});
@ -10,9 +10,9 @@ Package.onUse( function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:users@0.26.2-nova',
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova',
'fourseven:scss@3.4.1'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:events",
summary: "Telescope event tracking package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,8 +10,8 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:lib@0.26.2-nova',
// 'nova:i18n@0.26.2-nova'
'nova:lib@0.26.3-nova',
// 'nova:i18n@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:forms-tags",
summary: "Telescope tag input package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: 'https://github.com/TelescopeJS/telescope.git'
});
@ -10,8 +10,8 @@ Package.onUse( function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova',
'nova:forms@0.26.2-nova'
'nova:core@0.26.3-nova',
'nova:forms@0.26.3-nova'
]);
api.mainModule("lib/export.js", ["client", "server"]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:forms",
summary: "Form containers for React",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/meteor-utilities/react-form-containers.git"
});

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:getting-started",
summary: "Getting started posts",
version: '0.26.2-nova',
version: '0.26.3-nova',
git: "https://github.com/TelescopeJS/telescope-getting-started.git"
});
@ -14,10 +14,10 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:comments@0.26.2-nova',
'nova:users@0.26.2-nova'
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:comments@0.26.3-nova',
'nova:users@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:i18n-en-us",
summary: "Telescope i18n package (en_US)",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova'
'nova:core@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:i18n",
summary: "Telescope i18n package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:lib@0.26.2-nova'
'nova:lib@0.26.3-nova'
// 'tap:i18n@1.8.0'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:kadira",
summary: "Telescope Kadira package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova',
'nova:core@0.26.3-nova',
'meteorhacks:kadira@2.28.5',
'kadira:debug@3.2.2',
'meteorhacks:kadira-profiler@1.2.1'

View file

@ -5,7 +5,7 @@
Telescope = {};
Telescope.VERSION = '0.26.2-nova';
Telescope.VERSION = '0.26.3-nova';
// ------------------------------------- Config -------------------------------- //

View file

@ -1,7 +1,7 @@
Package.describe({
name: 'nova:lib',
summary: 'Telescope libraries.',
version: '0.26.2-nova',
version: '0.26.3-nova',
git: "https://github.com/TelescopeJS/Telescope.git"
});

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:newsletter",
summary: "Telescope email newsletter package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-newsletter.git"
});
@ -10,11 +10,11 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova',
'nova:posts@0.26.2-nova',
'nova:comments@0.26.2-nova',
'nova:users@0.26.2-nova',
'nova:email@0.26.2-nova'
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:comments@0.26.3-nova',
'nova:users@0.26.3-nova',
'nova:email@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:notifications",
summary: "Telescope notifications package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-notifications.git"
});
@ -10,9 +10,9 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova',
'nova:email@0.26.2-nova',
'nova:users@0.26.2-nova'
'nova:core@0.26.3-nova',
'nova:email@0.26.3-nova',
'nova:users@0.26.3-nova'
// 'kestanous:herald@1.3.0',
// 'kestanous:herald-email@0.5.0'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:posts",
summary: "Telescope posts package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-posts.git"
});
@ -14,17 +14,17 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova',
// 'nova:i18n@0.26.2-nova',
// 'nova:settings@0.26.2-nova',
'nova:users@0.26.2-nova',
// 'nova:comments@0.26.2-nova'
'nova:core@0.26.3-nova',
// 'nova:i18n@0.26.3-nova',
// 'nova:settings@0.26.3-nova',
'nova:users@0.26.3-nova',
// 'nova:comments@0.26.3-nova'
'utilities:react-list-container@0.1.10'
]);
api.use([
'nova:notifications@0.26.2-nova',
'nova:email@0.26.2-nova'
'nova:notifications@0.26.3-nova',
'nova:email@0.26.3-nova'
], ['client', 'server'], {weak: true});
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:rss",
summary: "Telescope RSS package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-rss.git"
});
@ -9,7 +9,7 @@ Npm.depends({rss: "1.1.1"});
Package.onUse(function (api) {
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
api.addFiles(['lib/server/rss.js', 'lib/server/routes.js'], ['server']);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:search",
summary: "Telescope search package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-pages.git"
});
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
api.addFiles([
'lib/parameters.js',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:settings",
summary: "Telescope settings package only necessary if you're storing settings in a collection",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,9 +10,9 @@ Package.onUse(function(api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:lib@0.26.2-nova',
'nova:users@0.26.2-nova'
// 'nova:i18n@0.26.2-nova'
'nova:lib@0.26.3-nova',
'nova:users@0.26.3-nova'
// 'nova:i18n@0.26.3-nova'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:share",
summary: "Telescope share module package",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope-share.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.26.2-nova',
'nova:core@0.26.3-nova',
'fourseven:scss@3.4.1'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: 'nova:users',
summary: 'Telescope permissions.',
version: '0.26.2-nova',
version: '0.26.3-nova',
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,11 +10,11 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@0.26.2-nova'
'nova:core@0.26.3-nova'
]);
api.use([
'nova:email@0.26.2-nova'
'nova:email@0.26.3-nova'
], ['client', 'server'], {weak: true});
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "nova:voting",
summary: "Telescope scoring package.",
version: "0.26.2-nova",
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -9,11 +9,11 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.2-nova']);
api.use(['nova:core@0.26.3-nova']);
api.use([
'nova:posts@0.26.2-nova',
'nova:comments@0.26.2-nova'
'nova:posts@0.26.3-nova',
'nova:comments@0.26.3-nova'
], ['client', 'server']);
api.addFiles([