Skip to content

Commit 35371d3

Browse files
committed
chore(release): 0.12.0
1 parent 7725719 commit 35371d3

File tree

9 files changed

+41
-10
lines changed

9 files changed

+41
-10
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## [0.12.0](https://github.com/ssube/onnx-web/compare/v0.11.0...v0.12.0) (2023-12-31)
6+
7+
8+
### Features
9+
10+
* add API parameter for upscale checkbox ([71fbc87](https://github.com/ssube/onnx-web/commit/71fbc871a641c266247ab6aa45c68bb33bf76b54))
11+
* **api:** add optimization flag to ORT extended optimizations ([e8a30ae](https://github.com/ssube/onnx-web/commit/e8a30ae56b67e184f2ad456fa229991f18373ba9))
12+
* **api:** add stage for local standard deviation denoising for XL ([f28fdda](https://github.com/ssube/onnx-web/commit/f28fdda47a7a318c109af6b9a7ae1df4a7fcfeb3))
13+
* **api:** enable 1x upscaling models ([7abe6dc](https://github.com/ssube/onnx-web/commit/7abe6dc6a9e89dc3fbddca7fd43b0fcb6a0e7fea))
14+
* **api:** support both ESRGAN variants ([0ddc162](https://github.com/ssube/onnx-web/commit/0ddc16288ffe4ff0269e591944538fe002c9a89b))
15+
* **api:** support more RealESRGAN-based models ([9588643](https://github.com/ssube/onnx-web/commit/95886430a4b41c47ff17cf9eab78c01317b02097))
16+
* **api:** use wrapped model's input types in UNet patch ([80a2553](https://github.com/ssube/onnx-web/commit/80a255397eb76a48b325706212472c1ed7e807c2))
17+
18+
19+
### Bug Fixes
20+
21+
* **api:** make sure ControlNet constructor is used for same pipeline ([#449](https://github.com/ssube/onnx-web/issues/449)) ([00db9a2](https://github.com/ssube/onnx-web/commit/00db9a278721425c750d39f3c7e90871f38f4fda))
22+
* **api:** make sure upscaling only runs once regardless of correction options ([c6718a3](https://github.com/ssube/onnx-web/commit/c6718a3e3b2e15c29b5d22b5d1101da2930c08cb))
23+
* **api:** make version-safe imports compatible with tests ([6a00481](https://github.com/ssube/onnx-web/commit/6a004816afff0a0ce7269307638e4ac066388824))
24+
* **api:** reduce min VAE tile size to match min height/width ([6d2d505](https://github.com/ssube/onnx-web/commit/6d2d5058d92ea4c21d389a4d9307506af8aa0d97))
25+
* **api:** turn off SDXL's very visible watermarking ([#438](https://github.com/ssube/onnx-web/issues/438)) ([9736779](https://github.com/ssube/onnx-web/commit/973677967d4050ff31cfc0ae5080f85c837ceed8))
26+
* **api:** use correct part of the gfpgan output ([de8ab6f](https://github.com/ssube/onnx-web/commit/de8ab6f1c933242207daee119f6ff1ac8cda4845))
27+
* **api:** use standard op block list for SDXL ([006f983](https://github.com/ssube/onnx-web/commit/006f9832691d38321d1cb8351b3269e3a8498d05))
28+
* **build:** use python image for pip release job ([7725719](https://github.com/ssube/onnx-web/commit/77257199816fa5903e7f178555bffd1defdb6afd))
29+
* **docs:** add more info about testing models and running server ([#451](https://github.com/ssube/onnx-web/issues/451)) ([9c3ff75](https://github.com/ssube/onnx-web/commit/9c3ff75a64706079ac6f147e7ab7f3dda790eb85))
30+
* **docs:** remove old tile size section ([fab3ac6](https://github.com/ssube/onnx-web/commit/fab3ac68c2214f2cf0764fa787f62a622556476c))
31+
* download LoRAs and other networks by default ([a5ecb59](https://github.com/ssube/onnx-web/commit/a5ecb59cd97fb3f4e7725e3f6ff99da024786559))
32+
* **exe:** correct path for gfpgan folders within bundle ([d3a3f95](https://github.com/ssube/onnx-web/commit/d3a3f95c506cd5d0a62c6a6fb85988d3013dbfbd))
33+
* **gui:** add missing params to client-side config ([1d373fa](https://github.com/ssube/onnx-web/commit/1d373faf5d19723f342ea79564e4b1e3ce6a6ba4))
34+
* **gui:** sync client and server default params ([b93a5da](https://github.com/ssube/onnx-web/commit/b93a5da19077b926045f367d18795d035555e80d))
35+
536
## [0.11.0](https://github.com/ssube/onnx-web/compare/v0.10.0...v0.11.0) (2023-12-24)
637

738

api/launch.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ python -m onnx_web.convert `
1313

1414
if (!(Test-Path -path .\gui\index.html -PathType Leaf)) {
1515
echo "Downloading latest web UI files from Github..."
16-
Invoke-WebRequest "https://raw.githubusercontent.com/ssube/onnx-web/gh-pages/v0.11.0/index.html" -OutFile .\gui\index.html
17-
Invoke-WebRequest "https://raw.githubusercontent.com/ssube/onnx-web/gh-pages/v0.11.0/config.json" -OutFile .\gui\config.json
18-
Invoke-WebRequest "https://raw.githubusercontent.com/ssube/onnx-web/gh-pages/v0.11.0/bundle/main.js" -OutFile .\gui\bundle\main.js
16+
Invoke-WebRequest "https://raw.githubusercontent.com/ssube/onnx-web/gh-pages/v0.12.0/index.html" -OutFile .\gui\index.html
17+
Invoke-WebRequest "https://raw.githubusercontent.com/ssube/onnx-web/gh-pages/v0.12.0/config.json" -OutFile .\gui\config.json
18+
Invoke-WebRequest "https://raw.githubusercontent.com/ssube/onnx-web/gh-pages/v0.12.0/bundle/main.js" -OutFile .\gui\bundle\main.js
1919
}
2020

2121
echo "Launching API server..."

api/onnx_web/server/context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
DEFAULT_CACHE_LIMIT = 5
1515
DEFAULT_JOB_LIMIT = 10
1616
DEFAULT_IMAGE_FORMAT = "png"
17-
DEFAULT_SERVER_VERSION = "v0.11.0"
17+
DEFAULT_SERVER_VERSION = "v0.12.0"
1818
DEFAULT_SHOW_PROGRESS = True
1919
DEFAULT_WORKER_RETRIES = 3
2020

api/params.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.11.0",
2+
"version": "0.12.0",
33
"batch": {
44
"default": 1,
55
"min": 1,

api/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="onnx-web",
8-
version="0.11.0",
8+
version="0.12.0",
99
author="ssube",
1010
author_email="[email protected]",
1111
description="web UI for running ONNX models",

docs/server-admin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ To update the server, make sure you are on the `main` branch and pull the latest
105105
> git pull
106106
```
107107

108-
If you want to run a specific tag of the server, run `git checkout v0.11.0` with the desired tag.
108+
If you want to run a specific tag of the server, run `git checkout v0.12.0` with the desired tag.
109109

110110
### Building the client
111111

exe/build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ copy ..\api\params.json .\dist\params.json /y
2121

2222
REM set version number
2323
set BUNDLE_TYPE=rc
24-
set BUNDLE_VERSION=0.11.0
24+
set BUNDLE_VERSION=0.12.0
2525

2626
REM get commit info
2727
git rev-parse HEAD > commit.txt

gui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apextoaster/onnx-web",
3-
"version": "0.11.0",
3+
"version": "0.12.0",
44
"description": "onnx web gui",
55
"type": "module",
66
"main": "out/src/main.js",

gui/src/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"root": "http://127.0.0.1:5000"
44
},
55
"params": {
6-
"version": "0.11.0",
6+
"version": "0.12.0",
77
"batch": {
88
"default": 1,
99
"min": 1,

0 commit comments

Comments
 (0)