Bump to 2.1.0

This commit is contained in:
henryruhs
2023-12-20 00:40:01 +01:00
parent 8579384868
commit 275c1d6043
3 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -6,26 +6,26 @@ function install(kernel)
{
if (arch === 'arm64')
{
return 'python install.py --onnxruntime coreml-silicon --torch default';
return 'python install.py --onnxruntime coreml-silicon --torch default --skip-venv';
}
return 'python install.py --onnxruntime default --torch default';
return 'python install.py --onnxruntime default --torch default --skip-venv';
}
if ([ 'linux', 'win32' ].includes(platform) && gpu === 'nvidia')
{
return 'python install.py --onnxruntime cuda --torch cuda';
return 'python install.py --onnxruntime cuda --torch cuda --skip-venv';
}
if (gpu === 'amd')
{
if (platform === 'linux')
{
return 'python install.py --onnxruntime directml --torch rocm';
return 'python install.py --onnxruntime rocm --torch rocm --skip-venv';
}
if (platform === 'win32')
{
return 'python install.py --onnxruntime directml --torch cpu';
return 'python install.py --onnxruntime directml --torch cpu --skip-venv';
}
}
return 'python install.py --onnxruntime default --torch cpu';
return 'python install.py --onnxruntime default --torch cpu --skip-venv';
}
module.exports = async kernel =>
@@ -49,7 +49,7 @@ module.exports = async kernel =>
method: 'shell.run',
params:
{
message: 'git clone https://github.com/facefusion/facefusion --branch 2.0.0 --single-branch'
message: 'git clone https://github.com/facefusion/facefusion --branch 2.1.0 --single-branch'
}
},
{
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "facefusion-pinokio",
"description": "Next generation face swapper and enhancer",
"version": "2.0.0",
"version": "2.1.0",
"license": "MIT",
"devDependencies":
{
+1 -1
View File
@@ -1,6 +1,6 @@
module.exports =
{
title: 'FaceFusion 2.0.0',
title: 'FaceFusion 2.1.0',
description: 'Next generation face swapper and enhancer',
icon: 'icon.png',
menu: require(__dirname + '/menu.js')