diff --git a/WebBrowser/Program.cs b/WebBrowser/Program.cs
index 84028c3..9428bda 100644
--- a/WebBrowser/Program.cs
+++ b/WebBrowser/Program.cs
@@ -75,6 +75,7 @@ namespace XeroBrowser
settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF";
settings.CefCommandLineArgs.Add("safebrowsing-disable-download-protection", "0");
settings.CefCommandLineArgs.Add("safebrowsing-disable-extension-blacklist", "0");
+ settings.CefCommandLineArgs.Add("disable-webgl", "1");
/// settings.CefCommandLineArgs.Add("safebrowsing-disable-auto-update", "0");
FileChecker.FolderCheck();
FileChecker.FileCheck();
diff --git a/WebBrowser/Xero Browser.csproj b/WebBrowser/Xero Browser.csproj
index 9df43e7..9140caa 100644
--- a/WebBrowser/Xero Browser.csproj
+++ b/WebBrowser/Xero Browser.csproj
@@ -384,9 +384,6 @@
Always
-
- Always
-
diff --git a/WebBrowser/frmBrowser.Designer.cs b/WebBrowser/frmBrowser.Designer.cs
index 965a15f..6ce3449 100644
--- a/WebBrowser/frmBrowser.Designer.cs
+++ b/WebBrowser/frmBrowser.Designer.cs
@@ -143,7 +143,7 @@ namespace XeroBrowser
this.txtSearchOrUrl.Padding = new System.Windows.Forms.Padding(3);
this.txtSearchOrUrl.PasswordChar = '\0';
this.txtSearchOrUrl.PlaceholderForeColor = System.Drawing.Color.DimGray;
- this.txtSearchOrUrl.PlaceholderText = " Search with google or enter a URL";
+ this.txtSearchOrUrl.PlaceholderText = " Search with DuckDuckGo or enter a URL";
this.txtSearchOrUrl.ReadOnly = false;
this.txtSearchOrUrl.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.txtSearchOrUrl.SelectedText = "";
@@ -157,7 +157,7 @@ namespace XeroBrowser
this.txtSearchOrUrl.TextMarginBottom = 0;
this.txtSearchOrUrl.TextMarginLeft = 3;
this.txtSearchOrUrl.TextMarginTop = 1;
- this.txtSearchOrUrl.TextPlaceholder = " Search with google or enter a URL";
+ this.txtSearchOrUrl.TextPlaceholder = " Search with DuckDuckGo or enter a URL";
this.bunifuToolTip1.SetToolTip(this.txtSearchOrUrl, "");
this.bunifuToolTip1.SetToolTipIcon(this.txtSearchOrUrl, null);
this.bunifuToolTip1.SetToolTipTitle(this.txtSearchOrUrl, "");
diff --git a/WebBrowser/frmBrowser.cs b/WebBrowser/frmBrowser.cs
index 76e0da0..7fff245 100644
--- a/WebBrowser/frmBrowser.cs
+++ b/WebBrowser/frmBrowser.cs
@@ -243,7 +243,7 @@ namespace XeroBrowser
}
else
{
- chromiumWebBrowser1.Load("https://www.google.com/search?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+") + "&sourceid=chrome&ie=UTF-8");
+ chromiumWebBrowser1.Load("https://www.duckduckgo.com/?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+") + "&kp=1&va=k&t=hz&ia=web");
}
}
}
diff --git a/WebBrowser/frmSettings.Designer.cs b/WebBrowser/frmSettings.Designer.cs
index fd02331..c029be1 100644
--- a/WebBrowser/frmSettings.Designer.cs
+++ b/WebBrowser/frmSettings.Designer.cs
@@ -392,17 +392,17 @@ namespace XeroBrowser
this.bunifuDropdown1.ItemHighLightColor = System.Drawing.Color.DodgerBlue;
this.bunifuDropdown1.ItemHighLightForeColor = System.Drawing.Color.White;
this.bunifuDropdown1.Items.AddRange(new object[] {
+ "DuckDuckGo",
"Google",
"Bing",
- "Yhaoo",
- "DuckDuckGo"});
+ "Yhaoo"});
this.bunifuDropdown1.ItemTopMargin = 3;
this.bunifuDropdown1.Location = new System.Drawing.Point(344, 160);
this.bunifuDropdown1.Name = "bunifuDropdown1";
this.bunifuDropdown1.Size = new System.Drawing.Size(215, 32);
this.bunifuDropdown1.TabIndex = 9;
this.bunifuDropdown1.TabStop = false;
- this.bunifuDropdown1.Text = "Google";
+ this.bunifuDropdown1.Text = "DuckDuckGo";
this.bunifuDropdown1.TextAlignment = Bunifu.UI.WinForms.BunifuDropdown.TextAlign.Left;
this.bunifuDropdown1.TextLeftMargin = 5;
this.bunifuDropdown1.SelectedIndexChanged += new System.EventHandler(this.bunifuDropdown1_SelectedIndexChanged);
diff --git a/WebBrowser/index.html b/WebBrowser/index.html
index 7326bad..db6bfde 100644
--- a/WebBrowser/index.html
+++ b/WebBrowser/index.html
@@ -19,704 +19,35058 @@