Skip to content

Commit 5bd33d0

Browse files
authored
Merge pull request #77 from rainers/master
changes for v0.45-rc2
2 parents 081c8b8 + 872465e commit 5bd33d0

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,7 @@ unreleased Version 0.45.0
882882
- /MAPINFO: remove ancient options no longer supported by the MS linker
883883
- separated compile and link into two batches so compile skipped if only link inputs changed
884884
- dependency monitoring: added option to specify files/folders to exclude from dependency check
885+
- mark html output log as UTF-8 encoded
885886
* editor
886887
- fix crash when editing dub.json when part of a project
887888
- added task list support for files loaded into the editor
@@ -896,3 +897,4 @@ unreleased Version 0.45.0
896897
- break endless loop due to unresolved selective import
897898
- fix for no expansions for symbols from public import in imported module
898899
- try dparser as fallback if goto definition on import fails
900+
- fix exception in isExpression

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#define VERSION_MINOR 45
33
#define VERSION_REVISION 0
44
#define VERSION_BETA -rc
5-
#define VERSION_BUILD 1
5+
#define VERSION_BUILD 2

visuald/build.d

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ else
683683
{
684684
mStartBuildTime = time(null);
685685

686-
mBuildLog = `<html><head><META HTTP-EQUIV="Content-Type" content="text/html">
686+
mBuildLog = `<html><head><meta http-equiv="Content-Type" content="text/html" charset="utf-8">
687687
</head><body><pre>
688688
<table width=100% bgcolor=#CFCFE5><tr><td>
689689
<font face=arial size=+3>Build Log</font>
@@ -1412,9 +1412,8 @@ bool getFilesFromTrackerFile(string lnkdeppath, ref string[] files)
14121412
}
14131413
else
14141414
{
1415-
auto lnkdepz = cast(string)lnkdepData ~ "\0";
1416-
int cp = GetKBCodePage();
1417-
lnkdeps = fromMBSz(lnkdepz.ptr, cp);
1415+
// tracker file already converted to UTF8 by pipedmd
1416+
lnkdeps = cast(string)lnkdepData;
14181417
}
14191418

14201419
string[] exclpaths = Package.GetGlobalOptions().getDepsExcludePaths();

0 commit comments

Comments
 (0)