The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
Index: src/sdk/cbeditor.cpp===================================================================--- src/sdk/cbeditor.cpp (revision 13584)+++ src/sdk/cbeditor.cpp (working copy)@@ -1441,7 +1441,7 @@ if (!control) return; #if defined(__WXMSW__) && wxCHECK_VERSION(3, 1, 0)- const int technology = config->ReadInt(wxT("/technology"), 0);+ const int technology = config->ReadInt(wxT("/technology"), 1); if (technology == 1) control->SetTechnology(wxSCI_TECHNOLOGY_DIRECTWRITE); else
Index: src/src/editorconfigurationdlg.cpp===================================================================--- src/src/editorconfigurationdlg.cpp (revision 13584)+++ src/src/editorconfigurationdlg.cpp (working copy)@@ -163,7 +163,7 @@ wxChoice *cmbFontQuality = XRCCTRL(*this, "cmbFontQuality", wxChoice); #if defined(__WXMSW__) && wxCHECK_VERSION(3, 1, 0)- cmbTechnology->SetSelection(cfg->ReadInt(wxT("/technology"), 0));+ cmbTechnology->SetSelection(cfg->ReadInt(wxT("/technology"), 1)); cmbFontQuality->SetSelection(cfg->ReadInt(wxT("/font_quality"), 0)); #else cmbTechnology->SetSelection(0);