Skip to content

Commit 04ad1cc

Browse files
committedNov 18, 2015
Added support for QtNetwork.
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent 1a67694 commit 04ad1cc

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.0.4 - 18.11.2015
2+
Added:
3+
- A binding for QtNetwork.
4+
15
0.0.3 - 13.11.2015
26
Fixed:
37
- Crashes when loading GUI from a *.ui file using QFormBuilder.

‎QtSharp.CLI/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public static int Main(string[] args)
9595
dependencies[libFile] = Enumerable.Empty<string>();
9696
}
9797
}
98-
var modules = new List<string> { "Qt5Core", "Qt5Gui", "Qt5Widgets", "Qt5Xml", "Qt5Designer" };
98+
var modules = new List<string> { "Qt5Core", "Qt5Gui", "Qt5Widgets", "Qt5Xml", "Qt5Designer", "Qt5Network" };
9999
if (debug)
100100
{
101101
for (var i = 0; i < modules.Count; i++)

0 commit comments

Comments
 (0)
Please sign in to comment.