Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo-1
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-1
Commits
55eff47e
Commit
55eff47e
authored
Jan 23, 2017
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🔖
发布 1.8.0
parent
bc195c3a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
17 deletions
+29
-17
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
+8
-8
src/main/webapp/CHANGE_LOGS.html
src/main/webapp/CHANGE_LOGS.html
+11
-5
No files found.
CHANGE_LOGS.html
View file @
55eff47e
...
...
@@ -5,6 +5,12 @@
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
</head>
<body>
<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>
<li><a
href=
"https://github.com/b3log/solo/issues/12219"
>
12219 图片上传改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12229"
>
12229 HTTPS 支持改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
</ul>
<h2>
Release 1.7.0 - Nov 9, 2016
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/solo/issues/12182"
>
12182 Windows 上 404 页面 404
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
...
...
pom.xml
View file @
55eff47e
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: Solo POM.
Version: 3.15.1.2
8, Nov 9, 2016
Version: 3.15.1.2
9, Jan 23, 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.
7
.0
</version>
<version>
1.
8
.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 @
55eff47e
...
...
@@ -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
7, Nov 9, 2016
* @version 1.9.2.1
8, Jan 23, 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.
7
.0"
;
public
static
final
String
VERSION
=
"1.
8
.0"
;
/**
* Logger.
...
...
src/main/java/org/b3log/solo/service/UpgradeService.java
View file @
55eff47e
...
...
@@ -17,6 +17,7 @@ package org.b3log.solo.service;
import
java.io.IOException
;
import
javax.inject.Inject
;
import
org.b3log.latke.Keys
;
import
org.b3log.latke.logging.Level
;
import
org.b3log.latke.logging.Logger
;
...
...
@@ -46,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.
8, Nov 9, 2016
* @version 1.2.0.
9, Jan 23, 2017
* @since 1.2.0
*/
@Service
...
...
@@ -55,7 +56,7 @@ public class UpgradeService {
/**
* Logger.
*/
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
UpgradeService
.
class
.
getName
()
);
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
UpgradeService
.
class
);
/**
* Article repository.
...
...
@@ -111,7 +112,7 @@ public class UpgradeService {
/**
* Old version.
*/
private
static
final
String
FROM_VER
=
"1.
6
.0"
;
private
static
final
String
FROM_VER
=
"1.
7
.0"
;
/**
* New version.
...
...
@@ -188,7 +189,6 @@ public class UpgradeService {
/**
* Upgrades users.
*
* <p>
* Password hashing.
* </p>
...
...
src/main/webapp/CHANGE_LOGS.html
View file @
55eff47e
...
...
@@ -5,6 +5,12 @@
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
</head>
<body>
<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>
<li><a
href=
"https://github.com/b3log/solo/issues/12219"
>
12219 图片上传改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/solo/issues/12229"
>
12229 HTTPS 支持改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
</ul>
<h2>
Release 1.7.0 - Nov 9, 2016
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/solo/issues/12182"
>
12182 Windows 上 404 页面 404
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
...
...
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