mirror of
https://github.com/facefusion/facefusion-pinokio.git
synced 2026-08-02 02:28:35 +02:00
Bump to 2.1.0
This commit is contained in:
+7
-7
@@ -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
@@ -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
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user