Skip to content

Commit

Permalink
add support for v3.00
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindrem committed May 31, 2023
1 parent e3eb6f6 commit 44045a0
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 293 deletions.
Binary file modified FileSets/.DS_Store
Binary file not shown.
Binary file removed FileSets/v2.42/.DS_Store
Binary file not shown.
121 changes: 0 additions & 121 deletions FileSets/v2.42/PageSettingsGeneral.qml

This file was deleted.

109 changes: 0 additions & 109 deletions FileSets/v2.42/PageSettingsGeneral.qml.orig

This file was deleted.

Empty file added FileSets/v2.66/UNUSED_FILE_SET
Empty file.
Binary file removed FileSets/v2.73/.DS_Store
Binary file not shown.
61 changes: 0 additions & 61 deletions FileSets/v2.73/PageSettingsShutdown.qml

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v2.5:
add support for v3.00 - no functional changes

v2.4:
fixed: Shutdown menu buttons not being hidden properly

Expand Down
Binary file modified service/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion timeStamp

This file was deleted.

2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.4
v2.5

2 comments on commit 44045a0

@MOOSEYCHOPS
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Kevin, wie gehts,
I was following Andy's video on installing the shut down (29 June 2023) I copied the script and pasted into putty but I could get the second line to work. I received a 'magic' error.
"gzip: invalid magic
tar: Child returned status 1
tar: Error is not recoverable: exiting now
root@raspberrypi4:~# rm -rf /data/ShutdownMonitorwget -qO - https://github.com/kwindrem/ShutdownMonitor/archive/current.tar.gz | tar -xzf - -C /data
rm: invalid option -- 'q'
BusyBox v1.31.1 (2023-05-29 22:20:29 UTC) multi-call binary.

Usage: rm [-irf] FILE..."

@kwindrem
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure where the command you are pasting into putty came from but it appears to be a concatenation of two lines.

rm -rf /data/ShutdownMonitor
wget -qO - https://github.com/kwindrem/ShutdownMonitor/archive/current.tar.gz | tar -xzf - -C /data

It's been a while since I've done things this way but if I recall, you end up with the package in /data/ShutdownMonitor-latest so you'll need to move it into position:

mv /data/ShutdownMonitor-latest /data/ShutdownMonitor

You then need to run the setup script:

/data/ShutdownMonitor/setup

You will also need to install SetupHelper in order to run the setup script. So I recommend you either use the blind install for SetupHelper or use the following commands:

wget -qO - https://github.com/kwindrem/SetupHelper/archive/latest.tar.gz | tar -xzf - -C /data
mv /data/SetupHelper-latest /data/SetupHelper
/data/SetupHelper/setup

Then install ShutdownMonitor either from Package Manager menus or from the command lines above.

Where is the video you reference? I need to look at it to see where the problems are.

Please sign in to comment.