Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
48ff6c7
chore(release): bump to 0.0.1
jonasstrehle Nov 9, 2025
be91f5f
fix checkout
jonasstrehle Nov 9, 2025
45dab28
fix spacing
jonasstrehle Nov 9, 2025
853f4c3
update datex-core to 0.0.10
benStre Nov 10, 2025
e007c44
View: Block protocol viewer (#27)
jonasstrehle Dec 3, 2025
9c03f5a
feat(comhub): implement ComHub Overview component based on provided J…
anmol-virk Mar 3, 2026
eed453f
feat(comhub): add ComHub Overview component with interface and socket…
anmol-virk Feb 24, 2026
f997908
feat(comhub): refine UI based on review feedback (sorting, arrows, la…
anmol-virk Feb 25, 2026
952370d
refactor(comhub): use Intl.RelativeTimeFormat for i18n-friendly time …
anmol-virk Feb 25, 2026
7818fa9
fix(comhub): resolve lint error by replacing any with explicit socket…
anmol-virk Feb 25, 2026
89ca2ae
style(comhub): balance vertical padding in sockets list container
anmol-virk Feb 25, 2026
6638d56
feat(comhub): distance and time in one line separated by bullet point
anmol-virk Feb 25, 2026
83de8b0
ui: refine ComHubOverview spacing and socket list layout
anmol-virk Feb 27, 2026
a2d8243
feat(comhub): implement endpoint identifier search and hierarchical i…
anmol-virk Mar 2, 2026
9652e07
feat(router): add dedicated /comhub route for ComHubOverview
anmol-virk Mar 3, 2026
b53049b
refactor(router): remove endpoint route until feature is implemented
anmol-virk Mar 3, 2026
eec9809
fix(router): use explicit '/' path for editor route
anmol-virk Mar 3, 2026
3cd1611
refactor(window): remove ComHubOverview integration per review feedback
anmol-virk Mar 3, 2026
ab753ed
feat(comhub): add disconnect button stub behind advanced mode
anmol-virk Mar 3, 2026
c9baed7
feat(endpoint): add endpoint view with fingerprint, interfaces and do…
anmol-virk Mar 4, 2026
316c723
feat(comhub): add endpoint view, wrapper with tabs, and comhub overvi…
anmol-virk Mar 6, 2026
a66f159
feat(endpoint): add endpoint type tags, fingerprint download, and fet…
anmol-virk Mar 11, 2026
fd3fcf0
fix(comhub): remove side effect from filteredEndpoints computed
anmol-virk Mar 11, 2026
63db255
fix(endpoint): add endpoint type tags, fix fingerprint download, clea…
anmol-virk Mar 12, 2026
0fd1fc4
fix(runtime): remove invalid log_level from Runtime.create
anmol-virk Mar 12, 2026
1400700
fix(runtime): restore getPointers mock with proper DIF-like structure
anmol-virk Mar 12, 2026
3c84138
fix(runtime): use DIFValueContainer instead of DIFContainer
anmol-virk Mar 12, 2026
458798c
feat(comhub): wire up getMetadata, reactive sync, disconnect stubs, u…
anmol-virk Mar 9, 2026
b5aecb5
fix(comhub): improve light/dark mode styling for endpoint and interfa…
anmol-virk Mar 9, 2026
beb7bbd
feat(comhub): wire up live runtime metadata, remove mock data, implem…
anmol-virk Mar 11, 2026
86434ce
feat(runtime): connect to example.unyt.land websocket server for dev …
anmol-virk Mar 12, 2026
1e86e26
refactor: replace useComHub composable with Datex.endpoint directly
anmol-virk Mar 12, 2026
f27b93d
fix(comhub): convert known_since from milliseconds to seconds in form…
anmol-virk Mar 12, 2026
255d6f2
fix(comhub): fix heading visibility in light mode
anmol-virk Mar 12, 2026
14f0649
fix(comhub): set max-width on search bar instead of w-1/2
anmol-virk Mar 12, 2026
44a9de4
refactor(comhub): replace tabs with toggle to switch between interfac…
anmol-virk Mar 12, 2026
16f7914
refactor(comhub): split ComHub into shared wrapper with InterfaceList…
anmol-virk Mar 12, 2026
32baff4
fix(comhub): remove console.warn from disconnectInterface
anmol-virk Mar 12, 2026
e9d94b9
fix(runtime): restore original getPointers mock with DIFValueContaine…
anmol-virk Mar 12, 2026
c3d2b36
fix(runtime): remove try/catch from getComHubMetadata, propagate errors
anmol-virk Mar 12, 2026
a34b561
fix(runtime): clean up runtime.ts after merge conflict
anmol-virk Mar 12, 2026
726fe14
fix(comhub): calculate relative time from unix timestamp using Date.n…
anmol-virk Mar 13, 2026
145f294
fix(comhub): simplify disconnectSocket function and remove unused button
jonasstrehle Mar 13, 2026
61c10be
fix(comhub): replace disconnectSocket with removeSocket and update di…
jonasstrehle Mar 13, 2026
746e284
View: Pointer view component (#30)
kha1dx Mar 13, 2026
af765b6
Feat/network inspector (#46)
kha1dx Mar 13, 2026
58b95a2
Feat/editor (V1) (#76)
jonasstrehle Mar 13, 2026
67e77aa
feat(pwa): add PWA manifest, window controls overlay, and offline cac…
anmol-virk Mar 10, 2026
adab8d7
add pwa dev support
jonasstrehle Mar 13, 2026
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
27 changes: 3 additions & 24 deletions .github/workflows/bump-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,34 +42,13 @@ jobs:
npm version "${{ github.event.inputs.bump }}" --no-git-tag-version
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

# - name: Create release branch, commit & push
# run: |
# NEW_VERSION=${{ steps.bump.outputs.version }}
# BRANCH=release/${NEW_VERSION}
# git config user.name "github-actions[bot]"
# git config user.email "github-actions[bot]@users.noreply.github.com"
# git checkout -b "${BRANCH}"
# git add package.json package-lock.json || true
# git commit -m "chore(release): bump to ${NEW_VERSION}" || echo "no changes to commit"
# git push -u origin "${BRANCH}"

# - name: Create draft PR
# uses: peter-evans/create-pull-request@v6
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# branch: release/${{ steps.bump.outputs.version }}
# base: main
# title: 'Release ${{ steps.bump.outputs.version }}'
# body: |
# Automated semver bump to ${{ steps.bump.outputs.version }}.
# draft: true
- name: Create release PR
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'chore(release): bump to ${{ steps.bump.outputs.version }}'
commit-message: 'chore: bump to ${{ steps.bump.outputs.version }}'
branch: release/${{ steps.bump.outputs.version }}
title: 'chore(release): bump to ${{ steps.bump.outputs.version }}'
body: 'Automated release PR for version ${{ steps.bump.outputs.version }}'
title: 'Release: ${{ steps.bump.outputs.version }}'
body: 'Automated release PR for version ${{ steps.bump.outputs.version }} of DATEX Workbench.'
base: main
draft: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ coverage

# Vitest
__screenshots__/
dev-dist/
4 changes: 3 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
"$schema": "https://json.schemastore.org/prettierrc",
"semi": true,
"singleQuote": true,
"printWidth": 100
"printWidth": 100,
"tabWidth": 4,
"plugins": ["prettier-plugin-tailwindcss"]
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0f172a" />
<title>DATEX Workbench</title>
</head>
<body>
Expand Down
Loading
Loading