diff --git a/.idea/.idea.XeroBrowser/.idea/.gitignore b/.idea/.idea.XeroBrowser/.idea/.gitignore new file mode 100644 index 0000000..2ce356c --- /dev/null +++ b/.idea/.idea.XeroBrowser/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.XeroBrowser.iml +/contentModel.xml +/projectSettingsUpdater.xml +/modules.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.XeroBrowser/.idea/.name b/.idea/.idea.XeroBrowser/.idea/.name new file mode 100644 index 0000000..274a7f6 --- /dev/null +++ b/.idea/.idea.XeroBrowser/.idea/.name @@ -0,0 +1 @@ +XeroBrowser \ No newline at end of file diff --git a/.idea/.idea.XeroBrowser/.idea/indexLayout.xml b/.idea/.idea.XeroBrowser/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.XeroBrowser/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.XeroBrowser/.idea/inspectionProfiles/Project_Default.xml b/.idea/.idea.XeroBrowser/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..1408a24 --- /dev/null +++ b/.idea/.idea.XeroBrowser/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,72 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.XeroBrowser/.idea/jsLibraryMappings.xml b/.idea/.idea.XeroBrowser/.idea/jsLibraryMappings.xml new file mode 100644 index 0000000..5328a4f --- /dev/null +++ b/.idea/.idea.XeroBrowser/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/.idea.XeroBrowser/.idea/vcs.xml b/.idea/.idea.XeroBrowser/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/.idea.XeroBrowser/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WebBrowser/Properties/AssemblyInfo.cs b/WebBrowser/Properties/AssemblyInfo.cs index 0446643..80d4532 100644 --- a/WebBrowser/Properties/AssemblyInfo.cs +++ b/WebBrowser/Properties/AssemblyInfo.cs @@ -4,11 +4,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("DiamondCreeperBrowser")] +[assembly: AssemblyTitle("XeroBrowser")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DiamondCreeperBrowser")] +[assembly: AssemblyProduct("XeroBrowser")] [assembly: AssemblyCopyright("Copyright © 2021")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/WebBrowser/Resources/loaderror.html b/WebBrowser/Resources/loaderror.html new file mode 100644 index 0000000..b6553c1 --- /dev/null +++ b/WebBrowser/Resources/loaderror.html @@ -0,0 +1,790 @@ + + + + + + Error + + + + + + + + + + + + + + +
+
+
+ + +
+
+
+
+
+
+
+
ERROR :/
+

Could not load the site/page!

+
+

1. Check your connection.

+

2. Make sure that theres no firewall/antivirus blocking the conenction.

+
+
+ Back +
+
+
+
+
+ + diff --git a/WebBrowser/Xero Browser.csproj b/WebBrowser/Xero Browser.csproj index 22370d1..c6c8b6f 100644 --- a/WebBrowser/Xero Browser.csproj +++ b/WebBrowser/Xero Browser.csproj @@ -331,6 +331,7 @@ Always + Always @@ -342,6 +343,9 @@ Always + + Always + Always diff --git a/WebBrowser/frmBrowser.cs b/WebBrowser/frmBrowser.cs index 2defa73..466ab03 100644 --- a/WebBrowser/frmBrowser.cs +++ b/WebBrowser/frmBrowser.cs @@ -4,6 +4,7 @@ using System.IO; using System.Windows.Forms; using Bunifu.Utils; using CefSharp; +using CefSharp.WinForms; using EasyTabs; using XeroBrowser.Properties; // ReSharper disable PossibleNullReferenceException @@ -13,7 +14,7 @@ namespace XeroBrowser public partial class FrmBrowser : Form { private readonly Uri _fileUri; - // Uri _fileUri2; + Uri _fileUri2; public FrmBrowser() { InitializeComponent(); @@ -174,9 +175,10 @@ namespace XeroBrowser private void chromiumWebBrowser1_LoadError(object sender, LoadErrorEventArgs e) { - // string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "loaderror.html"); - // _fileUri2 = new Uri(filePath); - // string fileUrl = _fileUri2.AbsoluteUri; + string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "loaderror.html"); + _fileUri2 = new Uri(filePath); + string fileUrl = _fileUri2.AbsoluteUri; + chromiumWebBrowser1.Load(fileUrl); } private void txtSearchOrUrl_KeyUp(object sender, KeyEventArgs e)