From da237e38295823c13bd4b1b13cf9f785152bc20f Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 31 Jan 2017 16:31:00 +0100 Subject: [PATCH 1/2] Add octopress detection This can be tested [here](http://gamedataeditor.com/cn/), or [here](http://octopress.org/) or even [here](https://benmmurphy.github.io/). --- src/apps.json | 8 ++++++++ src/icons/octopress.png | Bin 0 -> 400 bytes 2 files changed, 8 insertions(+) create mode 100644 src/icons/octopress.png diff --git a/src/apps.json b/src/apps.json index 4b06a262f..0fd7d5837 100755 --- a/src/apps.json +++ b/src/apps.json @@ -5038,6 +5038,14 @@ "implies": "Laravel", "website": "octobercms.com" }, + "Octopress": { + "cats": [ + 11 + ], + "html": "Powered by Octopress", + "icon": "octopress.png", + "website": "octopress.org" + }, "Odoo": { "cats": [ 1, diff --git a/src/icons/octopress.png b/src/icons/octopress.png new file mode 100644 index 0000000000000000000000000000000000000000..0f25067305947ef363e54c54e41f8db853be0a1e GIT binary patch literal 400 zcmV;B0dM|^P)U;+psTB)v6N@D^%&#R|~kY=he z0hE5F>?!S~q?7^}`&m0MHdxCT191Ks^NsT@A35g$-}hT%;@FrL6A(p_DBh?Ln1CP% uW}(wmiy0H}L}JadRU8X&KXpC-7hnLdE(<&}JL)3<0000 Date: Wed, 1 Feb 2017 10:54:03 +0100 Subject: [PATCH 2/2] Improve a bit the Octopress thingy - Octopress implies Jekyll - Octopress can have a `meta` named "generator" - The `html` section is now moregeneric --- src/apps.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/apps.json b/src/apps.json index 0fd7d5837..3fbbda592 100755 --- a/src/apps.json +++ b/src/apps.json @@ -5040,9 +5040,14 @@ }, "Octopress": { "cats": [ + 1, 11 ], - "html": "Powered by Octopress", + "html": "Powered by ", + "implies": "Jekyll", + "meta": { + "generator": "Octopress" + }, "icon": "octopress.png", "website": "octopress.org" },