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
+1
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
+13
Original file line number
Diff line number
Diff line change
@@ -173,20 +173,33 @@ This changelog covers all five packages, as they are (for now) updated as a whol
173
173
- Add `store.getResourceAncestry` method, which returns the ancestry of a resource, including the resource itself.
174
174
- Add `resource.title` property, which returns the name of a resource, or the first property that is can be used to name the resource.
175
175
-`store.createSubject` now accepts a `parent` argument, which allows creating nested subjects.
176
+
- Add `store.getServerSupports` to know which features a Server supports
177
+
178
+
### @tomic/react
179
+
180
+
- Add `useServerSupports` hook to see supported features of the server
176
181
177
182
## v0.35.0
178
183
179
184
### @tomic/browser
180
185
186
+
- Let users register using e-mail address, improve sign-up UX.
187
+
- 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.
181
188
- Move static assets around, align build with server and fix PWA #292
182
189
- Add `useChildren` hook and `Store.getChildren` method
183
190
- Add new file preview UI for images, audio, text and PDF files.
184
191
- Add new file preview types to the folder grid view.
185
192
- Fix Dialogue form #308
186
193
- 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