Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Gallery to Workstation #484

Open
wants to merge 55 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
191858b
update
rayrayraykk Aug 17, 2024
77fae11
update
rayrayraykk Aug 17, 2024
b055bcb
fix
rayrayraykk Aug 19, 2024
b3a7c5a
fix minor
rayrayraykk Aug 19, 2024
ec7dc43
fix
rayrayraykk Aug 19, 2024
54063b9
remove extra print
rayrayraykk Aug 19, 2024
3c66bd1
Merge remote-tracking branch 'upstream/main' into fix_inj
rayrayraykk Aug 19, 2024
df3d38c
fix
rayrayraykk Aug 20, 2024
d54d178
support wanx (#12)
qbc2016 Aug 20, 2024
6f3184c
Weirui gallery patches1 (#13)
rayrayraykk Sep 3, 2024
6cb7b31
fix compile(#17)
rayrayraykk Sep 3, 2024
0d6a728
support meme (#20)
rayrayraykk Sep 6, 2024
d749828
add text to audio (#14)
zhijianma Sep 6, 2024
6fc2ec8
Refine guide logout v0 (#25)
rabZhang Sep 6, 2024
2287365
fix: remove image_urls in gallery and multi-input for temp (#27)
zhijianma Sep 9, 2024
f2a609e
Background remover (#22)
qbc2016 Sep 11, 2024
d3186c4
Nologin (#30)
rayrayraykk Sep 11, 2024
3e709eb
Remove multi input check and support multi input for agent node (#29)
qbc2016 Sep 11, 2024
68d9892
agentscopt translate_v0 (#32)
rabZhang Oct 14, 2024
e19267d
gallery_refine_style (#34)
myh-0521 Oct 14, 2024
7c10044
Weirui patches1014 (#37)
rayrayraykk Oct 14, 2024
e37f00e
fix translation (#38)
rayrayraykk Oct 14, 2024
79effa6
add input and output hover effects using css (#39)
zhijianma Oct 18, 2024
1332b1a
Gallery refine load return (#41)
myh-0521 Oct 21, 2024
af3e3b2
make guest button not seen (#42)
rayrayraykk Oct 21, 2024
df3a5b6
Feat/code (#28)
zhijianma Oct 22, 2024
37b2414
fixBug:通过config导入工作流之后,input输入框不支持放大缩小,以及拖拽group节点的时候,内部节点会一直上升 (#43)
rabZhang Oct 25, 2024
0bb6ce3
linter (#44)
rayrayraykk Oct 25, 2024
6d948b8
MERGING
rayrayraykk Oct 28, 2024
8c99a95
fix conflicts
rayrayraykk Oct 28, 2024
9cb6402
Dev broadcast agent (#33)
qbc2016 Oct 29, 2024
b8b046d
Merge pull request #46 from rayrayraykk/weirui_merge_upstream
qbc2016 Oct 29, 2024
46da886
Add image synthesis as a tool (#48)
qbc2016 Oct 30, 2024
8e676ad
bugfix导入html的时候边未处于正确位置 (#49)
rabZhang Oct 30, 2024
36f79d0
Re act agent add service (#51)
rabZhang Nov 11, 2024
2079c5e
hotfix switchpipelinenode(#52)
rayrayraykk Nov 11, 2024
004cc14
merge
rayrayraykk Nov 11, 2024
a9fdc19
Merge pull request #53 from rayrayraykk/weirui_hotfix1111v4
rayrayraykk Nov 11, 2024
469f825
remove dall-e and wanx model
qbc2016 Nov 11, 2024
bfacec6
remvoe wanx node for demos in gallery
qbc2016 Nov 11, 2024
0773e33
Disabled user input when not users turn in gradio (#56)
rayrayraykk Nov 11, 2024
161750b
Workstation gallery (#50)
myh-0521 Nov 11, 2024
eef62b5
Merge remote-tracking branch 'as_origin/main' into dev_remove_wanx
qbc2016 Nov 11, 2024
49353d4
Merge pull request #55 from qbc2016/dev_remove_wanx
rayrayraykk Nov 11, 2024
e3b6a23
update (#57)
rayrayraykk Nov 11, 2024
98f147d
update (#58)
rayrayraykk Nov 11, 2024
8b9cd2f
hitfix
qbc2016 Nov 11, 2024
e32c152
Merge pull request #59 from qbc2016/dev_msg_fix
rayrayraykk Nov 11, 2024
089dadb
update (#60)
rayrayraykk Nov 11, 2024
b078f03
i18n for login page (#61)
rayrayraykk Nov 12, 2024
6c1674b
update (#64)
rayrayraykk Nov 12, 2024
19b168a
Fix W/H Workstation gallery (#63)
myh-0521 Nov 12, 2024
a72c4cd
Add __call__ for imagesynthesisnode (#67)
qbc2016 Nov 15, 2024
c3048a8
Automated build workflow PR (#81)
rayrayraykk Dec 3, 2024
a50eeba
Weirui dev1203 (#83)
rayrayraykk Dec 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"env": {
"browser": true,
"es2021": true
},
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "double"],
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"brace-style": ["error", "1tbs"],
"curly": ["error", "all"],
"no-eval": ["error"],
"prefer-const": ["error"],
"arrow-spacing": ["error", { "before": true, "after": true }]
}
}
16 changes: 16 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,23 @@ repos:
--disable=W0632,
--disable=W0123,
--disable=C3001,
--disable=W0201,
--disable=C0302,
]
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v7.32.0
hooks:
- id: eslint
files: \.(js|jsx)$
exclude: '.*js_third_party.*'
args: ['--fix']
- repo: https://github.com/thibaudcolas/pre-commit-stylelint
rev: v14.4.0
hooks:
- id: stylelint
files: \.(css|scss|sass|less)$
exclude: '.*css_third_party.*'
args: ['--fix']
- repo: https://github.com/regebro/pyroma
rev: "4.0"
hooks:
Expand Down
6 changes: 6 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rules": {
"indentation": 2,
"string-quotes": "single"
}
}
4 changes: 2 additions & 2 deletions docs/sphinx_doc/en/source/_static/custom.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.language-selector a {
color: white;
width: 20px;
color: white;
width: 20px;
}
4 changes: 2 additions & 2 deletions docs/sphinx_doc/zh_CN/source/_static/custom.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.language-selector a {
color: white;
width: 20px;
color: white;
width: 20px;
}
Loading
Loading