jekyll-atom-feed 0.18.0 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2856d0204ad301147c97c8d41ebf461083782c7157fa64ee060cbf1e037d2133
4
- data.tar.gz: 8a891b3f82b36ce614360fb44fa2cb0080474fc3c80a78016c76e80026428c00
3
+ metadata.gz: d313605363384b03c253bb2a4d7cb6ba66b8a8fd420c75929253fe598083744b
4
+ data.tar.gz: 63ae3562408148afb733f8003428984ddb1ef33a054bd8f1c4f35e0fb72080d8
5
5
  SHA512:
6
- metadata.gz: c1d64a6aef3d8e06fecd61f056bc33084a198de42d71ad6dae88f70416cb091e19aedbb0db09c8bacbc865d61e25157d4181f12c01f49a4e48fa32ec35e2496e
7
- data.tar.gz: 68fc9c2df214ad48c11eef52c2b55ba513d19a3eae913862e3cbb6c0a8b87bb99a4d0315445a41e3747a2ee6080b01ff0d5ad5a875652c4fd96b8971faf97964
6
+ metadata.gz: f0cdd9e8c65079dcddbb75a43acd3487ddf4b46ad977fe863554513418d6ae16847a4fb040e4c890824c92484b30ddbe3509de5269624539a3da9a9f56704d54
7
+ data.tar.gz: 895567347c0253ba95afec511230c03e176d9c68fdefc7e794d60445abf70ff42ee7381ac83902d6bf164b7cc1b1a46650665fa050f9c2f9565564ff77a0866a
data/History.markdown CHANGED
@@ -1,6 +1,14 @@
1
1
  ## HEAD
2
2
 
3
- ## 0.18.0 / 2023-09-17
3
+ ## 0.19.0 / 2023-09-13
4
+
5
+ ### Minor Enhancements
6
+
7
+ * Remove Webfeeds as they dont even use it for their blog feed
8
+
9
+ ## 0.18.0 / 2023-09-07
10
+
11
+ ### Minor Enhancements
4
12
 
5
13
  * Integrate Webfeeds for better Feedly integration
6
14
  * Provide a template configuration option to overwrite feed.xml template
data/README.md CHANGED
@@ -34,17 +34,6 @@ The plugin will automatically use any of the following configuration variables,
34
34
  * `url` - The URL to your site, e.g., `https://example.com`. If none is provided, the plugin will try to use `site.github.url`.
35
35
  * `author` - Global author information (see below)
36
36
 
37
- If you want to enrich your feed for [Feedly](https://feedly.com), create the following object with any of these optional values:
38
- ```yml
39
- webfeeds:
40
- icon: # path to a 96x96 favicon
41
- logo: # path to a 30px height svg
42
- cover: # path to a large 16:9 banner image
43
- accent_color: # hex colour without the hash
44
- related: # true = show other stories from your feed under yours
45
- analytics: # Google Analytics UA-x tracking ID
46
- ```
47
-
48
37
  ### Already have a feed path?
49
38
 
50
39
  Do you already have an existing feed someplace other than `/feed.xml`, but are on a host like GitHub Pages that doesn't support machine-friendly redirects? If you simply swap out `jekyll-atom-feed` for your existing template, your existing subscribers won't continue to get updates. Instead, you can specify a non-default path via your site's config.
@@ -2,7 +2,7 @@
2
2
  {% if page.xsl %}
3
3
  <?xml-stylesheet type="text/xml" href="{{ '/feed.xslt.xml' | absolute_url }}"?>
4
4
  {% endif %}
5
- <feed xmlns="http://www.w3.org/2005/Atom" {% if site.webfeeds %} xmlns:webfeeds="http://webfeeds.org/rss/1.0"{% endif %} {% if site.lang %}xml:lang="{{ site.lang }}"{% endif %}>
5
+ <feed xmlns="http://www.w3.org/2005/Atom" {% if site.lang %}xml:lang="{{ site.lang }}"{% endif %}>
6
6
  <generator uri="https://jekyllrb.com/" version="{{ jekyll.version }}">Jekyll</generator>
7
7
  <link href="{{ page.url | absolute_url }}" rel="self" type="application/atom+xml" />
8
8
  <link href="{{ '/' | absolute_url }}" rel="alternate" type="text/html" {% if site.lang %}hreflang="{{ site.lang }}" {% endif %}/>
@@ -39,15 +39,6 @@
39
39
  </author>
40
40
  {% endif %}
41
41
 
42
- {% if site.webfeeds %}
43
- {% if site.webfeeds.icon %}<webfeeds:icon>{{ site.webfeeds.icon }}</webfeeds:icon>{% endif %}
44
- {% if site.webfeeds.logo %}<webfeeds:logo>{{ site.webfeeds.logo }}</webfeeds:logo>{% endif %}
45
- {% if site.webfeeds.cover %}<webfeeds:cover>{{ site.webfeeds.cover }}</webfeeds:cover>{% endif %}
46
- {% if site.webfeeds.accent_color %}<webfeeds:accentColor>{{ site.webfeeds.accent_color }}</webfeeds:accentColor>{% endif %}
47
- {% if site.webfeeds.related %}<webfeeds:related layout="card" target="browser"/>{% endif %}
48
- {% if site.webfeeds.analytics %}<webfeeds:analytics id="{{ site.webfeeds.analytics }}" engine="GoogleAnalytics" />{% endif %}
49
- {% endif %}
50
-
51
42
  {% if page.tags %}
52
43
  {% assign posts = site.tags[page.tags] %}
53
44
  {% else %}
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Feed
5
- VERSION = "0.18.0"
5
+ VERSION = "0.19.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-atom-feed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jaime Bautista
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-07 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll