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: CONTRIBUTE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Clone the repo and run `cargo run` from each folder (e.g. `cli` or `server`).
47
47
- Go to `browser` and run `pnpm dev` to start the browsre
48
48
- Visit your `localhost` in your locally running `atomic-data-browser` instance: (e.g. `http://localhost:8080/app/show?subject=http%3A%2F%2Flocalhost`)
49
49
- use `cargo watch -- cargo run --bin atomic-server -- --env-file server/.env` to automatically recompile `atomic-server` when you update code or JS assets.
50
-
- If you want to debug emails: `brew install mailhog` => `mailhog` => `http://localhost:8025`
50
+
- 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
@@ -19,20 +19,33 @@ This changelog covers all three packages, as they are (for now) updated as a who
19
19
- Add `store.getResourceAncestry` method, which returns the ancestry of a resource, including the resource itself.
20
20
- Add `resource.title` property, which returns the name of a resource, or the first property that is can be used to name the resource.
21
21
-`store.createSubject` now accepts a `parent` argument, which allows creating nested subjects.
22
+
- Add `store.getServerSupports` to know which features a Server supports
23
+
24
+
### @tomic/react
25
+
26
+
- Add `useServerSupports` hook to see supported features of the server
22
27
23
28
## v0.35.0
24
29
25
30
### @tomic/browser
26
31
32
+
- Let users register using e-mail address, improve sign-up UX.
33
+
- 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.
27
34
- Move static assets around, align build with server and fix PWA #292
28
35
- Add `useChildren` hook and `Store.getChildren` method
29
36
- Add new file preview UI for images, audio, text and PDF files.
30
37
- Add new file preview types to the folder grid view.
31
38
- Fix Dialogue form #308
32
39
- 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