You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,7 @@ TL;DR Clone the repo and run `cargo run` from each folder (e.g. `cli` or `server
50
50
- Visit your `localhost` in your locally running `atomic-data-browser` instance: (e.g. `http://localhost:5173/app/show?subject=http%3A%2F%2Flocalhost`)
51
51
- use `cargo watch -- cargo run` to automatically recompile `atomic-server` when you update JS assets in `browser`
52
52
- use `cargo watch -- cargo run --bin atomic-server -- --env-file server/.env` to automatically recompile `atomic-server` when you update code or JS assets.
53
+
- If you want to debug emails: `brew install mailhog` => `mailhog` => `http://localhost:8025` and add `ATOMIC_SMTP_HOST=localhost``ATOMIC_SMTP_PORT=1025` to your `.env`.
Copy file name to clipboardExpand all lines: browser/CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,20 +174,33 @@ This changelog covers all five packages, as they are (for now) updated as a whol
174
174
- Add `store.getResourceAncestry` method, which returns the ancestry of a resource, including the resource itself.
175
175
- Add `resource.title` property, which returns the name of a resource, or the first property that is can be used to name the resource.
176
176
-`store.createSubject` now accepts a `parent` argument, which allows creating nested subjects.
177
+
- Add `store.getServerSupports` to know which features a Server supports
178
+
179
+
### @tomic/react
180
+
181
+
- Add `useServerSupports` hook to see supported features of the server
177
182
178
183
## v0.35.0
179
184
180
185
### @tomic/browser
181
186
187
+
- Let users register using e-mail address, improve sign-up UX.
188
+
- Add `Store.parseMetaTags` to load JSON-AD objects stored in the DOM. Speeds up initial page load by allowing server to set JSON-AD objects in the initial HTML response.
182
189
- Move static assets around, align build with server and fix PWA #292
183
190
- Add `useChildren` hook and `Store.getChildren` method
184
191
- Add new file preview UI for images, audio, text and PDF files.
185
192
- Add new file preview types to the folder grid view.
186
193
- Fix Dialogue form #308
187
194
- Refactor search, escape query strings for Tantivy
- Add `store.preloadClassesAndProperties` and remove `urls.properties.getAll` and `urls.classes.getAll`. This enables using `atomic-data-browser` without relying on `atomicdata.dev` being available.
0 commit comments