Skip to content

Commit

Permalink
v23 release changes: Update installers for newer CEF files. Ensure th…
Browse files Browse the repository at this point in the history
…e default INI settings are available in an existing INI file on browser launch.
  • Loading branch information
Hou5e committed Feb 20, 2023
1 parent d77c2d7 commit ab3d7eb
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Browser/Main.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Browser/Main.vb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion FoldingBrowser - Status - ToDo List.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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\*"
Expand Down Expand Up @@ -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"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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\*"
Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit ab3d7eb

Please sign in to comment.