You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sh...@apache.org on 2021/07/18 22:38:43 UTC

[apisix-website] branch master updated: feat: apisix-go-plugin-runner download block added (#416)

This is an automated email from the ASF dual-hosted git repository.

shuyangw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git


The following commit(s) were added to refs/heads/master by this push:
     new acdf9b7  feat: apisix-go-plugin-runner download block added (#416)
acdf9b7 is described below

commit acdf9b70ce055d4ca4569456494ef07703e78cc6
Author: Ayush das <ay...@gmail.com>
AuthorDate: Mon Jul 19 04:08:33 2021 +0530

    feat: apisix-go-plugin-runner download block added (#416)
---
 website/docusaurus.config.js               | 13 +++++++++++++
 website/src/pages/downloads/ProjectCard.js |  5 ++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index d9a6b2a..0739f52 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -148,6 +148,19 @@ module.exports = {
         releaseDate: "2021-06-23",
         firstDocPath: "/development",
       },
+      {
+        name: "APISIX™ Go Plugin Runner",
+        nameInParamCase: "go-plugin-runner",
+        description: "Runs Apache APISIX plugins written in Go. Implemented as a sidecar that accompanies Apache APISIX.",
+        shape: "octagon",
+        color: "#3B14A7",
+        githubRepo: "apache/apisix-go-plugin-runner",
+        githubBranch: "master",
+        downloadPath: "apisix/go-plugin-runner/0.1.0/apisix-go-plugin-runner-0.1.0-src",
+        version: "0.1.0",
+        releaseDate: "2021-07-6",
+        firstDocPath: "/getting-started",
+      }
     ],
 
     team: require("./static/data/team.json"),
diff --git a/website/src/pages/downloads/ProjectCard.js b/website/src/pages/downloads/ProjectCard.js
index 7409a18..3f7c192 100644
--- a/website/src/pages/downloads/ProjectCard.js
+++ b/website/src/pages/downloads/ProjectCard.js
@@ -10,6 +10,7 @@ import IconTriangle from "../../assets/icons/triangle.svg";
 import IconSquare from "../../assets/icons/square.svg";
 import IconHexagon from "../../assets/icons/hexagon.svg";
 import IconStarSolid from "../../assets/icons/star-solid.svg";
+import IconOctagon from "../../assets/icons/octagon.svg";
 
 const Dropdown = (props) => {
   const ref = useRef();
@@ -51,8 +52,10 @@ const ProjectCard = (props) => {
       <IconSquare />
     ) : shape === "hexagon" ? (
       <IconHexagon />
-    ) : (
+    ) : shape === "star" ? (
       <IconStarSolid />
+    ) : (
+      <IconOctagon />
     );
 
   useEffect(() => {