From 6f5e4a00588aefdda7a5a1cfe70935870e7e234a Mon Sep 17 00:00:00 2001 From: Bennett Date: Tue, 22 Sep 2020 20:56:48 +0200 Subject: Unpack recipes and update recipes icons (#292) Co-authored-by: Amine Mouafik --- recipes/monicahq/.gitignore | 1 + recipes/monicahq/README.md | 8 +++++++ recipes/monicahq/icon.png | Bin 0 -> 40294 bytes recipes/monicahq/icon.svg | 52 ++++++++++++++++++++++++++++++++++++++++++ recipes/monicahq/index.js | 2 ++ recipes/monicahq/package.json | 13 +++++++++++ recipes/monicahq/webview.js | 1 + 7 files changed, 77 insertions(+) create mode 100644 recipes/monicahq/.gitignore create mode 100755 recipes/monicahq/README.md create mode 100644 recipes/monicahq/icon.png create mode 100644 recipes/monicahq/icon.svg create mode 100755 recipes/monicahq/index.js create mode 100755 recipes/monicahq/package.json create mode 100755 recipes/monicahq/webview.js (limited to 'recipes/monicahq') diff --git a/recipes/monicahq/.gitignore b/recipes/monicahq/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/recipes/monicahq/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/recipes/monicahq/README.md b/recipes/monicahq/README.md new file mode 100755 index 0000000..d6906b5 --- /dev/null +++ b/recipes/monicahq/README.md @@ -0,0 +1,8 @@ +# Monica HQ for Franz +This is an inofficial Franz recipe for [Monica HQ](https://www.monicahq.com/). + +# Asset License +* The Monica HQ logo is licensed under [AGPL 3](https://github.com/monicahq/monica/blob/master/LICENSE). + +## How to create your own Franz recipes: +* [Read the documentation](https://github.com/meetfranz/plugins) \ No newline at end of file diff --git a/recipes/monicahq/icon.png b/recipes/monicahq/icon.png new file mode 100644 index 0000000..9764780 Binary files /dev/null and b/recipes/monicahq/icon.png differ diff --git a/recipes/monicahq/icon.svg b/recipes/monicahq/icon.svg new file mode 100644 index 0000000..783f617 --- /dev/null +++ b/recipes/monicahq/icon.svg @@ -0,0 +1,52 @@ + +Artboard 3.1 +Created using Figma + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/recipes/monicahq/index.js b/recipes/monicahq/index.js new file mode 100755 index 0000000..46f936f --- /dev/null +++ b/recipes/monicahq/index.js @@ -0,0 +1,2 @@ +// just pass through Franz +module.exports = Franz => Franz; diff --git a/recipes/monicahq/package.json b/recipes/monicahq/package.json new file mode 100755 index 0000000..90e348b --- /dev/null +++ b/recipes/monicahq/package.json @@ -0,0 +1,13 @@ +{ + "id": "monicahq", + "name": "Monica HQ", + "version": "1.0.0", + "description": "Personal CRM. Remember everything about your friends and family.", + "main": "index.js", + "author": "Johannes Becker ", + "license": "MIT", + "repository": "https://github.com/jkbecker/recipe-monica", + "config": { + "hasCustomUrl": true + } +} diff --git a/recipes/monicahq/webview.js b/recipes/monicahq/webview.js new file mode 100755 index 0000000..cc40a46 --- /dev/null +++ b/recipes/monicahq/webview.js @@ -0,0 +1 @@ +module.exports = () => {}; -- cgit v1.2.3-54-g00ecf