Update 6.0.0

This commit is contained in:
Cyril 2024-05-01 16:10:07 +02:00
parent bb0b7539a0
commit c8db437b79
63 changed files with 3667 additions and 737 deletions

View file

@ -20,16 +20,52 @@ timeout: 600.0
verbose: true
[gcode_macro GIT_BACKUP_STOP]
[gcode_macro _GIT_STOP]
description: Stop pushing to GitHub until manually resumed
gcode:
RUN_SHELL_COMMAND CMD=Backup_Stop
RESPOND TYPE=command MSG="action:prompt_end"
[gcode_macro _GIT_PAUSE]
description: Stop pushing to GitHub until next reboot or until manually resumed
gcode:
RUN_SHELL_COMMAND CMD=Backup_Pause
RESPOND TYPE=command MSG="action:prompt_end"
[gcode_macro _GIT_RESUME]
description: Resume pushing to GitHub
gcode:
RUN_SHELL_COMMAND CMD=Backup_Resume
RESPOND TYPE=command MSG="action:prompt_end"
[gcode_macro GIT_BACKUP_STOP]
description: Stop pushing to GitHub until manually resumed
gcode:
RESPOND TYPE=command MSG="action:prompt_begin Git Backup"
RESPOND TYPE=command MSG="action:prompt_text Do you want to stop pushing to GitHub until manually resumed?"
RESPOND TYPE=command MSG="action:prompt_footer_button NO|RESPOND TYPE=command MSG="action:prompt_end"|error"
RESPOND TYPE=command MSG="action:prompt_footer_button YES|_GIT_STOP|primary"
RESPOND TYPE=command MSG="action:prompt_show"
[gcode_macro GIT_BACKUP_PAUSE]
description: Stop pushing to GitHub until next reboot or until manually resumed
gcode:
RUN_SHELL_COMMAND CMD=Backup_Pause
RESPOND TYPE=command MSG="action:prompt_begin Git Backup"
RESPOND TYPE=command MSG="action:prompt_text Do you want to stop pushing to GitHub until next reboot or until manually resumed?"
RESPOND TYPE=command MSG="action:prompt_footer_button NO|RESPOND TYPE=command MSG="action:prompt_end"|error"
RESPOND TYPE=command MSG="action:prompt_footer_button YES|_GIT_PAUSE|primary"
RESPOND TYPE=command MSG="action:prompt_show"
[gcode_macro GIT_BACKUP_RESUME]
description: Resume pushing to GitHub
gcode:
RUN_SHELL_COMMAND CMD=Backup_Resume
RESPOND TYPE=command MSG="action:prompt_begin Git Backup"
RESPOND TYPE=command MSG="action:prompt_text Do you want to resume pushing to GitHub?"
RESPOND TYPE=command MSG="action:prompt_footer_button NO|RESPOND TYPE=command MSG="action:prompt_end"|error"
RESPOND TYPE=command MSG="action:prompt_footer_button YES|_GIT_RESUME|primary"
RESPOND TYPE=command MSG="action:prompt_show"