Skip to content
Merged
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a45a46c
chore: Update log
wzrdx Oct 22, 2025
468836d
Merge branch 'develop' into custom-params
wzrdx Oct 22, 2025
57a48a2
feat: Implement JsonEditor
wzrdx Oct 22, 2025
48457ce
refactor: Extract JSON functionality from key value entries to new Cu…
wzrdx Oct 22, 2025
d16f5f6
style: CustomParametersSection initial layout
wzrdx Oct 22, 2025
630931a
fix: CustomParametersSection error
wzrdx Oct 22, 2025
b77fccb
chore: Validate json schema on blur
wzrdx Oct 22, 2025
933162b
fix: Add missing CodeMirror package, fix CustomParametersSection name…
wzrdx Oct 22, 2025
c1c81a6
fix: Array-level errors for nested variable inputs sections
wzrdx Oct 22, 2025
4b946b4
Merge pull request #21 from Ratio1/custom-params
wzrdx Oct 22, 2025
2bfd692
refactor: Dynamic ENV schema to make all fields optional, format PORT…
wzrdx Oct 22, 2025
f8fe411
chore: Simpler schema for optional URIs
wzrdx Oct 22, 2025
e1e9862
Squashed commit of the following:
wzrdx Oct 23, 2025
fee93f2
fix: Add tunneling label for service deployments
wzrdx Oct 23, 2025
0aa641b
Squashed commit of the following:
wzrdx Oct 23, 2025
e6ccfb1
feat: Display secret values for auto-generate passwords in ServiceInp…
wzrdx Oct 23, 2025
df4f6a6
Squashed commit of the following:
wzrdx Oct 23, 2025
5d26d66
fix: Remove ports from native schema, fix DraftEditFormWrapper defaul…
wzrdx Oct 23, 2025
7d40c00
feat: Edit secondary plugins in job draft
wzrdx Oct 26, 2025
cf69066
refactor: isEditingJob into isEditingRunningJob
wzrdx Oct 26, 2025
1601289
chore: Add TODOs + small UX fixes, fix service inputs
wzrdx Oct 26, 2025
2c507d3
fix: Service deployment tunneling
wzrdx Oct 26, 2025
e96c2bc
feat: Display generic plugins when editing running job
wzrdx Oct 26, 2025
5220d4c
chore: Logging for port mapping
wzrdx Oct 26, 2025
1942c87
fix: PortMapping editing
wzrdx Oct 26, 2025
aca1355
fix: Initialize target nodes correctly in DraftEditFormWrapper
wzrdx Oct 27, 2025
d2249e2
Merge pull request #22 from Ratio1/job-editing
wzrdx Oct 27, 2025
de81416
feat: Allow users to copy & download file volumes
wzrdx Oct 27, 2025
9e1ad7a
feat: Add public profile
wzrdx Oct 27, 2025
1ead811
feat: Add WalletInformation section
wzrdx Oct 27, 2025
71d0c20
chore: Remove NGROK_USE_API
wzrdx Oct 27, 2025
d200513
chore: Public Profile styling & schema changes
wzrdx Oct 27, 2025
e0b74bc
Native jobs plugins refactoring + edit running native jobs (#23)
wzrdx Oct 28, 2025
d12f949
fix: Profile Image uploading UX
wzrdx Oct 29, 2025
c5db29e
feat: Profile Image resizing
wzrdx Oct 29, 2025
1c30ac9
refactor: Profile editing to be able to upload image directly
wzrdx Oct 29, 2025
e08f062
chore: ImageUpload deps
wzrdx Oct 29, 2025
9692127
Styling improvements + Native job editing + Plugins step (#24)
wzrdx Oct 30, 2025
073a81c
Pipeline params (#25)
wzrdx Oct 30, 2025
c1119ae
fix: Enforce chainstore response for native plugins
wzrdx Oct 30, 2025
74f280d
fix: PortMapping append and remove unused code in NativeDeployment
wzrdx Oct 30, 2025
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
238 changes: 236 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"preview": "vite preview"
},
"dependencies": {
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lint": "^6.9.0",
"@heroui/alert": "^2.2.23",
"@heroui/button": "^2.2.23",
"@heroui/checkbox": "^2.3.24",
Expand All @@ -31,6 +34,7 @@
"@hookform/resolvers": "^5.1.1",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.80.6",
"@uiw/react-codemirror": "^4.25.2",
"axios": "^1.9.0",
"clsx": "^2.1.1",
"connectkit": "^1.8.2",
Expand Down
Loading