summaryrefslogtreecommitdiff
path: root/ui/routes/(app)
Commit message (Collapse)AuthorAge
...
| * Merge branch 'main' into wip/touch-eventsKit La Touche2024-11-09
| |\
| * \ Merge branch 'main' into wip/touch-eventsKit La Touche2024-11-06
| |\ \
| * | | Set up framework for testing touch eventsKit La Touche2024-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This includes a change to tools/run that exposes the dev server on my local network. This change should not make it into the final form of this branch. This is so I can use actual for real touch events on my actual for real phone, hooked up for remote debugging to my computer so I can see console events etc.
* | | | Style sidebar and message inputKit La Touche2024-11-11
| | | |
* | | | Clean up event stream on window closeKit La Touche2024-11-11
| |_|/ |/| |
* | | Rename the project to `pilcrow`.Owen Jacobson2024-11-08
| | |
* | | Better choices of margins and capsOwen Jacobson2024-11-07
| | |
* | | Factor out the elements of the `/me` page, and style them a little.Owen Jacobson2024-11-07
| | |
* | | Be more consistent around margins and padding for the "main" paneOwen Jacobson2024-11-07
| | |
* | | Split message runs after ten minutes' silence.Owen Jacobson2024-11-06
| |/ |/| | | | | I've also refactored how runs are processed, to avoid re-splitting runs every time the channel view is rendered. They're generated when messages are ingested into the `$messages` store, instead.
* | Move the logout button into `/me`. Make the self link a little more prominent.Owen Jacobson2024-11-06
| |
* | Move `showMenu` out of globals and into page state.Owen Jacobson2024-11-05
|/ | | | | | I generally don't love globals, and the scope of this global is pretty narrow. Let's use the context hierarchy for this, instead. (Kit mentioned that it might be possible to use CSS variables for this.)
* Retire use of <slot />Owen Jacobson2024-11-04
|
* Run spaces-style prettier formattingKit La Touche2024-11-03
|
* Svelte 5: go through and use runes in components, pages, and layouts.Owen Jacobson2024-11-03
| | | | Does not use runes in stores (yet).
* Stop showing the text input area on the /me pageOwen Jacobson2024-11-02
|
* Address outstanding lint issues.Owen Jacobson2024-11-02
|
* Run prettier, make lint part of pre-commitOwen Jacobson2024-11-02
|
* Remove frame around chat messagesOwen Jacobson2024-11-02
|
* Remove unused `x` widgetOwen Jacobson2024-11-02
|
* Make the channel menu more consistent with the density of the rest of the UIOwen Jacobson2024-11-02
|
* Specify overflow behaviour more loosely.Owen Jacobson2024-11-02
| | | | On Safari, `overflow: scroll` forces scrollbars even where not required, leading to a really janky display studded with stray scrollbars.
* Rearrange DOM because Owen asked me toKit La Touche2024-10-31
|
* Futz with layout a bitKit La Touche2024-10-31
|
* Merge branch 'main' into wip/mobileKit La Touche2024-10-30
|\
| * Don't leave field binding vars uninitialized.Owen Jacobson2024-10-30
| | | | | | | | | | | | This was causing problems for changing passwords: if the user didn't type anything in the "original password" field, the code path to sending that field to the server was just straight-up omitting the field from the message, rather than setting it to empty string, causing a 422 Unprocessable Entity. On investigation we had latent bugs related to this in a bunch of spots.
* | Merge branch 'main' into wip/mobileKit La Touche2024-10-30
|\|
| * Incrementally less jank invite listing.Owen Jacobson2024-10-29
| |
| * Add `change password` UI + API.Owen Jacobson2024-10-29
| | | | | | | | The protocol here re-checks the caller's password, as a "I left myself logged in" anti-pranking check.
* | Add more mobile stylingKit La Touche2024-10-30
| |
* | Calculate layout height more betterlyKit La Touche2024-10-30
| |
* | Do a big mobile app design thingKit La Touche2024-10-23
|/ | | | | | Mobile-friendly anyway. Thanks to [Miriam](https://www.miriamsuzanne.com/) for the CSS that enables a sliding menu on mobile size, constant menu on larger.
* Return a distinct error when an invite username is in use.Owen Jacobson2024-10-11
| | | | I've also aligned channel creation with this (it's 409 Conflict). To make server setup more distinct, it now returns 503 Service Unavailable if setup has not been completed.
* Provide a separate "initial setup" endpoint that creates a user.Owen Jacobson2024-10-11
|
* Move login to its own route.Owen Jacobson2024-10-11
| | | | This - in passing - fixes the problem where the client failed to subscribe after logging in, by causing the whole subscription process to be re-run when returning to the main interface.
* Compute the active channel from the current routing state, not from a store.Owen Jacobson2024-10-10
|
* Hoist the UI one step up furtherOwen Jacobson2024-10-10