Releases: alphapapa/org-web-tools
Releases · alphapapa/org-web-tools
v1.3
Changes
Fixes
- Default options to Wget (see #35).
- Finding URL in clipboard on MacOS and Windows. (See #66. Thanks to @askdkc.)
- Org timestamp format when inserting pages. (#54. Thanks to p4v4n for reporting.)
Internal
- Use
plz
HTTP library and make various related optimizations.
Removed
- Internal function
org-web-tools--html-title
. (If your program used this function, it's trivially reimplemented; see source code.)
v1.2
Improvements
- Archiving tools:
- Can use multiple functions to attempt archiving.
- Associated options control retry attempts, delays, and fallbacks to other functions.
- Functions to archive Web pages with
wget
andtar
:- Function
org-web-tools-archive--wget-tar
archives a URL's Web page, including page resources. - Function
org-web-tools-archive--wget-tar-html-only
archives a URL's HTML only.
- Function
- Command
org-web-tools-archive-view
handles bothzip
andtar
archives. - The default settings use
wget
andtar
to archive pages (because thearchive.today
service has not worked reliably with external tools for a long time).
Changes
- Option
org-web-tools-archive-fn
defaults to usingwget
andtar
to archive pages to XZ archives with HTML and page resources. (Thearchive.is
service has not worked reliably with other tools for a long time.)
Fixes
org-web-tools--org-link-for-url
now returns the URL if the HTML page has no title tag. This avoids an error, e.g. when used in an Org capture template.
Compatibility
- Emacs 27.1 or later is now required.
- Updated for Org 9.3's changes to
org-bracket-link-regexp
. (Thanks to Aaron Zeng and Akira Komamura.) - Activate
org-mode
in temporary buffer fororg-web-tools--html-to-org-with-pandoc
. (#56. Thanks to mooseyboots.) - Use
compat
library.