aboutsummaryrefslogtreecommitdiff
path: root/build-aux/build-self.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2023-01-22 01:00:01 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2023-01-22 01:00:15 +0100
commit128c926ffa8528322ddc8c82154efd1ccbf8a001 (patch)
treea91eaf2a46a8c2e5933e5c40457fb0f3e4a49087 /build-aux/build-self.scm
parent8e1cca32b938cef0812ce042c6c2e8bccb326ec7 (diff)
downloadguix-128c926ffa8528322ddc8c82154efd1ccbf8a001.tar.gz
guix-128c926ffa8528322ddc8c82154efd1ccbf8a001.zip
gnu: rsnapshot: Update to 1.4.5.
* gnu/packages/backup.scm (rsnapshot): Update to 1.4.5.
Diffstat (limited to 'build-aux/build-self.scm')
0 files changed, 0 insertions, 0 deletions
s-page) (run-install-failed-page): When (current-clients) is non-empty, call 'send-to-clients' without displaying a choice window. 2020-01-20installer: Disable F12 hot key.Ludovic Courtès Fixes <https://bugs.gnu.org/38562>. Reported by Brice Waegeneire <brice@waegenei.re>. Previously, pressing F12 or shift-F2 in one of those forms would cause it to exit, usually with the default value #t because the caller had not provided a useful hotkey "callback". * gnu/installer/newt/page.scm (run-input-page, run-confirmation-page) (run-listbox-selection-page, run-checkbox-tree-page) (run-file-textbox-page): Pass #:flags FLAG-NOF12 to 'make-form'. 2020-01-20installer: Makes sure the installer proceeds after hitting "Edit".Ludovic Courtès Fixes <https://bugs.gnu.org/39199>. Reported by Jonathan Brielmaier <jonathan.brielmaier@web.de>. * gnu/installer/newt/page.scm (run-file-textbox-page): Move 'loop' to the beginning of the body. Do not call 'loop' from the 'dynamic-wind' exit handler as we would not return the value of the second call to 'loop'. 2020-01-12installer: Add an "Edit" button on the final page.Ludovic Courtès Fixes <https://bugs.gnu.org/36885>. Reported by <lukasbf@tutanota.com>. * gnu/installer/newt/page.scm (edit-file): New procedure. (run-file-textbox-page): Add #:edit-button? and #:editor-locale parameters. Remove 'file-text' and add 'edit-button', and add it to the horizontal stacked grid when EXIT-BUTTON? is true. Wrap body in 'loop'. Handle case where ARGUMENT is EDIT-BUTTON by calling 'loop'. * gnu/installer/newt/final.scm (run-config-display-page): Add #:locale parameter. Pass #:edit-button? and #:editor-locale to 'run-file-textbox-page'. (run-final-page): Pass LOCALE to 'run-config-display-page'.