This repository was archived by the owner on Feb 5, 2024. It is now read-only.
File tree 12 files changed +41
-14
lines changed
12 files changed +41
-14
lines changed Original file line number Diff line number Diff line change 1
1
CHANGES
2
2
========
3
3
4
+ ## 1.4.0
5
+
6
+ * Feature: Slack integration.
7
+ * Feature: Page comment.
8
+ * Feature: User page.
9
+ * Feature: User bookmark page and created pages list.
10
+ * Feature: Portal for list.
11
+ * Feature: History diff (Thank you: @suzuki #65 ).
12
+ * Feature: Image uploader for local server (Thank you: @riaf ).
13
+ * Improve: List view styles.
14
+ * Improve: Paste handler with ` > ` line (Thank you: @suzuki #57 ).
15
+ * Fix: Google Apps cliendId validation (Thank you: @suzutan #72 ).
16
+ * Fix: Bug of detecting prefix of the path on list view.
17
+ * And some fixes. (Thank you: @yuya-takeyama @takahashim )
18
+ * Library Update: now Crowi doesn't depends on bower.
19
+
4
20
## 1.3.1
5
21
6
22
* Fix: Logic of checking uploadable was broken.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Crowi - The Simple & Powerful Communication Tool Based on Wiki
4
4
================================================================
5
5
6
6
7
- [ ![ Deploy] ( https://www.herokucdn.com/deploy/button.png )] ( https://heroku.com/deploy )
7
+ [ ![ Deploy] ( https://www.herokucdn.com/deploy/button.png )] ( https://heroku.com/deploy?template=https://github.com/crowi/crowi/tree/v1.4.0 )
8
8
9
9
[ ![ Circle CI] ( https://circleci.com/gh/crowi/crowi.svg?style=svg )] ( https://circleci.com/gh/crowi/crowi )
10
10
[ ![ Join the chat at https://gitter.im/crowi/general ] ( https://badges.gitter.im/Join%20Chat.svg )] ( https://gitter.im/crowi/general )
@@ -41,6 +41,7 @@ Dependencies
41
41
* Amazon S3 (optional)
42
42
* Facebook Application (optional)
43
43
* Google Project (optional)
44
+ * Slack App (optional)
44
45
45
46
46
47
Start Up on Local
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ <h4>1. Register Slack App</h4>
151
151
</ p >
152
152
< dl class ="dl-horizontal ">
153
153
< dt > App Name</ dt > < dd > < code > Crowi</ code > </ dd >
154
- < dt > Icon</ dt > < dd > Upload this image as the icon (Free to download and use it) => < img src ="" > </ dd >
154
+ < dt > Icon</ dt > < dd > Upload this image as the icon (Free to download and use it) => < a href =" https://github.com/crowi/crowi/tree/master/resource/logo " > Crowi Logo </ a > </ dd >
155
155
< dt > Short description</ dt > < dd > < code > Crowi's Slack Notification Integration</ code > </ dd >
156
156
< dt > Long description</ dt > < dd > < code > Crowi's Slack Notification Integration</ code > </ dd >
157
157
</ dl >
@@ -160,7 +160,8 @@ <h4>1. Register Slack App</h4>
160
160
</ p >
161
161
162
162
< h4 > 2. Get < code > clientId</ code > and < code > clientSecret</ code > </ h4 >
163
- < h4 > 3. Configure Slack on this notification setting screen</ h4 >
163
+ < h4 > 3. After clientId nad clientSecret set, click "Connect to Slack" button to start OAuth process.</ h4 >
164
+ < h4 > 4. Configure Slack on this notification setting screen</ h4 >
164
165
{% endif %}
165
166
166
167
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
{% block html_title %}APIの設定 · {{ path }}{% endblock %}
5
5
6
6
{% block content_head %}
7
- < header id ="page-header ">
7
+ < div class ="header-wrap ">
8
+ < header id ="page-header ">
8
9
< h1 class ="title " id =""> ユーザー設定</ h1 >
9
- </ header >
10
+ </ header >
11
+ </ div >
10
12
{% endblock %}
11
13
12
14
{% block content_main %}
Original file line number Diff line number Diff line change 3
3
{% block html_title %}ユーザー設定 · {{ path }}{% endblock %}
4
4
5
5
{% block content_head %}
6
- < header id ="page-header ">
6
+ < div class ="header-wrap ">
7
+ < header id ="page-header ">
7
8
< h1 class ="title " id =""> ユーザー設定</ h1 >
8
- </ header >
9
+ </ header >
10
+ </ div >
9
11
{% endblock %}
10
12
11
13
{% block content_main %}
@@ -120,11 +122,16 @@ <h1 class="title" id="">ユーザー設定</h1>
120
122
新しい画像をアップロード
121
123
</ label >
122
124
< div class ="col-sm-9 ">
125
+ {% if isUploadable() %}
123
126
< form action ="/_api/me/picture/upload " id ="pictureUploadForm " method ="post " class ="form-horizontal " role ="form " enctype ="multipart/form-data ">
124
127
< input name ="userPicture " type ="file " accept ="image/* ">
125
128
< div id ="pictureUploadFormProgress ">
126
129
</ div >
127
130
</ form >
131
+ {% else %}
132
+ * 画像をアップロードをするための設定がされていません。< br >
133
+ * アップロードできるようにするには、AWS またはローカルアップロードの設定をしてください。< br >
134
+ {% endif %}
128
135
</ div >
129
136
</ div >
130
137
</ fieldset >
Original file line number Diff line number Diff line change 3
3
{% block html_title %}パスワードの設定 · {{ path }}{% endblock %}
4
4
5
5
{% block content_head %}
6
- < header id ="page-header ">
7
- < h1 class ="title " id =""> ユーザー設定</ h1 >
8
- </ header >
6
+ < div class ="header-wrap ">
7
+ < header id ="page-header ">
8
+ < h1 class ="title " id =""> ユーザー設定</ h1 >
9
+ </ header >
10
+ </ div >
9
11
{% endblock %}
10
12
11
13
{% block content_main %}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " crowi" ,
3
- "version" : " 1.3.1 " ,
3
+ "version" : " 1.4.0 " ,
4
4
"description" : " The simple & powerful Wiki" ,
5
5
"tags" : [
6
6
" wiki" ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ div.body {
42
42
.revision-head-link {
43
43
display : none ;
44
44
font-size : 0.6em ;
45
- padding-top : 8 px ;
45
+ padding-top : 4 px ;
46
46
padding-left : 10px ;
47
47
}
48
48
& :hover .revision-head-link {
Original file line number Diff line number Diff line change @@ -183,7 +183,6 @@ Crowi.rendererType.markdown.prototype = {
183
183
preFormatMarkdown : function ( content ) {
184
184
var x = content
185
185
. replace ( / ^ ( # { 1 , } ) ( [ ^ \s ] + ) ? ( .* ) $ / gm, '$1 $2$3' ) // spacer for section
186
- . replace ( / ^ ( \s * ) ( \* | \- ) ( [ ^ \s ] + ) ? ( .* ) $ / gm, '$1$2 $3$4' ) // spacer for list
187
186
. replace ( / > [ \s ] * \n > [ \s ] * \n / g, '> <br>\n> \n' ) ;
188
187
return x ;
189
188
} ,
You can’t perform that action at this time.
0 commit comments