diff --git a/QBundle/My Project/Resources.Designer.vb b/QBundle/My Project/Resources.Designer.vb
index e9e37b0..1922b93 100644
--- a/QBundle/My Project/Resources.Designer.vb
+++ b/QBundle/My Project/Resources.Designer.vb
@@ -80,16 +80,6 @@ Namespace My.Resources
End Get
End Property
- '''
- ''' Looks up a localized resource of type System.Drawing.Bitmap.
- '''
- Friend ReadOnly Property Cryptoguru() As System.Drawing.Bitmap
- Get
- Dim obj As Object = ResourceManager.GetObject("Cryptoguru", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
- End Get
- End Property
-
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
diff --git a/QBundle/QBundle.vbproj b/QBundle/QBundle.vbproj
index 8fc893d..71c725a 100644
--- a/QBundle/QBundle.vbproj
+++ b/QBundle/QBundle.vbproj
@@ -14,6 +14,8 @@
v4.5.2
true
false
+
+
publish\
true
Disk
@@ -28,8 +30,6 @@
1.0.0.%2a
false
true
-
-
AnyCPU
@@ -449,6 +449,7 @@
+
diff --git a/QBundle/QBundle.vbproj.user b/QBundle/QBundle.vbproj.user
index 5b5dcaf..bc17431 100644
--- a/QBundle/QBundle.vbproj.user
+++ b/QBundle/QBundle.vbproj.user
@@ -5,5 +5,13 @@
ShowAllFiles
+ publish\
+
+
+
+
+
+ en-US
+ false
\ No newline at end of file
diff --git a/QBundle/clsAppManager.vb b/QBundle/clsAppManager.vb
index 3e37ef1..b5b57b5 100644
--- a/QBundle/clsAppManager.vb
+++ b/QBundle/clsAppManager.vb
@@ -207,7 +207,7 @@ Public Class clsAppManager
Dim res As DialogResult
res = s.ShowDialog
If res = DialogResult.Cancel Then
- Return True
+ Return False
ElseIf res = DialogResult.Abort Then
MsgBox("Something went wrong. Internet connection might have been lost.", MsgBoxStyle.Critical Or MsgBoxStyle.OkOnly, "Error")
Return False
diff --git a/QBundle/frmMain.vb b/QBundle/frmMain.vb
index d99f5b9..4d7185f 100644
--- a/QBundle/frmMain.vb
+++ b/QBundle/frmMain.vb
@@ -110,9 +110,9 @@ Public Class frmMain
ChromiumWebBrowser.Initialize()
Catch ex As Chromium.CfxException
If Q.AppManager.InstallApp("chromium") Then
+ QB.Generic.RestartBundle()
Close()
Else
- QB.Generic.RestartBundle()
Close()
End If
End Try