Skip to content

Commit 4e084dc

Browse files
committed
Update to version 1.0.1: bundle DMD 2.091.1 and LDC 1.23.0
1 parent 51caf35 commit 4e084dc

File tree

5 files changed

+21
-17
lines changed

5 files changed

+21
-17
lines changed

CHANGES

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,12 +1268,16 @@ Version history
12681268
* installer:
12691269
- full installer now bundled with dmd 2.092.1 and LDC 1.22.0
12701270

1271-
unreleased version 1.0.1
1271+
2020-08-21 version 1.0.1
12721272
* projects:
12731273
- bugzilla 21024: VS2017/2019 new project: fixed unrelated files listed in New Project Dialog
12741274
- bugzilla 21028: project templates not visible when VS started as standard/restricted user
12751275
* dmdserver:
1276-
- updated to dmd 2.093
1276+
- updated to DMD 2.093.1
12771277
- fixed showing documentation for template functions
1278+
* editor:
1279+
- now extra mouse buttons to navigate backward/forward supported
12781280
* mago debugger expression evaluator:
12791281
- fixed wrong values displayed eventually when switching stack frames
1282+
* installer:
1283+
- full installer now bundled with DMD 2.091.1 and LDC 1.23.0

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define VERSION_MAJOR 1
22
#define VERSION_MINOR 0
33
#define VERSION_REVISION 1
4-
#define VERSION_BETA -beta
5-
#define VERSION_BUILD 1
4+
#define VERSION_BETA
5+
#define VERSION_BUILD 0

nsis/visuald.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929

3030
; define DMD source path to include dmd installation
3131
; !define DMD
32-
!define DMD_VERSION "2.093.0"
32+
!define DMD_VERSION "2.093.1"
3333
!define DMD_SRC c:\d\dmd-${DMD_VERSION}
3434

3535
; define LDC to include ldc installation
3636
; !define LDC
37-
!define LDC_VERSION "1.22.0"
37+
!define LDC_VERSION "1.23.0"
3838
!define LDC_SRC c:\d\ldc2-${LDC_VERSION}-windows-multilib
3939

4040
; define VS2019 to include VS2019 support

tools/pipedmd.d

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ string eatArg(string cmd)
6161
while (cmd.length && cmd[0] != '"')
6262
cmd = cmd[1..$];
6363
if (cmd.length)
64-
cmd = cmd[1..$];
64+
cmd = cmd[1..$];
6565
}
6666
else
6767
cmd = cmd[1..$];
6868
}
69-
return cmd;
69+
return cmd;
7070
}
7171

7272
version(pipeLink)
@@ -85,7 +85,7 @@ version(pipeLink)
8585
int exitCode = runProcess(cmd, null, true, true, false, true, false);
8686
return exitCode;
8787
}
88-
88+
8989
}
9090
else
9191
int main(string[] argv)
@@ -313,7 +313,7 @@ int runProcess(string command, string depsfile, bool doDemangle, bool demangleAl
313313

314314
if(!bSuccess)
315315
{
316-
printf("failed launching %s\n", szCommand);
316+
printf("failed launching %ls\n", szCommand);
317317
return 1;
318318
}
319319

@@ -514,11 +514,11 @@ void processLine(ubyte[] output, ref size_t writepos, bool optlink, int cp)
514514
writepos = q;
515515
fwrite("\"".ptr, 1, 1, stdout);
516516
fwrite(symbolName.ptr, symbolName.length, 1, stdout);
517-
fwrite("\" (".ptr, 3, 1, stdout);
517+
fwrite("\" (".ptr, 3, 1, stdout);
518518
if(p > writepos)
519519
fwrite(output.ptr + writepos, p - writepos, 1, stdout);
520520
writepos = p;
521-
fwrite(")".ptr, 1, 1, stdout);
521+
fwrite(")".ptr, 1, 1, stdout);
522522
}
523523
else
524524
{
@@ -531,7 +531,7 @@ void processLine(ubyte[] output, ref size_t writepos, bool optlink, int cp)
531531
writepos = p;
532532
fwrite(" (".ptr, 2, 1, stdout);
533533
fwrite(symbolName.ptr, symbolName.length, 1, stdout);
534-
fwrite(")".ptr, 1, 1, stdout);
534+
fwrite(")".ptr, 1, 1, stdout);
535535
}
536536
}
537537
}
@@ -609,7 +609,7 @@ string findTracker(bool x64, ref string trackerArgs)
609609
if (!exe.empty && isExe64bit(exe) != x64)
610610
exe = null;
611611
if (exe.indexOf("14.0") >= 0)
612-
trackerArgs = x64 ? " /d FileTracker64.dll" : " /d FileTracker32.dll";
612+
trackerArgs = x64 ? " /d FileTracker64.dll" : " /d FileTracker32.dll";
613613

614614
if (exe.empty)
615615
exe = findTrackerInVS2017();
@@ -646,7 +646,7 @@ string findTrackerInMSBuild(const(wchar)* keyname, bool x64, string* trackerArgs
646646
string path = readRegistry(keyname, "MSBuildToolsPath"w.ptr, x64);
647647
string exe = trackerPath(path, x64);
648648
if (exe && trackerArgs)
649-
*trackerArgs = x64 ? " /d FileTracker64.dll" : " /d FileTracker32.dll";
649+
*trackerArgs = x64 ? " /d FileTracker64.dll" : " /d FileTracker32.dll";
650650
return exe;
651651
}
652652

@@ -659,7 +659,7 @@ string findTrackerInVS2017()
659659
string exe = dir ~ r"MSBuild\15.0\Bin\Tracker.exe";
660660
if (!std.file.exists(exe))
661661
return null;
662-
// can handle both x86 and x64
662+
// can handle both x86 and x64
663663
return exe;
664664
}
665665

0 commit comments

Comments
 (0)