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