diff --git a/GBM/Managers/mgrPath.vb b/GBM/Managers/mgrPath.vb index 7a569af..29bcb0f 100644 --- a/GBM/Managers/mgrPath.vb +++ b/GBM/Managers/mgrPath.vb @@ -8,9 +8,9 @@ Public Class mgrPath Private Shared sDBLocation As String = sSettingsRoot & "\gbm.s3db" Private Shared sIncludeFile As String = sSettingsRoot & "\gbm_include.txt" Private Shared sExcludeFile As String = sSettingsRoot & "\gbm_exclude.txt" - Private Shared sOfficialImportURL As String = "http://backupmonitor.sourceforge.net/GBM_Official.xml" - Private Shared sOfficialManualURL As String = "http://backupmonitor.sourceforge.net/manual.php" - Private Shared sOfficialUpdatesURL As String = "http://backupmonitor.sourceforge.net/" + Private Shared sOfficialImportURL As String = "http://mikemaximus.github.io/gbm-web/GBM_Official.xml" + Private Shared sOfficialManualURL As String = "http://mikemaximus.github.io/gbm-web/manual.html" + Private Shared sOfficialUpdatesURL As String = "https://github.com/MikeMaximus/gbm/releases" Private Shared sRemoteDatabaseLocation As String Private Shared hshCustomVariables As Hashtable Private Shared oReleaseType As ProcessorArchitecture = AssemblyName.GetAssemblyName(Application.ExecutablePath()).ProcessorArchitecture diff --git a/GBM/Managers/mgrXML.vb b/GBM/Managers/mgrXML.vb index bf0665c..a0271bc 100644 --- a/GBM/Managers/mgrXML.vb +++ b/GBM/Managers/mgrXML.vb @@ -67,7 +67,7 @@ Public Class mgrXML Dim xFileWriter As XmlTextWriter Try - xFileWriter = New XmlTextWriter(sLocation, System.Text.Encoding.Unicode) + xFileWriter = New XmlTextWriter(sLocation, System.Text.Encoding.UTF8) xFileWriter.Formatting = Formatting.Indented xFileWriter.WriteStartDocument() xFileWriter.WriteComment("GBM Export: " & Date.Now)