Compare commits

...

18 Commits

Author SHA1 Message Date
Julian Lam
ef750e2ebd updated shrinkwrap file 2015-07-21 15:26:24 -04:00
Julian Lam
67d9209b99 fixed regression of pagination caused by changes to ajaxification logic 2015-07-21 15:25:12 -04:00
Julian Lam
98c1390e7f updated theme minvers 2015-07-21 15:25:06 -04:00
Julian Lam
a3d17d14fd 0.7.1 2015-07-21 14:55:29 -04:00
Julian Lam
307eb19d01 updated shrinkwrap file 2015-07-21 14:54:27 -04:00
Julian Lam
f475d6e3b8 switching default theme on installation to Persona, from Lavender 2015-07-21 14:54:14 -04:00
Julian Lam
b4465b7df1 Merge branch 'master' into v0.7.x 2015-07-21 14:45:45 -04:00
Julian Lam
aa001b5926 Merge pull request #3287 from exo-do/v0.7.x
Update user.json
2015-07-02 22:52:48 -04:00
.marty
5c253c1efa Update user.json
fixed some missing translations
2015-07-03 04:42:47 +02:00
Barış Soner Uşaklı
59b14669c4 fix composer on mobile 2015-06-29 13:32:01 -04:00
Barış Soner Uşaklı
3e386e7668 fix xss on website 2015-06-21 02:15:34 -04:00
Julian Lam
43b90c5679 fixed #3218
Conflicts:
	src/database/mongo.js
2015-06-05 13:35:58 -04:00
Barış Soner Uşaklı
58b8c32fe9 crash fix 2015-05-29 00:47:37 -04:00
Julian Lam
1b88a6a523 upped mentions minver 2015-05-28 12:16:59 -04:00
Julian Lam
8ecd90729e latest translations and fallbacks 2015-05-28 12:16:31 -04:00
barisusakli
a5b8a656e9 fix minSchemaDate 2015-05-23 19:30:56 -04:00
Julian Lam
2cae7995e7 0.7.0 2015-05-23 18:56:50 -04:00
Julian Lam
19ca796915 🚀 2015-05-23 18:56:42 -04:00
8 changed files with 3546 additions and 12 deletions

3534
npm-shrinkwrap.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "0.7.1-dev",
"version": "0.7.1",
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",
@@ -48,9 +48,9 @@
"nodebb-plugin-soundpack-default": "^0.1.1",
"nodebb-plugin-spam-be-gone": "^0.4.0",
"nodebb-rewards-essentials": "^0.0.1",
"nodebb-theme-lavender": "^1.0.47",
"nodebb-theme-persona": "^1.0.15",
"nodebb-theme-vanilla": "^2.0.13",
"nodebb-theme-lavender": "^1.0.48",
"nodebb-theme-persona": "^1.0.16",
"nodebb-theme-vanilla": "^2.0.14",
"nodebb-widget-essentials": "^1.0.2",
"npm": "^2.1.4",
"passport": "^0.2.1",

View File

@@ -85,4 +85,4 @@
"follow_topics_you_create": "Seguir publicaciones que creas",
"grouptitle": "Selecciona el título del grupo que deseas visualizar",
"no-group-title": "Sin título de grupo"
}
}

View File

@@ -27,7 +27,7 @@
"header.tags": "话题",
"header.popular": "热门",
"header.users": "会员",
"header.groups": "组",
"header.groups": "组",
"header.chats": "聊天",
"header.notifications": "通知",
"header.search": "搜索",

View File

@@ -25,7 +25,7 @@
"watched": "已订阅",
"followers": "粉丝",
"following": "关注",
"aboutme": "About me",
"aboutme": "关于我",
"signature": "签名档",
"gravatar": "头像",
"birthday": "生日",

View File

@@ -276,14 +276,14 @@ $(document).ready(function() {
(RELATIVE_PATH.length > 0 ? this.pathname.indexOf(RELATIVE_PATH) === 0 : true)) // Subfolder installs need this additional check
) {
// Internal link
var url = this.pathname.replace(RELATIVE_PATH + '/', '');
var pathname = this.href.replace(rootUrl + RELATIVE_PATH + '/', '');
// Special handling for urls with hashes
if (window.location.pathname === this.pathname && this.hash.length) {
window.location.hash = this.hash;
} else {
window.location.hash = '';
if (ajaxify.go(url)) {
if (ajaxify.go(pathname)) {
e.preventDefault();
}
}

View File

@@ -284,10 +284,10 @@ function enableDefaultTheme(next) {
return next(err);
}
process.stdout.write('Enabling default theme: Lavender\n');
process.stdout.write('Enabling default theme: Persona\n');
meta.themes.set({
type: 'local',
id: 'nodebb-theme-lavender'
id: 'nodebb-theme-persona'
}, next);
});
}

View File

@@ -117,4 +117,4 @@ module.exports = function(Topics) {
Topics.setTopicField(tid, 'teaserPid', pid, callback);
});
};
};
};