version bump (0.25.2)

This commit is contained in:
Sacha Greif 2015-10-15 12:15:26 +09:00
parent 50633ff089
commit 68518414a9
42 changed files with 145 additions and 130 deletions

View file

@ -130,41 +130,41 @@ srp@1.0.4
standard-app-packages@1.0.6
standard-minifiers@1.0.1
tap:i18n@1.7.0
telescope:api@0.25.0
telescope:comments@0.25.0
telescope:core@0.25.0
telescope:daily@0.25.0
telescope:datetimepicker@0.25.0
telescope:debug@0.25.0
telescope:email@0.25.0
telescope:embedly@0.25.0
telescope:events@0.25.0
telescope:getting-started@0.25.0
telescope:i18n@0.25.0
telescope:invites@0.25.0
telescope:kadira@0.25.0
telescope:lib@0.25.1
telescope:messages@0.25.0
telescope:migrations@0.25.0
telescope:newsletter@0.25.0
telescope:notifications@0.25.0
telescope:pages@0.25.0
telescope:post-by-feed@0.25.0
telescope:posts@0.25.0
telescope:releases@0.25.0
telescope:rss@0.25.0
telescope:scoring@0.25.0
telescope:search@0.25.0
telescope:settings@0.25.0
telescope:share@0.25.0
telescope:spiderable@0.25.0
telescope:subscribe-to-posts@0.25.0
telescope:tagline-banner@0.25.0
telescope:tags@0.25.1
telescope:theme-base@0.25.0
telescope:theme-hubble@0.25.0
telescope:update-prompt@0.25.0
telescope:users@0.25.0
telescope:api@0.25.2
telescope:comments@0.25.2
telescope:core@0.25.2
telescope:daily@0.25.2
telescope:datetimepicker@0.25.2
telescope:debug@0.25.2
telescope:email@0.25.2
telescope:embedly@0.25.2
telescope:events@0.25.2
telescope:getting-started@0.25.2
telescope:i18n@0.25.2
telescope:invites@0.25.2
telescope:kadira@0.25.2
telescope:lib@0.25.2
telescope:messages@0.25.2
telescope:migrations@0.25.2
telescope:newsletter@0.25.2
telescope:notifications@0.25.2
telescope:pages@0.25.2
telescope:post-by-feed@0.25.2
telescope:posts@0.25.2
telescope:releases@0.25.2
telescope:rss@0.25.2
telescope:scoring@0.25.2
telescope:search@0.25.2
telescope:settings@0.25.2
telescope:share@0.25.2
telescope:spiderable@0.25.2
telescope:subscribe-to-posts@0.25.2
telescope:tagline-banner@0.25.2
telescope:tags@0.25.2
telescope:theme-base@0.25.2
telescope:theme-hubble@0.25.2
telescope:update-prompt@0.25.2
telescope:users@0.25.2
templating@1.1.4
templating-tools@1.0.0
tmeasday:publish-counts@0.7.2

View file

@ -1,4 +1,4 @@
## v0.25.1
## v0.25.2 “MenuScope”
* Added `regenerateAllThumbnails` method.
* Fixed `postedAt` issue with pending posts.

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:api",
summary: "Telescope API package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
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.25.0",
version: "0.25.2",
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.25.0',
'telescope:i18n@0.25.0',
'telescope:settings@0.25.0',
'telescope:users@0.25.0'
'telescope:lib@0.25.2',
'telescope:i18n@0.25.2',
'telescope:settings@0.25.2',
'telescope:users@0.25.2'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:core",
summary: "Telescope core package",
version: "0.25.0",
version: "0.25.2",
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.25.0', // no dependencies
'telescope:messages@0.25.0', // lib
'telescope:i18n@0.25.0', // lib
'telescope:events@0.25.0', // lib, i18n
'telescope:settings@0.25.0', // lib, i18n
'telescope:users@0.25.0', // lib, i18n, settings
'telescope:comments@0.25.0', // lib, i18n, settings, users
'telescope:posts@0.25.0' // lib, i18n, settings, users, comments
'telescope:lib@0.25.2', // no dependencies
'telescope:messages@0.25.2', // lib
'telescope:i18n@0.25.2', // lib
'telescope:events@0.25.2', // lib, i18n
'telescope:settings@0.25.2', // lib, i18n
'telescope:users@0.25.2', // lib, i18n, settings
'telescope:comments@0.25.2', // lib, i18n, settings, users
'telescope:posts@0.25.2' // 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.25.0",
version: "0.25.2",
git: "https://github.com/TelescopeJS/Telescope.git"
});
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'telescope:core@0.25.0'
'telescope:core@0.25.2'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:datetimepicker",
summary: "Custom bootstrap-datetimepicker input type for AutoForm",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:core@0.25.2',
'tsega:bootstrap3-datetimepicker@4.17.37_1'
]);

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:email",
summary: "Telescope email package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:core@0.25.2',
'sacha:juice@0.1.4'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:embedly",
summary: "Telescope Embedly module package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'package-tap.i18n',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:events",
summary: "Telescope event tracking package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:i18n@0.25.0'
'telescope:lib@0.25.2',
'telescope:i18n@0.25.2'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:getting-started",
summary: "Getting started posts",
version: '0.25.0',
version: '0.25.2',
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.25.0']);
api.use(['telescope:core@0.25.2']);
// client

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:i18n",
summary: "Telescope i18n package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:lib@0.25.2']);
api.use(["session"], "client");

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:kadira",
summary: "Telescope Kadira package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:core@0.25.2',
'meteorhacks:kadira@2.23.6',
'kadira:debug@2.2.4'
], ['client', 'server']);

View file

@ -5,4 +5,4 @@
Telescope = {};
Telescope.VERSION = '0.25.0';
Telescope.VERSION = '0.25.2';

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:messages",
summary: "Telescope messages package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:lib@0.25.2']);
api.addFiles([
'lib/modules.js'

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:migrations",
summary: "Telescope migrations package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/server/migrations.js'

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:newsletter",
summary: "Telescope email newsletter package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:core@0.25.2',
'miro:mailchimp@1.1.0',
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:notifications",
summary: "Telescope notifications package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:core@0.25.2',
'kestanous:herald@1.3.0',
'kestanous:herald-email@0.5.0'
]);

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:pages",
summary: "Telescope static pages package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
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.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/feeds.js'

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:posts",
summary: "Telescope posts package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:i18n@0.25.0',
'telescope:settings@0.25.0',
'telescope:users@0.25.0',
'telescope:comments@0.25.0'
'telescope:lib@0.25.2',
'telescope:i18n@0.25.2',
'telescope:settings@0.25.2',
'telescope:users@0.25.2',
'telescope:comments@0.25.2'
]);
api.addFiles([

View file

@ -21,7 +21,7 @@ var importRelease = function (number) {
Meteor.startup(function () {
importRelease('0.25.0');
importRelease('0.25.2');
// 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.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
// ---------------------------------- 2. Files to include ----------------------------------
@ -42,7 +42,7 @@ Package.onUse(function (api) {
], ['server']);
api.addAssets('releases/0.25.0.md', 'server');
api.addAssets('releases/0.25.2.md', 'server');
// i18n languages (must come last)

View file

@ -0,0 +1,15 @@
### v0.25.2 “MenuScope”
* Added `regenerateAllThumbnails` method.
* Fixed `postedAt` issue with pending posts.
* Created `postsListTop` zone and moved `messages`, `category_title`, and `views_menu` modules to it.
* Renamed `category_menu_item` template to `categories_menu_item`.
* Added `itemTemplate` option to menu to enable setting a custom template for all elements.
* Created new `defaultMenuItem` template.
* Now passing reference to whole `menu` object to each node instead of just `menuItems`.
* Renamed `top` zone to `contentTop`.
* Created new `contentBottom`, `postsListTop`, `postsListBottom` zones.
* Extracted menu component into its own `utilities:menu` package.
* Newsletter banner is now included in `contentTop` zone, not `hero`.
* Renamed "Outside Links Point To" setting to "RSS Links Point To".
* Added infinite scrolling option.

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:rss",
summary: "Telescope RSS package",
version: "0.25.0",
version: "0.25.2",
git: "https://github.com/TelescopeJS/telescope-rss.git"
});
@ -9,7 +9,7 @@ Npm.depends({rss: "1.1.1"});
Package.onUse(function (api) {
api.use(['telescope:core@0.25.0']);
api.use(['telescope:core@0.25.2']);
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.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/scoring.js',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:search",
summary: "Telescope search package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/search.js',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:settings",
summary: "Telescope settings package",
version: "0.25.0",
version: "0.25.2",
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.25.0',
'telescope:i18n@0.25.0'
'telescope:lib@0.25.2',
'telescope:i18n@0.25.2'
]);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:share",
summary: "Telescope share module package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/share.js'

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:sitemap",
summary: "Sitemap package for Telescope",
version: "0.25.0",
version: "0.25.2",
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.25.0",
"telescope:core@0.25.2",
"gadicohen:sitemaps@0.0.20"
]);

View file

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

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.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
// ---------------------------------- 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.25.0",
version: "0.25.2",
});
Package.onUse(function (api) {
@ -10,7 +10,7 @@ Package.onUse(function (api) {
// --------------------------- 1. Meteor packages dependencies ---------------------------
api.use(['telescope:core@0.25.0']);
api.use(['telescope:core@0.25.2']);
// ---------------------------------- 2. Files to include ----------------------------------

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:tags",
summary: "Telescope tags package",
version: "0.25.1",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/categories.js',

View file

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

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:theme-hubble",
summary: "Telescope Hubble theme package",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([
'lib/hubble.js',

View file

@ -1,7 +1,7 @@
Package.describe({
name: "telescope:update-prompt",
summary: "Telescope update prompt package.",
version: "0.25.0",
version: "0.25.2",
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.25.0']);
api.use(['telescope:core@0.25.2']);
api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({
name: 'telescope:users',
summary: 'Telescope permissions.',
version: '0.25.0',
version: '0.25.2',
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.25.0',
'telescope:settings@0.25.0',
'telescope:i18n@0.25.0'
'telescope:lib@0.25.2',
'telescope:settings@0.25.2',
'telescope:i18n@0.25.2'
]);
api.addFiles([