This commit is contained in:
Sacha Greif 2015-06-17 18:01:16 +09:00
commit 1526bb2675
40 changed files with 134 additions and 126 deletions

View file

@ -111,40 +111,40 @@ srp@1.0.3
standard-app-packages@1.0.5
stylus@1.0.7
tap:i18n@1.5.0
telescope:api@0.20.5
telescope:comments@0.20.5
telescope:core@0.20.5
telescope:daily@0.20.5
telescope:datetimepicker@0.20.5
telescope:email@0.20.5
telescope:embedly@0.20.5
telescope:events@0.20.5
telescope:getting-started@0.20.5
telescope:i18n@0.20.5
telescope:invites@0.20.5
telescope:kadira@0.20.5
telescope:lib@0.20.5
telescope:messages@0.20.5
telescope:migrations@0.20.5
telescope:newsletter@0.20.5
telescope:notifications@0.20.5
telescope:pages@0.20.5
telescope:post-by-feed@0.20.5
telescope:posts@0.20.5
telescope:releases@0.20.5
telescope:rss@0.20.5
telescope:scoring@0.20.5
telescope:search@0.20.5
telescope:settings@0.20.5
telescope:share@0.20.5
telescope:singleday@0.20.5
telescope:subscribe-to-posts@0.20.5
telescope:tagline-banner@0.20.5
telescope:tags@0.20.5
telescope:theme-base@0.20.5
telescope:theme-hubble@0.20.5
telescope:update-prompt@0.20.5
telescope:users@0.20.5
telescope:api@0.20.6
telescope:comments@0.20.6
telescope:core@0.20.6
telescope:daily@0.20.6
telescope:datetimepicker@0.20.6
telescope:email@0.20.6
telescope:embedly@0.20.6
telescope:events@0.20.6
telescope:getting-started@0.20.6
telescope:i18n@0.20.6
telescope:invites@0.20.6
telescope:kadira@0.20.6
telescope:lib@0.20.6
telescope:messages@0.20.6
telescope:migrations@0.20.6
telescope:newsletter@0.20.6
telescope:notifications@0.20.6
telescope:pages@0.20.6
telescope:post-by-feed@0.20.6
telescope:posts@0.20.6
telescope:releases@0.20.6
telescope:rss@0.20.6
telescope:scoring@0.20.6
telescope:search@0.20.6
telescope:settings@0.20.6
telescope:share@0.20.6
telescope:singleday@0.20.6
telescope:subscribe-to-posts@0.20.6
telescope:tagline-banner@0.20.6
telescope:tags@0.20.6
telescope:theme-base@0.20.6
telescope:theme-hubble@0.20.6
telescope:update-prompt@0.20.6
telescope:users@0.20.6
templating@1.1.1
tracker@1.0.7
tsega:bootstrap3-datetimepicker@3.1.3_3

View file

@ -1,3 +1,9 @@
## v0.20.6 “AutoScope”
* Add Extra CSS field (thanks @johnthepink!)
* Fix security issue with Settings (thanks @jshimko!)
* Add automatic template replacement
## v0.20.5 “MinorScope”
Just a couple minor bug fixes.

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:comments",
summary: "Telescope comments package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,10 +10,10 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:lib@0.20.5',
'telescope:i18n@0.20.5',
'telescope:settings@0.20.5',
'telescope:users@0.20.5'
'telescope:lib@0.20.6',
'telescope:i18n@0.20.6',
'telescope:settings@0.20.6',
'telescope:users@0.20.6'
]);
api.addFiles([

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:daily",
summary: "Telescope daily view",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,8 +10,8 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:core@0.20.5',
'telescope:singleday@0.20.5',
'telescope:core@0.20.6',
'telescope:singleday@0.20.6',
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:datetimepicker",
summary: "Custom bootstrap-datetimepicker input type for AutoForm",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-datetimepicker.git"
});
@ -10,7 +10,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
'telescope:core@0.20.5',
'telescope:core@0.20.6',
'tsega:bootstrap3-datetimepicker@3.1.3_1'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:email",
summary: "Telescope email package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-email.git"
});
@ -14,7 +14,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:core@0.20.5',
'telescope:core@0.20.6',
'sacha:juice@0.1.4'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:embedly",
summary: "Telescope Embedly module package",
version: "0.20.5",
version: "0.20.6",
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
});
@ -9,7 +9,7 @@ Package.onUse( function(api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
api.addFiles([
'package-tap.i18n',

View file

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

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:i18n",
summary: "Telescope i18n package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use(['telescope:lib@0.20.5']);
api.use(['telescope:lib@0.20.6']);
api.use(["session"], "client");

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:invites",
summary: "Telescope invites package",
version: "0.20.5",
version: "0.20.6",
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(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
// client

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:kadira",
summary: "Telescope Kadira package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-kadira.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:core@0.20.5',
'telescope:core@0.20.6',
'meteorhacks:kadira@2.20.6'
], ['client', 'server']);

View file

@ -5,4 +5,4 @@
Telescope = {};
Telescope.VERSION = '0.20.5';
Telescope.VERSION = '0.20.6';

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:messages",
summary: "Telescope messages package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-messages.git"
});
@ -9,7 +9,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:lib@0.20.5']);
api.use(['telescope:lib@0.20.6']);
api.addFiles([
'lib/client/messages.js',

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:newsletter",
summary: "Telescope email newsletter package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-newsletter.git"
});
@ -14,7 +14,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'telescope:core@0.20.5',
'telescope:core@0.20.6',
'miro:mailchimp@1.0.4',
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:notifications",
summary: "Telescope notifications package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-notifications.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'telescope:core@0.20.5',
'telescope:core@0.20.6',
'kestanous:herald@1.3.0',
'kestanous:herald-email@0.5.0',
'cmather:handlebars-server@0.2.0'

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:post-by-feed",
summary: "Auto post via RSS to Telescope",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-post-by-feed.git"
});
@ -16,7 +16,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
api.use([
'http',

View file

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

View file

@ -30,8 +30,9 @@ Meteor.startup(function () {
importRelease('0.14.2');
importRelease('0.14.3');
importRelease('0.15.0');
importRelease('0.20.4');
importRelease('0.20.5');
importRelease('0.20.5');
importRelease('0.20.6');
// if this is before the first run, mark all release notes as read to avoid showing them
if (!Events.findOne({name: 'firstRun'})) {

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:releases",
summary: "Show Telescope release notes and phone home with some stats.",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-releases.git"
});
@ -11,7 +11,7 @@ Package.onUse(function (api) {
// --------------------------- 1. Meteor packages dependencies ---------------------------
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
// ---------------------------------- 2. Files to include ----------------------------------
@ -51,8 +51,9 @@ Package.onUse(function (api) {
api.addFiles('releases/0.14.2.md', 'server', { isAsset: true });
api.addFiles('releases/0.14.3.md', 'server', { isAsset: true });
api.addFiles('releases/0.15.0.md', 'server', { isAsset: true });
api.addFiles('releases/0.20.4.md', 'server', { isAsset: true });
api.addFiles('releases/0.20.5.md', 'server', { isAsset: true });
api.addFiles('releases/0.20.5.md', 'server', { isAsset: true });
api.addFiles('releases/0.20.6.md', 'server', { isAsset: true });
// i18n languages (must come last)

View file

@ -1,4 +1,4 @@
### v0.20.5 “MinorScope”
### v0.20.6 “MinorScope”
Just a couple minor bug fixes.

View file

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

View file

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

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:settings",
summary: "Telescope settings package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -11,8 +11,8 @@ Package.onUse(function(api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:lib@0.20.5',
'telescope:i18n@0.20.5'
'telescope:lib@0.20.6',
'telescope:i18n@0.20.6'
]);
api.addFiles([

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: 'telescope:singleday',
summary: 'Telescope Single Day package',
version: '0.20.5',
version: '0.20.6',
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -15,7 +15,7 @@ Package.onUse(function (api) {
// --------------------------- 1. Meteor packages dependencies ---------------------------
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
// ---------------------------------- 2. Files to include ----------------------------------

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:sitemap",
summary: "Sitemap package for Telescope",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-sitemap.git"
});
@ -10,7 +10,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
"telescope:core@0.20.5",
"telescope:core@0.20.6",
"gadicohen:sitemaps@0.0.20"
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:subscribe-to-posts",
summary: "Subscribe to posts to be notified when they get new comments",
version: "0.20.5",
version: "0.20.6",
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(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
// ---------------------------------- 2. Files to include ----------------------------------

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:tagline-banner",
summary: "Show a banner containing your site's tagline on the homepage",
version: "0.20.5",
version: "0.20.6",
});
Package.onUse(function (api) {
@ -10,7 +10,7 @@ Package.onUse(function (api) {
// --------------------------- 1. Meteor packages dependencies ---------------------------
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
// ---------------------------------- 2. Files to include ----------------------------------

View file

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

View file

@ -1,14 +1,14 @@
Package.describe({
name: "telescope:theme-base",
summary: "Telescope base theme package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-theme-base.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
api.addFiles(
[

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:theme-hubble",
summary: "Telescope Hubble theme package",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-theme-hubble.git"
});
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
api.addFiles([
'lib/hubble.js',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:update-prompt",
summary: "Telescope update prompt package.",
version: "0.20.5",
version: "0.20.6",
git: "https://github.com/TelescopeJS/telescope-update-prompt.git"
});
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:core@0.20.5']);
api.use(['telescope:core@0.20.6']);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: 'telescope:users',
summary: 'Telescope permissions.',
version: '0.20.5',
version: '0.20.6',
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,9 +10,9 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:lib@0.20.5',
'telescope:settings@0.20.5',
'telescope:i18n@0.20.5'
'telescope:lib@0.20.6',
'telescope:settings@0.20.6',
'telescope:i18n@0.20.6'
]);
api.addFiles([