diff --git a/Browser/Main.Designer.vb b/Browser/Main.Designer.vb index 9355590..9219e44 100644 --- a/Browser/Main.Designer.vb +++ b/Browser/Main.Designer.vb @@ -1029,7 +1029,7 @@ Partial Class Main ' Me.pbMolecule.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.pbMolecule.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.pbMolecule.Location = New System.Drawing.Point(393, -68) + Me.pbMolecule.Location = New System.Drawing.Point(419, -68) Me.pbMolecule.Margin = New System.Windows.Forms.Padding(4) Me.pbMolecule.Name = "pbMolecule" Me.pbMolecule.Size = New System.Drawing.Size(630, 504) diff --git a/Browser/Main.vb b/Browser/Main.vb index 6245e50..80dda2c 100644 --- a/Browser/Main.vb +++ b/Browser/Main.vb @@ -174,6 +174,12 @@ If System.IO.File.Exists(IniFilePath) = True Then INI.Load(IniFilePath) + 'Make sure the default encryption PW exists + If INI.GetSection(INI_Settings).GetKey(INI_PW) Is Nothing Then + 'Restore value, if missing + INI.AddSection(INI_Settings).AddKey(INI_PW).Value = Default_DAT_PW + End If + 'Make sure the INI key/value exists If INI.GetSection(INI_Settings).GetKey(INI_LastWalletId) IsNot Nothing Then 'Restore last Wallet Id used diff --git a/FoldingBrowser - Status - ToDo List.txt b/FoldingBrowser - Status - ToDo List.txt index 324b6b0..562524f 100644 --- a/FoldingBrowser - Status - ToDo List.txt +++ b/FoldingBrowser - Status - ToDo List.txt @@ -82,7 +82,7 @@ Other Ideas, Improvements, Tasks, Longer-Term Goals: Change Log - Release Notes - Tasks completed: ====================================================================================================== -v23 Release (2023-02-18) +v23 Release (2023-02-20) [DONE] -Updates for new CureCoin logo changes [DONE] -Make 'CureCoin only' dialog easier (see above) [DONE] -Update blockchain installer to be up to date: 2023-02-14, Block 793824 diff --git a/Install/FoldingBrowser with blockchain - NSIS Installer Script.nsi b/Install/FoldingBrowser with blockchain - NSIS Installer Script.nsi index c8afb84..c221dd1 100644 --- a/Install/FoldingBrowser with blockchain - NSIS Installer Script.nsi +++ b/Install/FoldingBrowser with blockchain - NSIS Installer Script.nsi @@ -200,6 +200,7 @@ Section "!${PRODUCT_NAME} v${PRODUCT_VERSION}" SEC01 File "..\Browser\bin\Release\CefSharp.BrowserSubprocess.Core.dll" File "..\Browser\bin\Release\CefSharp.BrowserSubprocess.exe" File "..\Browser\bin\Release\CefSharp.Core.dll" + File "..\Browser\bin\Release\CefSharp.Core.Runtime.dll" File "..\Browser\bin\Release\CefSharp.dll" File "..\Browser\bin\Release\CefSharp.WinForms.dll" File "..\Browser\bin\Release\chrome_elf.dll" @@ -211,7 +212,11 @@ Section "!${PRODUCT_NAME} v${PRODUCT_VERSION}" SEC01 File "..\Browser\bin\Release\libEGL.dll" File "..\Browser\bin\Release\libGLESv2.dll" File "..\Browser\bin\Release\LICENSE.txt" + File "..\Browser\bin\Release\README.txt" File "..\Browser\bin\Release\*.bin" + File "..\Browser\bin\Release\vk_swiftshader.dll" + File "..\Browser\bin\Release\vk_swiftshader_icd.json" + File "..\Browser\bin\Release\vulkan-1.dll" SetOutPath "$INSTDIR\Licenses" ;Destination File "..\Browser\bin\Release\Licenses\*" @@ -470,12 +475,9 @@ Section Uninstall ;Delete the main installation folder if possible Delete "$INSTDIR\*" RMDir "$INSTDIR" - - SetOutPath $APPDATA ;Try changing to a different path to avoid being in the working folder - ;Delete the main folder if possible - RMDir /r "$INSTDIR" - - ;Delete the main folder, if possible + ;Try changing to a different path to avoid being in the working folder + SetOutPath $APPDATA + ;Delete the main installation folder if possible Delete "$INSTDIR\*" RMDir "$INSTDIR" diff --git a/Install/FoldingBrowser without blockchain - NSIS Installer Script.nsi b/Install/FoldingBrowser without blockchain - NSIS Installer Script.nsi index 4769920..6a25508 100644 --- a/Install/FoldingBrowser without blockchain - NSIS Installer Script.nsi +++ b/Install/FoldingBrowser without blockchain - NSIS Installer Script.nsi @@ -200,6 +200,7 @@ Section "!${PRODUCT_NAME} v${PRODUCT_VERSION}" SEC01 File "..\Browser\bin\Release\CefSharp.BrowserSubprocess.Core.dll" File "..\Browser\bin\Release\CefSharp.BrowserSubprocess.exe" File "..\Browser\bin\Release\CefSharp.Core.dll" + File "..\Browser\bin\Release\CefSharp.Core.Runtime.dll" File "..\Browser\bin\Release\CefSharp.dll" File "..\Browser\bin\Release\CefSharp.WinForms.dll" File "..\Browser\bin\Release\chrome_elf.dll" @@ -211,7 +212,11 @@ Section "!${PRODUCT_NAME} v${PRODUCT_VERSION}" SEC01 File "..\Browser\bin\Release\libEGL.dll" File "..\Browser\bin\Release\libGLESv2.dll" File "..\Browser\bin\Release\LICENSE.txt" + File "..\Browser\bin\Release\README.txt" File "..\Browser\bin\Release\*.bin" + File "..\Browser\bin\Release\vk_swiftshader.dll" + File "..\Browser\bin\Release\vk_swiftshader_icd.json" + File "..\Browser\bin\Release\vulkan-1.dll" SetOutPath "$INSTDIR\Licenses" ;Destination File "..\Browser\bin\Release\Licenses\*" @@ -470,12 +475,9 @@ Section Uninstall ;Delete the main installation folder if possible Delete "$INSTDIR\*" RMDir "$INSTDIR" - - SetOutPath $APPDATA ;Try changing to a different path to avoid being in the working folder - ;Delete the main folder if possible - RMDir /r "$INSTDIR" - - ;Delete the main folder, if possible + ;Try changing to a different path to avoid being in the working folder + SetOutPath $APPDATA + ;Delete the main installation folder if possible Delete "$INSTDIR\*" RMDir "$INSTDIR"