mirror of https://github.com/buggins/dlangide.git
fix #203 - DCD problem with multithreaded app
This commit is contained in:
parent
7560d8347c
commit
d15e6e769a
1
dub.json
1
dub.json
|
@ -13,6 +13,7 @@
|
|||
|
||||
"dependencies": {
|
||||
"dlangui": "==0.9.89",
|
||||
"dsymbol": "~>0.2.8",
|
||||
"dcd": "~>0.9.0"
|
||||
},
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import std.path;
|
|||
|
||||
immutable string HELP_PAGE_URL = "https://github.com/buggins/dlangide/wiki";
|
||||
// TODO: get version from GIT commit
|
||||
immutable dstring DLANGIDE_VERSION = "v0.7.42"d;
|
||||
immutable dstring DLANGIDE_VERSION = "v0.7.44"d;
|
||||
|
||||
bool isSupportedSourceTextFileFormat(string filename) {
|
||||
return (filename.endsWith(".d") || filename.endsWith(".di") || filename.endsWith(".dt") || filename.endsWith(".txt") || filename.endsWith(".cpp") || filename.endsWith(".h") || filename.endsWith(".c")
|
||||
|
|
Loading…
Reference in New Issue