Commit e852ccf4 authored by Liang Ding's avatar Liang Ding

版本 0.5.0

parent 80ef49a1
......@@ -5,6 +5,25 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<h2>Release 0.5.0 - Aug 25, 2012</h2>
<ul>
<li><a href="https://github.com/b3log/b3log-solo/issues/16">16 浏览数统计写配额优化</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/38">38 跨层调用重构</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/44">44 浏览计数改进</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/45">45 索引遗漏问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/46">46 评论中文用户名问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/47">47 浏览器 Kill 跳转</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/48">48 升级 Maven GAG Plugin 到 0.9.4</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/52">52 ease 皮肤优化</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/53">53 KindEditor 编辑器 ESC 问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/55">55 获取标签-文章 Feed/RSS 时 NPE</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/56">56 模版数据模型中加入 request</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/58">58 classic 皮肤最新评论表情问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/59">59 前台和后台表情不匹配</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/60">60 评论人头像获取</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/61">61 fancybox 修改</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/62">62 初始化页面中加入 404 检查</a></li>
</ul>
<h2>Release 0.4.6 - Jul 1, 2012</h2>
<ul>
<li><a href="https://github.com/b3log/b3log-solo/issues/10">10 评论表情后台管理不显示</a></li>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo core.
Version: 2.0.0.9, Jun 19, 2012
Version: 2.0.1.0, Aug 16, 2012
Author: Liang Ding
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
......@@ -17,7 +17,7 @@
<parent>
<groupId>org.b3log</groupId>
<artifactId>solo</artifactId>
<version>0.4.6</version>
<version>0.5.0</version>
</parent>
<dependencies>
......
......@@ -52,7 +52,7 @@ import org.json.JSONObject;
* B3log Solo servlet listener.
*
* @author <a href="mailto:DL88250@gmail.com">Liang Ding</a>
* @version 1.0.7.4, Jun 2, 2011
* @version 1.0.7.5, Aug 16, 2011
* @since 0.3.1
*/
public final class SoloServletListener extends AbstractServletListener {
......@@ -60,7 +60,7 @@ public final class SoloServletListener extends AbstractServletListener {
/**
* B3log Solo version.
*/
public static final String VERSION = "0.4.6";
public static final String VERSION = "0.5.0";
/**
* Logger.
*/
......
......@@ -37,7 +37,7 @@ import org.json.JSONObject;
* Upgrader.
*
* @author <a href="mailto:DL88250@gmail.com">Liang Ding</a>
* @version 1.1.1.1, Jul 2, 2012
* @version 1.1.1.2, Aug 16, 2012
* @since 0.3.1
*/
@RequestProcessor
......@@ -99,8 +99,8 @@ public final class UpgradeProcessor {
return;
}
if ("0.4.5".equals(version)) {
v045ToV046();
if ("0.4.6".equals(version)) {
v046ToV050();
} else {
final String msg = "Your B3log Solo is too old to upgrader, please contact the B3log Solo developers";
LOGGER.warning(msg);
......@@ -114,12 +114,12 @@ public final class UpgradeProcessor {
}
/**
* Upgrades from version 045 to version 046.
* Upgrades from version 046 to version 050.
*
* @throws Exception upgrade fails
*/
private void v045ToV046() throws Exception {
LOGGER.info("Upgrading from version 045 to version 046....");
private void v046ToV050() throws Exception {
LOGGER.info("Upgrading from version 046 to version 050....");
articleRepository.setCacheEnabled(false);
......@@ -130,7 +130,7 @@ public final class UpgradeProcessor {
// Upgrades preference model
final JSONObject preference = preferenceRepository.get(Preference.PREFERENCE);
preference.put(Preference.VERSION, "0.4.6");
preference.put(Preference.VERSION, "0.5.0");
preferenceRepository.update(Preference.PREFERENCE, preference);
......@@ -143,12 +143,12 @@ public final class UpgradeProcessor {
}
LOGGER.log(Level.SEVERE, "Upgrade failed.", e);
throw new Exception("Upgrade failed from version 045 to version 046");
throw new Exception("Upgrade failed from version 046 to version 050");
} finally {
articleRepository.setCacheEnabled(true);
}
LOGGER.info("Upgraded from version 045 to version 046 successfully :-)");
LOGGER.info("Upgraded from version 046 to version 050 successfully :-)");
}
/**
......
......@@ -16,11 +16,11 @@
#
# Description: ease skin (mock for test).
# Version: 1.0.0.0, Jun 27, 2012
# Version: 1.0.0.1, Aug 16, 2012
# Author: Liang Ding
#
name=ease
version=1.0.1
forSolo=0.4.6
version=1.0.2
forSolo=0.5.0
memo=\u56de\u5f52\u606c\u9759
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo parent POM.
Version: 2.0.2.1, Jun 27, 2012
Version: 2.0.2.2, Aug 16, 2012
Author: Liang Ding
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
......@@ -11,7 +11,7 @@
<groupId>org.b3log</groupId>
<artifactId>solo</artifactId>
<packaging>pom</packaging>
<version>0.4.6</version>
<version>0.5.0</version>
<name>B3log Solo</name>
<url>https://github.com/b3log/b3log-solo</url>
<description>
......@@ -28,7 +28,7 @@
<!-- Properties -->
<properties>
<servlet.version>2.5</servlet.version>
<org.b3log.solo.version>0.4.6</org.b3log.solo.version>
<org.b3log.solo.version>0.5.0</org.b3log.solo.version>
<org.b3log.latke.version>0.5.0-SNAPSHOT</org.b3log.latke.version>
<org.b3log.latke-gae.version>0.5.0-SNAPSHOT</org.b3log.latke-gae.version>
<org.b3log.latke-repository-mysql.version>0.5.0-SNAPSHOT</org.b3log.latke-repository-mysql.version>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo GAE POM.
Version: 2.0.0.8, Jul 19, 2012
Version: 2.0.0.9, Aug 16, 2012
Author: Liang Ding
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
......@@ -19,7 +19,7 @@
<parent>
<groupId>org.b3log</groupId>
<artifactId>solo-war</artifactId>
<version>0.4.6</version>
<version>0.5.0</version>
</parent>
<properties>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo (MySQL) standard Servlet container POM.
Version: 1.0.0.3, Jun 19, 2012
Version: 1.0.0.4, Aug 16, 2012
Author: Liang Ding
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
......@@ -19,7 +19,7 @@
<parent>
<groupId>org.b3log</groupId>
<artifactId>solo-war</artifactId>
<version>0.4.6</version>
<version>0.5.0</version>
</parent>
<properties>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo WAR POM.
Version: 2.0.1.1, Jun 19, 2012
Version: 2.0.1.2, Aug 16, 2012
Author: Liang Ding
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
......@@ -19,7 +19,7 @@
<parent>
<groupId>org.b3log</groupId>
<artifactId>solo</artifactId>
<version>0.4.6</version>
<version>0.5.0</version>
</parent>
<modules>
......
......@@ -5,6 +5,25 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<h2>Release 0.5.0 - Aug 25, 2012</h2>
<ul>
<li><a href="https://github.com/b3log/b3log-solo/issues/16">16 浏览数统计写配额优化</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/38">38 跨层调用重构</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/44">44 浏览计数改进</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/45">45 索引遗漏问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/46">46 评论中文用户名问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/47">47 浏览器 Kill 跳转</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/48">48 升级 Maven GAG Plugin 到 0.9.4</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/52">52 ease 皮肤优化</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/53">53 KindEditor 编辑器 ESC 问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/55">55 获取标签-文章 Feed/RSS 时 NPE</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/56">56 模版数据模型中加入 request</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/58">58 classic 皮肤最新评论表情问题</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/59">59 前台和后台表情不匹配</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/60">60 评论人头像获取</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/61">61 fancybox 修改</a></li>
<li><a href="https://github.com/b3log/b3log-solo/issues/62">62 初始化页面中加入 404 检查</a></li>
</ul>
<h2>Release 0.4.6 - Jul 1, 2012</h2>
<ul>
<li><a href="https://github.com/b3log/b3log-solo/issues/10">10 评论表情后台管理不显示</a></li>
......
......@@ -16,11 +16,12 @@
#
# Description: ease skin.
# Version: 1.0.0.1, Jun 19, 2012
# Version: 1.0.0.2, Aug 16, 2012
# Author: Liyuan Li
# Author: Liang Ding
#
name=ease
version=1.0.1
forSolo=0.4.6
version=1.0.2
forSolo=0.5.0
memo=\u56de\u5f52\u606c\u9759
......@@ -16,11 +16,11 @@
#
# Description: Mobile skin.
# Version: 1.0.0.3, Jun 19, 2012
# Version: 1.0.0.4, Aug 16, 2012
# Author: Liang Ding
#
name=Mobile
version=0.1.2
forSolo=0.4.6
version=0.1.3
forSolo=0.5.0
memo=\u8bf7\u4e0d\u8981\u4ece\u90e8\u7f72\u76ee\u5f55\u4e2d\u5220\u9664\u8be5\u76ae\u80a4\uff0c\u5426\u5219\u79fb\u52a8\u8bbe\u5907\u8bbf\u95ee\u65f6\u535a\u5ba2\u5c06\u4e0d\u53ef\u7528\u3002
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment