Skip to content

Commit

Permalink
further changes for the remote GUI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindrem committed Jul 16, 2024
1 parent c419176 commit f556243
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
14 changes: 10 additions & 4 deletions HelperResources/CommonResources
Original file line number Diff line number Diff line change
Expand Up @@ -537,16 +537,22 @@ updateActiveFile ()
# update the active file if needed
# patched files have already incorporated current active file content
# so nothing diffrerent here
doUpdate=false
if ! [ -f "$activeFile" ] || ! cmp -s "$sourceFile" "$activeFile" ; then
backupActiveFile "$activeFile"
cp "$sourceFile" "$activeFile"
updateRestartFlags "$activeFile"
thisFileUpdated=true
fi

# insure active file has proper permissions
if [ -f "$activeFile" ]; then
chmod +r "$activeFile"
if [[ -x "$activeFile.orig" ]]; then
if [[ -x "$activeFile.orig" ]] || [[ -x "$sourceFile" ]] ; then
chmod +x "$activeFile"
fi
updateRestartFlags "$activeFile"
thisFileUpdated=true
fi

if $thisFileUpdated; then
return 0
else
return 1
Expand Down
2 changes: 1 addition & 1 deletion blindInstall/SetupHelperVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.8
v8.9
3 changes: 3 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v8.9:
fixed: further changes for the remote GUI issue

v8.8:
fixed: GuiMods web GUI (v1) broken (patched file permissions incorrect)

Expand Down
Binary file modified venus-data-UninstallPackages.tgz
Binary file not shown.
Binary file modified venus-data.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.8
v8.9

0 comments on commit f556243

Please sign in to comment.