branch: elpa/casual
commit bbff3a0d886e3c89def41f45e84df663638c70fb
Merge: 256e4cffa6 429986ab5c
Author: Charles Choi <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #368 from 
kickingvegas/merge-development-to-main-20260123_091346
    
    Merge development to main 20260123_091346
---
 docs/casual.info                      | Bin 153025 -> 153025 bytes
 docs/casual.org                       |   2 +-
 docs/images/casual-eww-screenshot.png | Bin 131453 -> 140961 bytes
 lisp/casual-eww-utils.el              |   1 +
 lisp/casual-eww.el                    |   2 +-
 lisp/casual.el                        |   2 +-
 tests/test-casual-eww-utils.el        |   2 ++
 7 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/docs/casual.info b/docs/casual.info
index 2b2678bd8a..67f0048aef 100644
Binary files a/docs/casual.info and b/docs/casual.info differ
diff --git a/docs/casual.org b/docs/casual.org
index 229f6a1a81..c515787427 100644
--- a/docs/casual.org
+++ b/docs/casual.org
@@ -5,7 +5,7 @@
 #+EMAIL: [email protected]
 #+OPTIONS: ':t toc:t author:t email:t H:4 f:t
 #+LANGUAGE: en
-#+MACRO: version 2.13.0
+#+MACRO: version 2.13.1-rc.1
 #+MACRO: kbd (eval (org-texinfo-kbd-macro $1))
 #+TEXINFO_FILENAME: casual.info
 #+TEXINFO_CLASS: casual
diff --git a/docs/images/casual-eww-screenshot.png 
b/docs/images/casual-eww-screenshot.png
index 4c6b583ca8..b1e92e6913 100644
Binary files a/docs/images/casual-eww-screenshot.png and 
b/docs/images/casual-eww-screenshot.png differ
diff --git a/lisp/casual-eww-utils.el b/lisp/casual-eww-utils.el
index 49babdbcba..f595e20ef6 100644
--- a/lisp/casual-eww-utils.el
+++ b/lisp/casual-eww-utils.el
@@ -35,6 +35,7 @@
     (:forward . '("โ†’" "Forward"))
     (:back . '("โ†" "Back"))
     (:link . '("๐Ÿ”—" "Link"))
+    (:up . '("โ†‘" "Up"))
     (:top . '("โค’" "Top"))
     (:history . '("โ‰ฃ" "History"))
     (:page . '("๐Ÿ“„" "Page"))
diff --git a/lisp/casual-eww.el b/lisp/casual-eww.el
index 6113d85a4d..573f50d8d6 100644
--- a/lisp/casual-eww.el
+++ b/lisp/casual-eww.el
@@ -91,7 +91,7 @@ See Info node `(eww)Top' for more information on it."
       :description (lambda () (casual-eww-unicode-get :forward))
       :transient t)
      ("^" "โ†‘" eww-up-url
-      :description (lambda () (casual-eww-unicode-get :previous))
+      :description (lambda () (casual-eww-unicode-get :up))
       :transient t)
      ("t" "โค’" eww-top-url
       :description (lambda () (casual-eww-unicode-get :top))
diff --git a/lisp/casual.el b/lisp/casual.el
index df4ad05d73..5164f3fc02 100644
--- a/lisp/casual.el
+++ b/lisp/casual.el
@@ -5,7 +5,7 @@
 ;; Author: Charles Choi <[email protected]>
 ;; URL: https://github.com/kickingvegas/casual
 ;; Keywords: tools, wp
-;; Version: 2.13.0
+;; Version: 2.13.1-rc.1
 ;; Package-Requires: ((emacs "29.1") (transient "0.9.0") (csv-mode "1.27"))
 
 ;; This program is free software; you can redistribute it and/or modify
diff --git a/tests/test-casual-eww-utils.el b/tests/test-casual-eww-utils.el
index bcc82be22a..27f0253d10 100644
--- a/tests/test-casual-eww-utils.el
+++ b/tests/test-casual-eww-utils.el
@@ -38,6 +38,7 @@
     (should (string-equal (casual-eww-unicode-get :forward) "Forward"))
     (should (string-equal (casual-eww-unicode-get :back) "Back"))
     (should (string-equal (casual-eww-unicode-get :link) "Link"))
+    (should (string-equal (casual-eww-unicode-get :up) "Up"))
     (should (string-equal (casual-eww-unicode-get :top) "Top"))
     (should (string-equal (casual-eww-unicode-get :history) "History"))
     (should (string-equal (casual-eww-unicode-get :page) "Page"))
@@ -61,6 +62,7 @@
     (should (string-equal (casual-eww-unicode-get :forward) "โ†’"))
     (should (string-equal (casual-eww-unicode-get :back) "โ†"))
     (should (string-equal (casual-eww-unicode-get :link) "๐Ÿ”—"))
+    (should (string-equal (casual-eww-unicode-get :up) "โ†‘"))
     (should (string-equal (casual-eww-unicode-get :top) "โค’"))
     (should (string-equal (casual-eww-unicode-get :history) "โ‰ฃ"))
     (should (string-equal (casual-eww-unicode-get :page) "๐Ÿ“„"))

Reply via email to