This commit is contained in:
root 2024-08-20 22:37:11 +02:00
parent 9ac44b2a4f
commit 53735ffd66
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ setuptools.setup(
long_description_content_type="text/markdown",
url="https://git.kmpr.at/kamp/IOPaint",
packages=setuptools.find_packages("."),
package_data={"imagesorter-inpaint": package_files},
package_data={"inpaint": package_files},
install_requires=load_requirements(),
python_requires=">=3.7",
entry_points={"console_scripts": ["imagesorter-inpaint=inpaint:entry_point"]},

View File

@ -545,7 +545,7 @@ export default function Editor(props: EditorProps) {
}
// TODO: download to output directory
const name = file.name.replace(/(\.[\w\d_-]+)$/i, "_cleanup$1")
const name = file.name.replace(/(\.[\w\d_-]+)$/i, "_inpaint$1")
const curRender = renders[renders.length - 1]
downloadImage(curRender.currentSrc, name)
if (settings.enableDownloadMask) {