From 945868bae9401d1b7f69e66a3e1e3710be584e95 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Mon, 9 Mar 2026 15:14:19 +0100 Subject: [PATCH] move static metadata to json --- pinokio.js | 45 ++------------------------------------------- pinokio.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 43 deletions(-) create mode 100644 pinokio.json diff --git a/pinokio.js b/pinokio.js index f52f116..26df95f 100644 --- a/pinokio.js +++ b/pinokio.js @@ -1,46 +1,5 @@ module.exports = { - version: '3.7', - title: 'FaceFusion 3.5.4', - description: 'Industry leading face manipulation platform', - icon: 'facefusion.png', - menu: require(__dirname + '/menu.js'), - links: - [ - { - title: 'Website', - value: 'https://facefusion.io' - }, - { - title: 'BuyMeACoffee', - value: 'https://buymeacoffee.com/facefusion' - }, - { - title: 'GitHub', - value: 'https://github.com/facefusion/facefusion' - }, - { - title: 'Discord', - value: 'https://join.facefusion.io' - }, - { - title: 'Reddit', - value: 'https://www.reddit.com/r/FaceFusion' - } - ], - posts: - [ - 'https://x.com/henryruhs/status/2006365527732805699', - 'https://x.com/henryruhs/status/1936856829230829729', - 'https://x.com/henryruhs/status/1918628540586570060', - 'https://x.com/henryruhs/status/1886753221785378838', - 'https://x.com/henryruhs/status/1792536713513914663', - 'https://x.com/henryruhs/status/1779901408793207040', - 'https://x.com/henryruhs/status/1779237354705711384', - 'https://x.com/henryruhs/status/1769488758041088372', - 'https://x.com/henryruhs/status/1766049705148973146', - 'https://x.com/henryruhs/status/1759669022100947360', - 'https://x.com/henryruhs/status/1757833820718477533', - 'https://x.com/henryruhs/status/1735422051253420379' - ] + version: '5.0', + menu: require(__dirname + '/menu.js') }; diff --git a/pinokio.json b/pinokio.json new file mode 100644 index 0000000..a0e8156 --- /dev/null +++ b/pinokio.json @@ -0,0 +1,47 @@ +{ + "title": "FaceFusion 3.5.4", + "description": "Industry leading face manipulation platform", + "icon": "facefusion.png", + "links": + [ + { + "title": "Website", + "value": "https://facefusion.io" + }, + { + "title": "BuyMeACoffee", + "value": "https://buymeacoffee.com/facefusion" + }, + { + "title": "GitHub", + "value": "https://github.com/facefusion/facefusion" + }, + { + "title": "Discord", + "value": "https://join.facefusion.io" + }, + { + "title": "Reddit", + "value": "https://www.reddit.com/r/FaceFusion" + } + ], + "plugin": + { + "menu": [] + }, + "posts": + [ + "https://x.com/henryruhs/status/2006365527732805699", + "https://x.com/henryruhs/status/1936856829230829729", + "https://x.com/henryruhs/status/1918628540586570060", + "https://x.com/henryruhs/status/1886753221785378838", + "https://x.com/henryruhs/status/1792536713513914663", + "https://x.com/henryruhs/status/1779901408793207040", + "https://x.com/henryruhs/status/1779237354705711384", + "https://x.com/henryruhs/status/1769488758041088372", + "https://x.com/henryruhs/status/1766049705148973146", + "https://x.com/henryruhs/status/1759669022100947360", + "https://x.com/henryruhs/status/1757833820718477533", + "https://x.com/henryruhs/status/1735422051253420379" + ] +}