release v1.0.5

This commit is contained in:
Bohdan Triapitsyn
2025-12-07 22:14:29 +02:00
parent 3503eff4bb
commit 4e301815f5
8 changed files with 14 additions and 9 deletions
+7 -1
View File
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
- Pending
## [1.0.5] - 2025-12-07
- Fixed "Load older messages" incorrectly scrolling to bottom
- Fixed page refresh getting stuck on splash screen
- Disabled devtools and page refresh in production builds
## [1.0.4] - 2025-12-07
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openchamber-monorepo",
"version": "1.0.4",
"version": "1.0.5",
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
"private": true,
"type": "module",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.0.4",
"version": "1.0.5",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.0.4"
version = "1.0.5"
edition = "2021"
publish = false
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "OpenChamber",
"version": "1.0.4",
"version": "1.0.5",
"identifier": "ai.opencode.openchamber",
"build": {
"beforeDevCommand": "pnpm dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.0.4",
"version": "1.0.5",
"private": true,
"type": "module",
"main": "src/main.tsx",
@@ -377,6 +377,7 @@ export const useChatScrollManager = ({
spacerHeightRef.current = 0;
setSpacerHeight(0);
}
// eslint-disable-next-line react-hooks/exhaustive-deps -- only run on session change, not message changes
}, [currentSessionId, sessionMessages.length]);
useIsomorphicLayoutEffect(() => {
@@ -396,8 +397,6 @@ export const useChatScrollManager = ({
const nextCount = sessionMessages.length;
if (nextCount > previousCount && previousCount > 0) {
const addedCount = nextCount - previousCount;
const previousFirstId = lastFirstMessageIdRef.current;
const newFirstId = getMessageId(sessionMessages[0]);
const newLastId = getMessageId(sessionMessages[nextCount - 1]);
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.0.4",
"version": "1.0.5",
"private": false,
"type": "module",
"main": "./server/index.js",