Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo
Commits
88cdd063
Commit
88cdd063
authored
Feb 20, 2017
by
Liang Ding
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'refs/remotes/origin/1.9.0-dev'
parents
0da390b4
dfc70ab6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
8 deletions
+20
-8
CHANGE_LOGS.html
CHANGE_LOGS.html
+6
-0
pom.xml
pom.xml
+2
-2
src/main/java/org/b3log/solo/SoloServletListener.java
src/main/java/org/b3log/solo/SoloServletListener.java
+2
-2
src/main/java/org/b3log/solo/service/UpgradeService.java
src/main/java/org/b3log/solo/service/UpgradeService.java
+2
-2
src/main/webapp/CHANGE_LOGS.html
src/main/webapp/CHANGE_LOGS.html
+6
-0
src/main/webapp/skins/mobile/skin.properties
src/main/webapp/skins/mobile/skin.properties
+2
-2
No files found.
CHANGE_LOGS.html
View file @
88cdd063
...
...
@@ -5,6 +5,12 @@
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
</head>
<body>
<h2>
Release 1.9.0 - Jan 21, 2017
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/solo/issues/12248"
>
12248 回复提醒邮件模版丢失
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12180"
>
12180 新皮肤 9IPHP
</a>
<span
style=
'background: #eb6420 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
skin
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12240"
>
12240 next 皮肤细节改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span>
<span
style=
'background: #eb6420 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
skin
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12246"
>
12246 添加评论优化
</a>
<span
style=
'background: #e102d8 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
development
</span></li>
</ul>
<h2>
Release 1.8.0 - Jan 23, 2017
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/solo/issues/12210"
>
12210 七牛上传支持改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
...
...
pom.xml
View file @
88cdd063
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: Solo POM.
Version: 3.15.1.3
0, Feb 13
, 2017
Version: 3.15.1.3
1, Feb 20
, 2017
Author: <a href="http://88250.b3log.org">Liang Ding</a>
Author: <a href="http://www.annpeter.cn">Ann Peter</a>
-->
...
...
@@ -13,7 +13,7 @@
<artifactId>
solo
</artifactId>
<packaging>
war
</packaging>
<name>
Solo
</name>
<version>
1.
8
.0
</version>
<version>
1.
9
.0
</version>
<description>
A blogging system written in Java, feel free to create your or your team own blog. 一个用 Java 实现的博客系统,为你或你的团队创建个博客吧。
</description>
...
...
src/main/java/org/b3log/solo/SoloServletListener.java
View file @
88cdd063
...
...
@@ -60,7 +60,7 @@ import org.json.JSONObject;
* Solo Servlet listener.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.9.2.1
8, Jan 23
, 2017
* @version 1.9.2.1
9, Feb 20
, 2017
* @since 0.3.1
*/
public
final
class
SoloServletListener
extends
AbstractServletListener
{
...
...
@@ -68,7 +68,7 @@ public final class SoloServletListener extends AbstractServletListener {
/**
* Solo version.
*/
public
static
final
String
VERSION
=
"1.
8
.0"
;
public
static
final
String
VERSION
=
"1.
9
.0"
;
/**
* Logger.
...
...
src/main/java/org/b3log/solo/service/UpgradeService.java
View file @
88cdd063
...
...
@@ -47,7 +47,7 @@ import org.json.JSONObject;
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="mailto:dongxu.wang@acm.org">Dongxu Wang</a>
* @version 1.2.0.
9, Jan 23
, 2017
* @version 1.2.0.
10, Feb 20
, 2017
* @since 1.2.0
*/
@Service
...
...
@@ -112,7 +112,7 @@ public class UpgradeService {
/**
* Old version.
*/
private
static
final
String
FROM_VER
=
"1.
7
.0"
;
private
static
final
String
FROM_VER
=
"1.
8
.0"
;
/**
* New version.
...
...
src/main/webapp/CHANGE_LOGS.html
View file @
88cdd063
...
...
@@ -5,6 +5,12 @@
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
</head>
<body>
<h2>
Release 1.9.0 - Jan 21, 2017
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/solo/issues/12248"
>
12248 回复提醒邮件模版丢失
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12180"
>
12180 新皮肤 9IPHP
</a>
<span
style=
'background: #eb6420 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
skin
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12240"
>
12240 next 皮肤细节改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span>
<span
style=
'background: #eb6420 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
skin
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12246"
>
12246 添加评论优化
</a>
<span
style=
'background: #e102d8 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
development
</span></li>
</ul>
<h2>
Release 1.8.0 - Jan 23, 2017
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/solo/issues/12210"
>
12210 七牛上传支持改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
...
...
src/main/webapp/skins/mobile/skin.properties
View file @
88cdd063
...
...
@@ -16,11 +16,11 @@
#
# Description: Mobile skin.
# Version: 1.0.0.1
4, Aug 10, 2016
# Version: 1.0.0.1
5, Feb 20, 2017
# Author: Liang Ding
#
name
=
Mobile
version
=
0.1.5
forSolo
=
1.
8
.0
forSolo
=
1.
9
.0
memo
=
\u
8bf7
\u
4e0d
\u8981\u
4ece
\u
90e8
\u
7f72
\u
76ee
\u
5f55
\u
4e2d
\u5220\u9664\u
8be5
\u
76ae
\u
80a4
\u
ff0c
\u5426\u5219\u
79fb
\u
52a8
\u
8bbe
\u5907\u
8bbf
\u
95ee
\u
65f6
\u
535a
\u
5ba2
\u
5c06
\u
4e0d
\u
53ef
\u7528\u3002
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment