summaryrefslogtreecommitdiff
path: root/Bugs.txt
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-08-31 20:07:13 -0400
committerB Stack <bgstack15@gmail.com>2020-08-31 20:07:13 -0400
commit8a27fa9c617533e76673ce61a65e2ba869b52208 (patch)
treeacfdfb3e1046db87040477033fda0df76d92916a /Bugs.txt
parentMerge branch '11.0' into 'master' (diff)
downloadFreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.tar.gz
FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.tar.bz2
FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.zip
add upstream 11.1
Diffstat (limited to 'Bugs.txt')
-rwxr-xr-xBugs.txt30
1 files changed, 15 insertions, 15 deletions
diff --git a/Bugs.txt b/Bugs.txt
index 9d0592c8..2e233548 100755
--- a/Bugs.txt
+++ b/Bugs.txt
@@ -4,9 +4,9 @@ that affect FreeFileSync. Therefore it is NOT RECOMMENDED TO COMPILE AGAINST OLD
the ones mentioned below. The remaining issues that are yet to be fixed are listed in the following:
------------------
-| libcurl 7.6.9 |
------------------
+----------------
+| libcurl 7.72 |
+----------------
__________________________________________________________________________________________________________
/lib/ftp.c
https://github.com/curl/curl/issues/1455
@@ -208,9 +208,20 @@ ________________________________________________________________________________
-------------------
-| wxWidgets 3.1.3 |
+| wxWidgets 3.1.4 |
-------------------
__________________________________________________________________________________________________________
+/include/wx/window.h
+wxWidgets/GTK2 on some Linux systems incorrectly detects high DPI: https://freefilesync.org/forum/viewtopic.php?t=6114
+=> hack away high-DPI support for GTK2 (= pretend GTK2 has device independent pixels, which it clearly has not!)
+
+ #include "wx/gtk/window.h"
+- #ifdef __WXGTK3__
++ //#ifdef __WXGTK3__
+ #define wxHAVE_DPI_INDEPENDENT_PIXELS
+- #endif
++ //#endif
+__________________________________________________________________________________________________________
/src/aui/framemanager.cpp:
Fix incorrect pane height calculations:
@@ -300,14 +311,3 @@ Backspace not working in filter dialog: http://www.freefilesync.org/forum/viewto
G_CALLBACK (gtk_window_key_press_callback), this);
__________________________________________________________________________________________________________
-/include/wx/window.h
-wxWidgets/GTK2 on some Linux systems incorrectly detects high DPI: https://freefilesync.org/forum/viewtopic.php?t=6114
-=> hack away high-DPI support for GTK2 (= pretend GTK2 has device independent pixels, which it clearly has not!)
-
- #include "wx/gtk/window.h"
-- #ifdef __WXGTK3__
-+ //#ifdef __WXGTK3__
- #define wxHAVE_DPI_INDEPENDENT_PIXELS
-- #endif
-+ //#endif
-__________________________________________________________________________________________________________
bgstack15