Skip to content

Commit 130fb1d

Browse files
authored
Merge pull request #72 from rainers/master
Version 0.44.1
2 parents 4a19816 + a0ef445 commit 130fb1d

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGES

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

doc/VersionHistory.dd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Ddoc
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

doc/visuald.ddoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.44.0
1+
VERSION = 0.44.1
22
ROOT_DIR = http://www.dlang.org/
33
ROOT = http://www.dlang.org
44
BODYCLASS = visuald

visuald/dpackage.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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\bin";
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;

0 commit comments

Comments
 (0)