Update CHANGES for release (1.3.4), add KNOWN_BUGS.html.
KNOWN_BUGS.html is a snapshot of the current roadmap, i.e. the list of current STR's and RFE's (feature requests). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@12092 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
31a470df68
commit
487af0904b
7
CHANGES
7
CHANGES
@ -1,13 +1,14 @@
|
||||
CHANGES IN FLTK 1.3.4rc4 RELEASED: Nov ?? 2016
|
||||
CHANGES IN FLTK 1.3.4 RELEASED: Nov 11 2016
|
||||
|
||||
Bug fixes and other improvements
|
||||
|
||||
- Fix test/native-filechooser help display artefact (STR #3349).
|
||||
- MacOS: fix a crash when closing a fullscreen window.
|
||||
- Accept empty Fl_Pixmap in Fl_RGB_Image c'tor (STR #3348).
|
||||
- MacOS: fix drawing error when turning fullscreen a window containing a hidden
|
||||
subwindow (error visible with the tabs test program).
|
||||
- MacOS: fix drawing error when turning fullscreen a window containing
|
||||
a hidden subwindow (error visible with the tabs test program).
|
||||
- MacOS: fix possible crash when turning fullscreen the scroll test program.
|
||||
- Add a snapshot of known STR's and RFE's (KNOWN_BUGS.html).
|
||||
|
||||
CHANGES IN FLTK 1.3.4rc3 RELEASED: Oct 31 2016
|
||||
|
||||
|
||||
1212
KNOWN_BUGS.html
Executable file
1212
KNOWN_BUGS.html
Executable file
File diff suppressed because it is too large
Load Diff
156
html/fltk.css
Executable file
156
html/fltk.css
Executable file
@ -0,0 +1,156 @@
|
||||
BODY {
|
||||
color: #181818;
|
||||
background-color: #bbbbee;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
P, H1, H2, H3, H4, H5, H6 {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
SUP, SUB {
|
||||
font-size: 50%;
|
||||
}
|
||||
|
||||
A:link {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: #cc2020;
|
||||
}
|
||||
|
||||
A:visited {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: #991010;
|
||||
}
|
||||
|
||||
A:link:hover {
|
||||
text-decoration: underline;
|
||||
color: #0000ff;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
A.sel, TR.sel {
|
||||
background-color: #dddddd;
|
||||
}
|
||||
|
||||
TR.sel TD {
|
||||
padding: 4;
|
||||
}
|
||||
|
||||
A.unsel {
|
||||
background-color: #aaaadd;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
A.title {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
A.title:hover {
|
||||
color: #0000cc;
|
||||
}
|
||||
|
||||
INPUT[TYPE="TEXT"], TEXTAREA {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
TR.header, TR.header TH, TH.header {
|
||||
background-color: #cccccc;
|
||||
}
|
||||
|
||||
TR.page, TD.page {
|
||||
background-color: #ccccff;
|
||||
}
|
||||
|
||||
TR.data0, TR.data0 TD, TD.data0 {
|
||||
background-color: #aaaadd;
|
||||
padding: 2;
|
||||
}
|
||||
|
||||
TR.data1, TR.data1 TD, TD.data1 {
|
||||
background-color: #9999cc;
|
||||
padding: 2;
|
||||
}
|
||||
|
||||
TR.header-red, TR.header-red TH, TH.header-red {
|
||||
background-color: #ddaaaa;
|
||||
}
|
||||
|
||||
TR.data0-red, TR.data0-red TD, TD.data0-red {
|
||||
background-color: #dd7777;
|
||||
padding: 2;
|
||||
}
|
||||
|
||||
TR.data1-red, TR.data1-red TD, TD.data1-red {
|
||||
background-color: #dd6666;
|
||||
padding: 2;
|
||||
}
|
||||
|
||||
DL {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
PRE.command {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
LI {
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
LI.C {
|
||||
list-style-image: url(images/wiki-category.gif);
|
||||
}
|
||||
|
||||
LI.F {
|
||||
list-style-image: url(images/wiki-faq.gif);
|
||||
}
|
||||
|
||||
LI.H {
|
||||
list-style-image: url(images/wiki-howto.gif);
|
||||
}
|
||||
|
||||
LI.L {
|
||||
list-style-image: url(images/wiki-listing.gif);
|
||||
}
|
||||
|
||||
LI.N {
|
||||
list-style-image: url(images/wiki-news.gif);
|
||||
}
|
||||
|
||||
.search {
|
||||
background-color: #996633;
|
||||
color: #ddddaa;
|
||||
}
|
||||
|
||||
.valid {
|
||||
}
|
||||
|
||||
.invalid {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.new {
|
||||
color: #880000;
|
||||
}
|
||||
|
||||
table.simple-table
|
||||
{
|
||||
border:2px solid black;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
table.simple-table th
|
||||
{
|
||||
border:2px solid black;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
table.simple-table td
|
||||
{
|
||||
border:2px solid black;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
|
||||
BIN
html/hdr-top-right.gif
Executable file
BIN
html/hdr-top-right.gif
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 47 B |
Loading…
Reference in New Issue
Block a user