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:
Diamond Creeper 2024-04-11 22:00:57 +12:00
parent b6043fc1e1
commit 7d6b3b5144
6 changed files with 35064 additions and 708 deletions

View file

@ -75,6 +75,7 @@ namespace XeroBrowser
settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF"; settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF";
settings.CefCommandLineArgs.Add("safebrowsing-disable-download-protection", "0"); settings.CefCommandLineArgs.Add("safebrowsing-disable-download-protection", "0");
settings.CefCommandLineArgs.Add("safebrowsing-disable-extension-blacklist", "0"); settings.CefCommandLineArgs.Add("safebrowsing-disable-extension-blacklist", "0");
settings.CefCommandLineArgs.Add("disable-webgl", "1");
/// settings.CefCommandLineArgs.Add("safebrowsing-disable-auto-update", "0"); /// settings.CefCommandLineArgs.Add("safebrowsing-disable-auto-update", "0");
FileChecker.FolderCheck(); FileChecker.FolderCheck();
FileChecker.FileCheck(); FileChecker.FileCheck();

View file

@ -384,9 +384,6 @@
<Content Include="loaderror.html"> <Content Include="loaderror.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content> </Content>
<Content Include="pepflashplayer64_32_0_0_465.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="secure.png" /> <None Include="secure.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

@ -143,7 +143,7 @@ namespace XeroBrowser
this.txtSearchOrUrl.Padding = new System.Windows.Forms.Padding(3); this.txtSearchOrUrl.Padding = new System.Windows.Forms.Padding(3);
this.txtSearchOrUrl.PasswordChar = '\0'; this.txtSearchOrUrl.PasswordChar = '\0';
this.txtSearchOrUrl.PlaceholderForeColor = System.Drawing.Color.DimGray; 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.ReadOnly = false;
this.txtSearchOrUrl.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtSearchOrUrl.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.txtSearchOrUrl.SelectedText = ""; this.txtSearchOrUrl.SelectedText = "";
@ -157,7 +157,7 @@ namespace XeroBrowser
this.txtSearchOrUrl.TextMarginBottom = 0; this.txtSearchOrUrl.TextMarginBottom = 0;
this.txtSearchOrUrl.TextMarginLeft = 3; this.txtSearchOrUrl.TextMarginLeft = 3;
this.txtSearchOrUrl.TextMarginTop = 1; 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.SetToolTip(this.txtSearchOrUrl, "");
this.bunifuToolTip1.SetToolTipIcon(this.txtSearchOrUrl, null); this.bunifuToolTip1.SetToolTipIcon(this.txtSearchOrUrl, null);
this.bunifuToolTip1.SetToolTipTitle(this.txtSearchOrUrl, ""); this.bunifuToolTip1.SetToolTipTitle(this.txtSearchOrUrl, "");

View file

@ -243,7 +243,7 @@ namespace XeroBrowser
} }
else 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");
} }
} }
} }

View file

@ -392,17 +392,17 @@ namespace XeroBrowser
this.bunifuDropdown1.ItemHighLightColor = System.Drawing.Color.DodgerBlue; this.bunifuDropdown1.ItemHighLightColor = System.Drawing.Color.DodgerBlue;
this.bunifuDropdown1.ItemHighLightForeColor = System.Drawing.Color.White; this.bunifuDropdown1.ItemHighLightForeColor = System.Drawing.Color.White;
this.bunifuDropdown1.Items.AddRange(new object[] { this.bunifuDropdown1.Items.AddRange(new object[] {
"DuckDuckGo",
"Google", "Google",
"Bing", "Bing",
"Yhaoo", "Yhaoo"});
"DuckDuckGo"});
this.bunifuDropdown1.ItemTopMargin = 3; this.bunifuDropdown1.ItemTopMargin = 3;
this.bunifuDropdown1.Location = new System.Drawing.Point(344, 160); this.bunifuDropdown1.Location = new System.Drawing.Point(344, 160);
this.bunifuDropdown1.Name = "bunifuDropdown1"; this.bunifuDropdown1.Name = "bunifuDropdown1";
this.bunifuDropdown1.Size = new System.Drawing.Size(215, 32); this.bunifuDropdown1.Size = new System.Drawing.Size(215, 32);
this.bunifuDropdown1.TabIndex = 9; this.bunifuDropdown1.TabIndex = 9;
this.bunifuDropdown1.TabStop = false; this.bunifuDropdown1.TabStop = false;
this.bunifuDropdown1.Text = "Google"; this.bunifuDropdown1.Text = "DuckDuckGo";
this.bunifuDropdown1.TextAlignment = Bunifu.UI.WinForms.BunifuDropdown.TextAlign.Left; this.bunifuDropdown1.TextAlignment = Bunifu.UI.WinForms.BunifuDropdown.TextAlign.Left;
this.bunifuDropdown1.TextLeftMargin = 5; this.bunifuDropdown1.TextLeftMargin = 5;
this.bunifuDropdown1.SelectedIndexChanged += new System.EventHandler(this.bunifuDropdown1_SelectedIndexChanged); this.bunifuDropdown1.SelectedIndexChanged += new System.EventHandler(this.bunifuDropdown1_SelectedIndexChanged);

File diff suppressed because it is too large Load diff