File tree Expand file tree Collapse file tree 4 files changed +29
-6
lines changed
Expand file tree Collapse file tree 4 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 1+ # v2.1.0, 2022-09-13
2+
3+ ### Features
4+
5+ * ** core** Updated code base for new Flextype 1.0.0-alpha.2
6+
17# v2.0.0, 2022-07-11
28
39### Features
Original file line number Diff line number Diff line change 11<h1 align =" center " >Feed Plugin for <a href =" https://awilum.github.io/flextype " >Flextype</a ></h1 >
22
33<p align =" center " >
4- <img src =" https://img.shields.io/badge/license-MIT-blue.svg?label=License " alt =" License MIT " > <img alt =" GitHub Repo stars " src =" https://img.shields.io/github/stars/flextype-plugins/feed?label=Stars " > <img alt =" GitHub forks " src =" https://img.shields.io/github/forks/flextype-plugins/feed?label=Forks " > <a href =" https://hitsofcode.com " ><img alt =" Hits of Code " src =" https://hitsofcode.com/github/flextype-plugins/feed?branch=2.x " ></a > < a href = " https://discord.gg/ewQkqgfBAc " >< img src = " https://img.shields.io/discord/423097982498635778.svg?logo=discord&label=Discord%20Chat " alt = " Discord " ></ a >
4+ <img src =" https://img.shields.io/badge/license-MIT-blue.svg?label=License " alt =" License MIT " > <img alt =" GitHub Repo stars " src =" https://img.shields.io/github/stars/flextype-plugins/feed?label=Stars " > <img alt =" GitHub forks " src =" https://img.shields.io/github/forks/flextype-plugins/feed?label=Forks " > <a href =" https://hitsofcode.com " ><img alt =" Hits of Code " src =" https://hitsofcode.com/github/flextype-plugins/feed?branch=2.x " ></a >
55</p >
66
77Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries.
@@ -12,8 +12,8 @@ The following dependencies need to be downloaded and installed for Feed Plugin.
1212
1313| Item | Version | Download |
1414| ---| ---| ---|
15- | [ flextype] ( https://github.com/flextype/flextype ) | ^1.0.0-alpha.1 | [ download] ( https://github.com/flextype/flextype/releases ) |
16- | [ twig] ( https://github.com/flextype-plugins/twig ) | ^3.0 .0 | [ download] ( https://github.com/flextype-plugins/twig/releases ) |
15+ | [ flextype] ( https://github.com/flextype/flextype ) | ^1.0.0-alpha.2 | [ download] ( https://github.com/flextype/flextype/releases ) |
16+ | [ twig] ( https://github.com/flextype-plugins/twig ) | ^3.1 .0 | [ download] ( https://github.com/flextype-plugins/twig/releases ) |
1717
1818## Installation
1919
Original file line number Diff line number Diff line change 11name : Feed
2- version : 2.0 .0
2+ version : 2.1 .0
33description : Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries.
44author :
55 name : Sergey Romanenko
@@ -16,5 +16,5 @@ category: seo
1616license : MIT
1717
1818dependencies :
19- flextype : " ^1.0.0-alpha.1 "
20- twig : " ^3.0 .0"
19+ flextype : " ^1.0.0-alpha.2 "
20+ twig : " ^3.1 .0"
Original file line number Diff line number Diff line change 1+ # Release build script for Feed Plugin
2+ # Copyright (c) Sergey Romanenko
3+ # usage: bash release.sh [version]
4+
5+ name=" feed" ;
6+ version=" $1 " ;
7+ curl " https://github.com/flextype-plugins/$name /archive/refs/tags/v$version .zip" -L -O;
8+ unzip " v$version .zip" ;
9+ rm " v$version .zip" ;
10+ cd " $name -$version " ;
11+ composer install --no-dev;
12+ rm -rf __MACOSX;
13+ find . -name ' .DS_Store' -type f -delete;
14+ zip -r " $name -$version .zip" . ;
15+ cd ../;
16+ mv " $name -$version /$name -$version .zip" . ;
17+ rm -r " $name -$version /" ;
You can’t perform that action at this time.
0 commit comments