| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | Deletable messages. | Owen Jacobson | 2024-11-08 |
| | | | | | This also fixes some rendering jank with the message timestamp chip. | ||
| * | Allow setting API_SERVER to forward `npm run dev` to a running instance. | Owen Jacobson | 2024-11-08 |
| | | |||
| * | Stop chopping the first message off of each channel (oops). | Owen Jacobson | 2024-11-08 |
| | | |||
| * | Better choices of margins and caps | Owen Jacobson | 2024-11-07 |
| | | |||
| * | Increase horizontal padding on the /me link so it looks a little less cramped | Owen Jacobson | 2024-11-07 |
| | | |||
| * | Factor out the elements of the `/me` page, and style them a little. | Owen Jacobson | 2024-11-07 |
| | | |||
| * | Be more consistent around margins and padding for the "main" pane | Owen Jacobson | 2024-11-07 |
| | | |||
| * | Sort out padding and wrapping for the chat input | Owen Jacobson | 2024-11-07 |
| | | |||
| * | Fix up calls to `addMessage` inside `Messages`. | Owen Jacobson | 2024-11-07 |
| | | |||
| * | Merge branch 'prop/better-run-splitting' | Kit La Touche | 2024-11-07 |
| |\ | |||
| | * | Tweak addMessage call signature | Kit La Touche | 2024-11-07 |
| | | | |||
| | * | Backport multiline logic from prop/multiline-shift | Kit La Touche | 2024-11-07 |
| | | | |||
| | * | Split message runs after ten minutes' silence. | Owen Jacobson | 2024-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. | ||
| * | | Use any modifier key (ctrl, alt, shift, or meta, technically) for multi-line ↵ | Owen Jacobson | 2024-11-06 |
| |/ | | | | messages. | ||
| * | Remove hover effect from message runs | Owen Jacobson | 2024-11-06 |
| | | |||
| * | Move the logout button into `/me`. Make the self link a little more prominent. | Owen Jacobson | 2024-11-06 |
| | | |||
| *-. | Merge remote-tracking branches 'origin/prop/dom-sandpaper' and ↵ | Owen Jacobson | 2024-11-06 |
| |\ \ | | | | | | | | | | 'origin/prop/showmenu-nonglobal' | ||
| | | * | Move `showMenu` out of globals and into page state. | Owen Jacobson | 2024-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.) | ||
| | * | File off some rough spots in the DOM. | Owen Jacobson | 2024-11-05 |
| |/ | | | | | | * We had an unused layer of divs in the main UI. * The <div id="app"> div was superfluous with the body-level div in app.html. * Some formatting changes in one component?? Weird. | ||
| * | Merge remote-tracking branch 'origin/wip/message-width' | Owen Jacobson | 2024-11-04 |
| |\ | |||
| | * | Fix width and scrolling | Kit La Touche | 2024-11-04 |
| |/ | | | | | | | This is some jinbodger CSS. I really need to do a unified-CSS sweep. I start to see why per-component CSS is bad, too; there are so many long-distance interactions needed! | ||
| * | Retire use of <slot /> | Owen Jacobson | 2024-11-04 |
| | | |||
| * | Merge remote-tracking branch 'origin/wip/actually-configure-prettier' | Owen Jacobson | 2024-11-03 |
| |\ | |||
| | * | Run spaces-style prettier formatting | Kit La Touche | 2024-11-03 |
| | | | |||
| | * | Set prettier to use spaces | Kit La Touche | 2024-11-03 |
| |/ | | | | | | | | Like Guido intended. For Python. But still. | ||
| * | Svelte 5: go through and use runes in components, pages, and layouts. | Owen Jacobson | 2024-11-03 |
| | | | | | Does not use runes in stores (yet). | ||
| * | Better dep target for vite-plugin-svelte | Owen Jacobson | 2024-11-03 |
| | | |||
| * | Svelte 5 | Owen Jacobson | 2024-11-03 |
| | | |||
| * | Verify .sqlx files against an empty DB. | Owen Jacobson | 2024-11-03 |
| | | | | | For reasons beyond my understanding, the `sqlx prepare` command produces different results for sqlite depending on whether there are or are not rows in certain tables. This ensures that the files are generated consistently with an _empty_ database. | ||
| * | Bare-bones multiline input | Owen Jacobson | 2024-11-03 |
| | | |||
| * | Generalize menu-closing | Owen Jacobson | 2024-11-03 |
| | | |||
| * | Upgrade dependencies. | Owen Jacobson | 2024-11-02 |
| | | | | | (Svelte 5 upgrade not included.) | ||
| * | Stop showing the text input area on the /me page | Owen Jacobson | 2024-11-02 |
| | | |||
| * | Address outstanding lint issues. | Owen Jacobson | 2024-11-02 |
| | | |||
| * | Run prettier, make lint part of pre-commit | Owen Jacobson | 2024-11-02 |
| | | |||
| * | Ensure that the message HTML is re-rendered when the message markdown changes. | Owen Jacobson | 2024-11-02 |
| | | | | | This was causing messages to persist when switching channels, due to the work minimization performed by Svelte. | ||
| * | Merge remote-tracking branch 'origin/wip/mobile' | Owen Jacobson | 2024-11-02 |
| |\ | |||
| | * | Don't distinguish self/other this way | Kit La Touche | 2024-11-02 |
| | | | |||
| | * | Actually sanitize rendered Markdown | Kit La Touche | 2024-11-02 |
| | | | |||
| * | | Render empty messages as full-height lines | Owen Jacobson | 2024-11-02 |
| | | | |||
| * | | Remove frame around chat messages | Owen Jacobson | 2024-11-02 |
| | | | |||
| * | | Remove unused `x` widget | Owen Jacobson | 2024-11-02 |
| | | | |||
| * | | Make the channel menu more consistent with the density of the rest of the UI | Owen Jacobson | 2024-11-02 |
| | | | |||
| * | | Specify overflow behaviour more loosely. | Owen Jacobson | 2024-11-02 |
| | | | | | | | | | On Safari, `overflow: scroll` forces scrollbars even where not required, leading to a really janky display studded with stray scrollbars. | ||
| * | | Remove notification permissions prompt. | Owen Jacobson | 2024-11-02 |
| | | | | | | | | | On Safari (iOS and macOS), the permissions prompt can only be done during a user gesture; mounting is sufficiently disconnected from any user gestures that it's not allowed. The browser raises an exception, which, since it is unhandled, then leaks out and interrupts SvelteKit's element unmounting, leading to the whole UI being duplicated when switching channels (the old UI is not unmounted). | ||
| * | | Relax Node dependencies to the current major version | Owen Jacobson | 2024-11-02 |
| | | | |||
| * | | Merge remote-tracking branch 'origin/wip/mobile' | Owen Jacobson | 2024-11-02 |
| |\| | |||
| | * | Merge branch 'main' into wip/mobile | Kit La Touche | 2024-10-31 |
| | |\ | |/ |/| | |||
| * | | Limit background expiry to the API. | Owen Jacobson | 2024-10-31 |
| | | | | | | | | | | | | | Using requests to drive background work (expiring things, mainly) is a hack to avoid the complexity of background workers, but it's reaching its limits. In the live deployment at `hi.grimoire.ca`, we found that requests for the UI were taking 300+ milliseconds as the expiry process required database access. The DB there is slow, which is a separate issue, but also being accessed many times for little benefit. Since only the API is actually _affected_ by expiry, I've scoped the middleware down to just those endpoints. | ||
| * | | Use the full viewport, rather than leaving a gutter | Owen Jacobson | 2024-10-31 |
| | | | |||
