File tree 8 files changed +43
-12
lines changed
8 files changed +43
-12
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ pipeline:
252
252
branch : [ master ]
253
253
254
254
static :
255
- image : karalabe /xgo-latest :latest
255
+ image : techknowlogick /xgo:latest
256
256
pull : true
257
257
environment :
258
258
TAGS : bindata sqlite sqlite_unlock_notify
Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ This changelog goes through all the changes that have been made in each release
4
4
without substantial changes to our git log; to see the highlights of what has
5
5
been added to each release, please refer to the [ blog] ( https://blog.gitea.io ) .
6
6
7
+ ## [ 1.7.2] ( https://github.com/go-gitea/gitea/releases/tag/v1.7.2 ) - 2019-02-14
8
+ * BUGFIXES
9
+ * Remove all CommitStatus when a repo is deleted (#5940 ) (#5941 )
10
+ * Fix notifications on pushing with deploy keys by setting hook environment variables (#5935 ) (#5944 )
11
+ * Silence console logger in gitea serv (#5887 ) (#5943 )
12
+ * Handle milestone webhook events for issues and PR (#5947 ) (#5955 )
13
+ * Show user who created the repository instead of the organization in action feed (#5948 ) (#5956 )
14
+ * Fix ssh deploy and user key constraints (#1357 ) (#5939 ) (#5966 )
15
+ * Fix bug when deleting a linked account will removed all (#5989 ) (#5990 )
16
+ * Fix empty ssh key importing in ldap (#5984 ) (#6009 )
17
+ * Fix metrics auth token detection (#6006 ) (#6017 )
18
+ * Create repository on organisation by default on its dashboard (#6026 ) (#6048 )
19
+ * Make sure labels are actually returned in API (#6053 ) (#6059 )
20
+ * Switch to more recent build of xgo (#6070 ) (#6072 )
21
+ * In basic auth check for tokens before call UserSignIn (#5725 ) (#6083 )
22
+
7
23
## [ 1.7.1] ( https://github.com/go-gitea/gitea/releases/tag/v1.7.1 ) - 2019-01-31
8
24
* SECURITY
9
25
* Disable redirect for i18n (#5910 ) (#5916 )
Original file line number Diff line number Diff line change @@ -612,6 +612,7 @@ editor.new_file=Novo arquivo
612
612
editor.upload_file =Enviar arquivo
613
613
editor.edit_file =Editar arquivo
614
614
editor.preview_changes =Visualizar alterações
615
+ editor.cannot_edit_lfs_files =Arquivos LFS não podem ser editados na interface web.
615
616
editor.cannot_edit_non_text_files =Arquivos binários não podem ser editados na interface web.
616
617
editor.edit_this_file =Editar arquivo
617
618
editor.must_be_on_a_branch =Você deve estar em um branch para propor alterações neste arquivo.
Original file line number Diff line number Diff line change @@ -30,15 +30,26 @@ pre, code {
30
30
line-height : 1.5 ;
31
31
overflow : auto ;
32
32
}
33
- }
34
- /* Wrap long lines of code. This will also apply to Markdown code boxes. */
35
- pre > code {
36
- white-space : pre-wrap !important ;
37
- word-break : break-all !important ;
38
- overflow-wrap : break-word !important ;
33
+ & .wrap {
34
+ white-space : pre-wrap ; /* CSS 3 */
35
+ // white-space: -moz-normal; /* Mozilla, since 1999 */
36
+ // white-space: -normal; /* Opera 4-6 */
37
+ // white-space: -o-normal; /* Opera 7 */
38
+
39
+ -ms-word-break : break-all ;
40
+ word-break : break-all ;
41
+
42
+ /* These are technically the same, but use both */
43
+ overflow-wrap : break-word ;
44
+ word-wrap : break-word ;
45
+ }
39
46
}
40
47
.dont-break-out {
48
+ /* These are technically the same, but use both */
41
49
overflow-wrap : break-word ;
50
+ word-wrap : break-word ;
51
+
52
+ -ms-word-break : break-all ;
42
53
word-break : break-all ;
43
54
44
55
/* Adds a hyphen where the word breaks, if supported (No Blink) */
Original file line number Diff line number Diff line change 364
364
padding : 0 !important ;
365
365
li {
366
366
display : block ;
367
- padding : 0 .25 em ;
367
+ width : 100 % ;
368
368
& .active {
369
369
background : #ffffdd ;
370
370
}
371
+ & :before {
372
+ content : ' ' ;
373
+ }
371
374
}
372
375
}
373
376
}
Original file line number Diff line number Diff line change 127
127
{{if and $.SignedUserID $line.CanComment $.PageIsPullFiles (not (eq .GetType 2))}}
128
128
<a class="ui green button add-code-comment add-code-comment-left" data-path="{{$file.Name}}" data-side="left" data-idx="{{$line.LeftIdx}}">+</a>
129
129
{{end}}
130
- <pre><code class="{{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.LeftIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre>
130
+ <pre><code class="wrap {{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.LeftIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre>
131
131
</td>
132
132
<td class="lines-num lines-num-new">
133
133
<span rel="{{if $line.RightIdx}}diff-{{Sha1 $file.Name}}R{{$line.RightIdx}}{{end}}">{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}</span>
137
137
{{if and $.SignedUserID $line.CanComment $.PageIsPullFiles (not (eq .GetType 3))}}
138
138
<a class="ui green button add-code-comment add-code-comment-right" data-path="{{$file.Name}}" data-side="right" data-idx="{{$line.RightIdx}}">+</a>
139
139
{{end}}
140
- <pre><code class="{{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.RightIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre>
140
+ <pre><code class="wrap {{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.RightIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre>
141
141
</td>
142
142
</tr>
143
143
{{if gt (len $line.Comments) 0}}
Original file line number Diff line number Diff line change 19
19
{{if and $.root.SignedUserID $line.CanComment $.root.PageIsPullFiles}}
20
20
<a class="ui green button add-code-comment add-code-comment-{{if $line.RightIdx}}right{{else}}left{{end}}" data-path="{{$file.Name}}" data-side="{{if $line.RightIdx}}right{{else}}left{{end}}" data-idx="{{if $line.RightIdx}}{{$line.RightIdx}}{{else}}{{$line.LeftIdx}}{{end}}">+</a>
21
21
{{end}}
22
- <pre><code class="{{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{$section.GetComputedInlineDiffFor $line}}</code></pre>
22
+ <pre><code class="wrap {{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{$section.GetComputedInlineDiffFor $line}}</code></pre>
23
23
</td>
24
24
</tr>
25
25
{{if gt (len $line.Comments) 0}}
You can’t perform that action at this time.
0 commit comments