File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
jspwiki-api/src/main/java/org/apache/wiki/api
jspwiki-war/src/main/styles/haddock/default Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,13 @@ under the License.
19
19
20
20
** 2023-09-09 Dirk Frederickx (brushed AT apache DOT org)**
21
21
22
+ * _ 2.12.2-git-02_
23
+
24
+ * [ JSPWIKI-1167] ( https://issues.apache.org/jira/browse/JSPWIKI-1167 ) - prettify: line numbering is wrong with longer lines
25
+ Prettified code lines should not wrap around, to avoid mismatch with line numbering.
26
+
27
+ ** 2023-09-09 Dirk Frederickx (brushed AT apache DOT org)**
28
+
22
29
* _ 2.12.2-git-01_
23
30
24
31
* [ JSPWIKI-1165] ( https://issues.apache.org/jira/browse/JSPWIKI-1165 ) - long text in monospace font inside {{}} is shown without scroll bar
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public final class Release {
69
69
* <p>
70
70
* If the build identifier is empty, it is not added.
71
71
*/
72
- public static final String BUILD = "01 " ;
72
+ public static final String BUILD = "02 " ;
73
73
74
74
/**
75
75
* This is the generic version string you should use when printing out the version. It is of
Original file line number Diff line number Diff line change @@ -89,5 +89,11 @@ pre.prettylines {
89
89
-moz-hyphens : none ;
90
90
-ms-hyphens : none ;
91
91
hyphens : none ;
92
+
93
+ code {
94
+ // was set to pre-wrap; better is pre;
95
+ // to avoid wrapping around; and losing alignment with the pretty-lines line-numbers
96
+ white-space : inherit ;
97
+ }
92
98
93
99
}
You can’t perform that action at this time.
0 commit comments