Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit fef1818

Browse files
committed
version 0.25.5
1 parent df6c43e commit fef1818

44 files changed

Lines changed: 141 additions & 147 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.meteor/versions

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -130,42 +130,42 @@ spiderable@1.0.9
130130
srp@1.0.4
131131
standard-app-packages@1.0.6
132132
tap:i18n@1.7.0
133-
telescope:api@0.25.4
134-
telescope:comments@0.25.4
135-
telescope:core@0.25.4
136-
telescope:daily@0.25.4
137-
telescope:datetimepicker@0.25.4
138-
telescope:debug@0.25.4
139-
telescope:email@0.25.4
140-
telescope:embedly@0.25.4
141-
telescope:events@0.25.4
142-
telescope:getting-started@0.25.4
143-
telescope:i18n@0.25.4
144-
telescope:invites@0.25.4
145-
telescope:kadira@0.25.4
146-
telescope:lib@0.25.4
147-
telescope:messages@0.25.4
148-
telescope:migrations@0.25.4
149-
telescope:newsletter@0.25.4
150-
telescope:notifications@0.25.4
151-
telescope:pages@0.25.4
152-
telescope:post-by-feed@0.25.4
153-
telescope:posts@0.25.4
154-
telescope:prerender@0.25.4
155-
telescope:releases@0.25.4
156-
telescope:rss@0.25.4
157-
telescope:scoring@0.25.4
158-
telescope:search@0.25.4
159-
telescope:settings@0.25.4
160-
telescope:share@0.25.4
161-
telescope:spiderable@0.25.4
162-
telescope:subscribe-to-posts@0.25.4
163-
telescope:tagline-banner@0.25.4
164-
telescope:tags@0.25.4
165-
telescope:theme-base@0.25.4
166-
telescope:theme-hubble@0.25.4
167-
telescope:update-prompt@0.25.4
168-
telescope:users@0.25.4
133+
telescope:api@0.25.5
134+
telescope:comments@0.25.5
135+
telescope:core@0.25.5
136+
telescope:daily@0.25.5
137+
telescope:datetimepicker@0.25.5
138+
telescope:debug@0.25.5
139+
telescope:email@0.25.5
140+
telescope:embedly@0.25.5
141+
telescope:events@0.25.5
142+
telescope:getting-started@0.25.5
143+
telescope:i18n@0.25.5
144+
telescope:invites@0.25.5
145+
telescope:kadira@0.25.5
146+
telescope:lib@0.25.5
147+
telescope:messages@0.25.5
148+
telescope:migrations@0.25.5
149+
telescope:newsletter@0.25.5
150+
telescope:notifications@0.25.5
151+
telescope:pages@0.25.5
152+
telescope:post-by-feed@0.25.5
153+
telescope:posts@0.25.5
154+
telescope:prerender@0.25.5
155+
telescope:releases@0.25.5
156+
telescope:rss@0.25.5
157+
telescope:scoring@0.25.5
158+
telescope:search@0.25.5
159+
telescope:settings@0.25.5
160+
telescope:share@0.25.5
161+
telescope:spiderable@0.25.5
162+
telescope:subscribe-to-posts@0.25.5
163+
telescope:tagline-banner@0.25.5
164+
telescope:tags@0.25.5
165+
telescope:theme-base@0.25.5
166+
telescope:theme-hubble@0.25.5
167+
telescope:update-prompt@0.25.5
168+
telescope:users@0.25.5
169169
templating@1.1.5
170170
templating-tools@1.0.0
171171
tmeasday:publish-counts@0.7.2

.tx/config

Lines changed: 0 additions & 15 deletions
This file was deleted.

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.25.5 “PrefixerScope”
2+
3+
* Various small bug fixes.
4+
* Added `seba:minifiers-autoprefixer` to re-enable CSS prefixing.
5+
16
## v0.25.4 “PrerenderScope”
27

38
* Added `telescope:prerender` package.

packages/telescope-api/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package.describe({
22
name: "telescope:api",
33
summary: "Telescope API package",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

88
Package.onUse(function (api) {
99

1010
api.versionsFrom(['METEOR@1.0']);
1111

12-
api.use(['telescope:core@0.25.4']);
12+
api.use(['telescope:core@0.25.5']);
1313

1414
api.addFiles(['lib/server/api.js', 'lib/server/routes.js'], ['server']);
1515

packages/telescope-comments/package.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "telescope:comments",
33
summary: "Telescope comments package",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

@@ -10,10 +10,10 @@ Package.onUse(function (api) {
1010
api.versionsFrom(['METEOR@1.0']);
1111

1212
api.use([
13-
'telescope:lib@0.25.4',
14-
'telescope:i18n@0.25.4',
15-
'telescope:settings@0.25.4',
16-
'telescope:users@0.25.4'
13+
'telescope:lib@0.25.5',
14+
'telescope:i18n@0.25.5',
15+
'telescope:settings@0.25.5',
16+
'telescope:users@0.25.5'
1717
]);
1818

1919
api.addFiles([

packages/telescope-core/package.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "telescope:core",
33
summary: "Telescope core package",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

@@ -10,14 +10,14 @@ Package.onUse(function(api) {
1010
api.versionsFrom("METEOR@1.0");
1111

1212
var packages = [
13-
'telescope:lib@0.25.4', // no dependencies
14-
'telescope:messages@0.25.4', // lib
15-
'telescope:i18n@0.25.4', // lib
16-
'telescope:events@0.25.4', // lib, i18n
17-
'telescope:settings@0.25.4', // lib, i18n
18-
'telescope:users@0.25.4', // lib, i18n, settings
19-
'telescope:comments@0.25.4', // lib, i18n, settings, users
20-
'telescope:posts@0.25.4' // lib, i18n, settings, users, comments
13+
'telescope:lib@0.25.5', // no dependencies
14+
'telescope:messages@0.25.5', // lib
15+
'telescope:i18n@0.25.5', // lib
16+
'telescope:events@0.25.5', // lib, i18n
17+
'telescope:settings@0.25.5', // lib, i18n
18+
'telescope:users@0.25.5', // lib, i18n, settings
19+
'telescope:comments@0.25.5', // lib, i18n, settings, users
20+
'telescope:posts@0.25.5' // lib, i18n, settings, users, comments
2121
];
2222

2323
api.use(packages);

packages/telescope-daily/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "telescope:daily",
33
summary: "Telescope daily view",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom(['METEOR@1.0']);
1111

1212
api.use([
13-
'telescope:core@0.25.4'
13+
'telescope:core@0.25.5'
1414
]);
1515

1616
api.addFiles([

packages/telescope-datetimepicker/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "telescope:datetimepicker",
33
summary: "Custom bootstrap-datetimepicker input type for AutoForm",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/telescope-datetimepicker.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function(api) {
1010
api.versionsFrom("METEOR@1.0");
1111

1212
api.use([
13-
'telescope:core@0.25.4',
13+
'telescope:core@0.25.5',
1414
'tsega:bootstrap3-datetimepicker@4.17.37_1'
1515
]);
1616

packages/telescope-debug/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "telescope:debug",
33
summary: "Telescope debug package",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/Telescope.git",
66
debugOnly: true
77
});
@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010

1111
api.versionsFrom(['METEOR@1.0']);
1212

13-
api.use(['telescope:core@0.25.4']);
13+
api.use(['telescope:core@0.25.5']);
1414

1515
api.addFiles([
1616
'lib/debug.js'

packages/telescope-email/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "telescope:email",
33
summary: "Telescope email package",
4-
version: "0.25.4",
4+
version: "0.25.5",
55
git: "https://github.com/TelescopeJS/telescope-email.git"
66
});
77

@@ -14,7 +14,7 @@ Package.onUse(function (api) {
1414
api.versionsFrom(['METEOR@1.0']);
1515

1616
api.use([
17-
'telescope:core@0.25.4',
17+
'telescope:core@0.25.5',
1818
'sacha:juice@0.1.4'
1919
]);
2020

0 commit comments

Comments
 (0)