From 99315708d30b01291087f574ba6edf453002f1f3 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Thu, 24 Aug 2017 10:49:08 +0300 Subject: [PATCH] update dlangui version to fix scrollbar issue #236 --- dub.json | 2 +- src/dlangide/ui/frame.d | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index f948013..7ab5943 100644 --- a/dub.json +++ b/dub.json @@ -12,7 +12,7 @@ "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"], "dependencies": { - "dlangui": "==0.9.93", + "dlangui": "==0.9.94", "dcd": "~>0.9.1" }, diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index f41b9e1..9a85863 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.45"d; +immutable dstring DLANGIDE_VERSION = "v0.7.47"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")