Skip to content

Commit f6b6f7a

Browse files
committed
6.2.2 #329
1 parent 1326455 commit f6b6f7a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .use_everywhere import SeedEverywhere, AnythingEverywherePrompts
22

3-
UE_VERSION = "6.2.1"
3+
UE_VERSION = "6.2.2"
44

55
NODE_CLASS_MAPPINGS = { "Seed Everywhere": SeedEverywhere }
66

js/use_everywhere.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ app.registerExtension({
280280
}
281281

282282
app.ue_modified_prompt = async function () {
283-
return await graphAnalyser.graph_to_prompt();
283+
return await graphAnalyser.graph_to_prompt( graphAnalyser.analyse_graph(true, true) );
284284
}
285285

286286
const original_queuePrompt = app.queuePrompt;

js/use_everywhere_settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { settingsCache } from "./use_everywhere_cache.js";
88
export const SETTINGS = [
99
{
1010
id: "Use Everywhere.About",
11-
name: "Version 6.2.1",
11+
name: "Version 6.2.2",
1212
type: () => {return document.createElement('span')},
1313
},
1414
{

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "cg-use-everywhere"
33
description = "A set of nodes that allow data to be 'broadcast' to some or all unconnected inputs. Greatly reduces link spaghetti."
4-
version = "6.2.1"
4+
version = "6.2.2"
55
license = { file = "LICENSE" }
66

77
[project.urls]

0 commit comments

Comments
 (0)