Update
Added - New stuff in new tab. Changed - Default search engine is now DuckDuckGo. - CSS on new tab was updated. - Updated the twitter link on the new tab page to say X.
This commit is contained in:
parent
b6043fc1e1
commit
7d6b3b5144
6 changed files with 35064 additions and 708 deletions
|
@ -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();
|
||||
|
|
|
@ -384,9 +384,6 @@
|
|||
<Content Include="loaderror.html">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="pepflashplayer64_32_0_0_465.dll">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<None Include="secure.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
4
WebBrowser/frmBrowser.Designer.cs
generated
4
WebBrowser/frmBrowser.Designer.cs
generated
|
@ -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, "");
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
6
WebBrowser/frmSettings.Designer.cs
generated
6
WebBrowser/frmSettings.Designer.cs
generated
|
@ -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);
|
||||
|
|
35756
WebBrowser/index.html
35756
WebBrowser/index.html
File diff suppressed because it is too large
Load diff
Reference in a new issue