diff --git a/dub.json b/dub.json index d01730f..bc01c49 100644 --- a/dub.json +++ b/dub.json @@ -13,6 +13,7 @@ "dependencies": { "dlangui": "==0.9.89", + "dsymbol": "~>0.2.8", "dcd": "~>0.9.0" }, diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index 6d15c85..02f47ca 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -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")