File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed
Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -806,7 +806,7 @@ Version history
806806 - search pane did not save its last state, only when switching between file and symbol search
807807 - dustmite: pattern passed to "find" must always use quotes
808808
809- unreleased Version 0.44
809+ 2017-03-12 Version 0.44
810810
811811 * installation
812812 - added preliminary support for VS 2017 RC
@@ -852,3 +852,7 @@ unreleased Version 0.44
852852 - without any match, still keep the completion box open with recent items
853853 - less flashing when updating the results
854854 - code snippets now added to possible expansions
855+
856+ 2017-03-13 Version 0.44.1
857+
858+ * bugzilla 17252: Fixed bad character inserted into the executable search path default
Original file line number Diff line number Diff line change 11#define VERSION_MAJOR 0
22#define VERSION_MINOR 44
3- #define VERSION_REVISION 0
3+ #define VERSION_REVISION 1
44#define VERSION_BETA
55#define VERSION_BUILD 0
Original file line number Diff line number Diff line change 11Ddoc
22
3+ $(H2 2017-03-12 Version 0.44.1)
4+ $(UL
5+ $(LI bugzilla 17252: Fixed bad character inserted into the executable search path default)
6+ )
7+
38$(H2 2017-03-12 Version 0.44)
49 $(UL
510 $(LI installation
Original file line number Diff line number Diff line change 1- VERSION = 0.44.0
1+ VERSION = 0.44.1
22ROOT_DIR = http://www.dlang.org/
33ROOT = http://www.dlang.org
44BODYCLASS = visuald
Original file line number Diff line number Diff line change @@ -1573,7 +1573,7 @@ class GlobalOptions
15731573 string sdkBinDir = " $(WindowsSdkDir)bin" ;
15741574 if (std.file.exists (WindowsSdkDir ~ " bin\\ x86\\ rc.exe" )) // path changed with Windows 8 SDK
15751575 sdkBinDir ~= " \\ x86" ;
1576- DMD .ExeSearchPath = getVCDir(" bin" , false ) ~ r " ;$(VSINSTALLDIR)Common7\IDE;" ~ sdkBinDir ~ " ;$(DMDInstallDir)windows\b in" ;
1576+ DMD .ExeSearchPath = getVCDir(" bin" , false ) ~ r " ;$(VSINSTALLDIR)Common7\IDE;" ~ sdkBinDir ~ " ;$(DMDInstallDir)windows\\ bin" ;
15771577 DMD .ExeSearchPath64 = DMD .ExeSearchPath;
15781578 DMD .ExeSearchPath32coff = DMD .ExeSearchPath;
15791579 GDC .ExeSearchPath = r " $(GDCInstallDir)bin;$(VSINSTALLDIR)Common7\IDE;" ~ sdkBinDir;
You can’t perform that action at this time.
0 commit comments