diff --git a/README.md b/README.md
index c1aeaf1..4065745 100644
--- a/README.md
+++ b/README.md
@@ -56,9 +56,11 @@ Build and run with DUB:
If you see build errors, try to upgrade dependencies:
dub upgrade --force-remove
+ dub build --force
-Needs DMD 2.066.1 to build.
+Needs DMD 2.066.1 or newer to build.
+
HINT: Try to open sample project Tetris, from workspaces/tetris with DlangIDE.
diff --git a/dlangide.visualdproj b/dlangide.visualdproj
index 2a09fda..e698f6e 100644
--- a/dlangide.visualdproj
+++ b/dlangide.visualdproj
@@ -240,6 +240,7 @@
+
diff --git a/src/dlangide/ui/newproject.d b/src/dlangide/ui/newproject.d
new file mode 100644
index 0000000..0f02d49
--- /dev/null
+++ b/src/dlangide/ui/newproject.d
@@ -0,0 +1,23 @@
+module dlangide.ui.newproject;
+
+import dlangui.core.types;
+import dlangui.core.i18n;
+import dlangui.platforms.common.platform;
+import dlangui.dialogs.dialog;
+
+class NewProjectDlg : Dialog {
+
+ this(UIString caption, Window parentWindow = null, uint flags = DialogFlag.Modal) {
+ super(caption, parentWindow, flags);
+ _caption = caption;
+ _parentWindow = parentWindow;
+ _flags = flags;
+ _icon = "dlangui-logo1";
+ }
+
+ /// override to implement creation of dialog controls
+ override void init() {
+ super.init();
+ }
+
+}