Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: skeeto/elfeed
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.4.2
Choose a base ref
...
head repository: skeeto/elfeed
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 23, 2024

  1. elfeed-link-store-link: Use org-link-store-props when Elfeed entry

    `org-store-link-props` is is obsolete since Org-mode 9.3.
    
    This commit use `org-link-store-props` when available, else it use the
    old `org-store-link-props`.
    
    This commit also call the `org-link-store-props` function with the
    `funcall` function instead of `apply` and remove the cl-loop on extra
    properties.
    Sébastien Gendre committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    7a57306 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2024

  1. elfeed-link-store-link: Pre-process specific stored props

    `elfeed-link-store-link` store some more properties when the buffer is
    on mode `elfeed-link-store-link`.
    
    These properties are pre-processed, as required by
    `org-link-store-props`.
    
    The new properties are:
    - `title`              : Feed entry title
    - `external-link`      : Feed entry external link
    - `date`               : Date time of the feed entry publication, in
                             full ISO 8601 format
    - `authors`            : List of feed entry authors names, joint by a
                             comma
    - `tags`               : List of feed entry tags, in Org-mode tags
                             format
    - `content`            : Content of the feed entry
    - `feed-title`         : Title of the feed
    - `feed-external-link` : Feed external link
    - `feed-authors`       : List of feed authors names, joint by a comma
    
    If `content` type is HTML, it is automatically embedded into an
    Org-mode HTML quote.
    Sébastien Gendre authored and skeeto committed Dec 2, 2024
    Configuration menu
    Copy the full SHA
    09e393b View commit details
    Browse the repository at this point in the history
  2. Update documentation: Org-store-link and Org-capture

    Document the compatibility of Elfeed and `org-store-link` and
    `org-capture`.
    
    List properties accessible from Org-capture template.
    Sébastien Gendre authored and skeeto committed Dec 2, 2024
    Configuration menu
    Copy the full SHA
    ee9e23d View commit details
    Browse the repository at this point in the history
  3. elfeed-link-store-link: Update doc and docstring about date timestamp

    `org-link-store-props`, when we store a date property, automatically
    generate a 2 new properties:
    - `date-timestamp`          : The date and time in Org-mode active timestamp
                                  format
    - `date-inactive-timestamp` : The date and time in Org-mode inactive
                                  timestamp format
    Sébastien Gendre authored and skeeto committed Dec 2, 2024
    Configuration menu
    Copy the full SHA
    a39fb78 View commit details
    Browse the repository at this point in the history
Loading