Skip to content

Commit 98f78e9

Browse files
Add some links to the README.
1 parent e94b15c commit 98f78e9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

Diff for: README.md

+4
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ Here are some more advanced examples:
3232

3333
[unCLIP](unclip)
3434

35+
#### The [Node Guide (WIP)](https://blenderneko.github.io/ComfyUI-docs/) documents what each node does.
36+
3537
#### You might also want to check out the: [Frequently Asked Questions](faq)
3638

39+
The [ComfyUI Blog](https://comfyanonymous.github.io/ComfyUI_Blog/) is also a source of various information.
3740

3841
## Other Sources of Examples/Information:
3942

@@ -53,3 +56,4 @@ Here are some places where you can find some:
5356

5457
[https://github.com/WASasquatch/comfyui-plugins](https://github.com/WASasquatch/comfyui-plugins)
5558

59+
[This blog post if you scroll down a bit](https://comfyanonymous.github.io/ComfyUI_Blog/comfyui/update/2023/05/18/ComfyUi-is-4-months-old.html)

Diff for: latent_preview/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ <h3>Drag a .latent file on this page or select it with the input below to previe
6767
let batch_offset = start_offset + data_size*height*width*4*b;
6868

6969
for (let i = 0; i < height * width; ++i) {
70-
let v1 = data_func(dataView, batch_offset + data_size*i, true);
71-
let v2 = data_func(dataView, batch_offset + data_size*i + data_size*height*width, true);
72-
let v3 = data_func(dataView, batch_offset + data_size*i + data_size*height*width*2, true);
73-
let v4 = data_func(dataView, batch_offset + data_size*i + data_size*height*width*3, true);
70+
let v1 = data_func(dataView, batch_offset + data_size*i);
71+
let v2 = data_func(dataView, batch_offset + data_size*i + data_size*height*width);
72+
let v3 = data_func(dataView, batch_offset + data_size*i + data_size*height*width*2);
73+
let v4 = data_func(dataView, batch_offset + data_size*i + data_size*height*width*3);
7474
arr[i* 4 ] = (0.298 * v1 + 0.187 * v2 - 0.158 * v3 - 0.184 *v4 + 1.0) * 127.5;
7575
arr[i* 4 + 1] = (0.207 * v1 + 0.286 * v2 + 0.189 * v3 - 0.271 *v4 + 1.0) * 127.5;
7676
arr[i* 4 + 2] = (0.208 * v1 + 0.173 * v2 + 0.264 * v3 - 0.473 *v4 + 1.0) * 127.5;

0 commit comments

Comments
 (0)