diff --git a/README.md b/README.md
index 3d701acb5..85636e982 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,15 @@ shows the current developments and future ideas.
- Got a suggestion? [_Add your roadmap ideas_](https://github.com/enricoros/big-agi/issues/new?&template=roadmap-request.md)
- Want to contribute? [_Pick up a task!_](https://github.com/users/enricoros/projects/4/views/4) - _easy_ to _pro_
+### What's New in 1.10.0 · Jan 6, 2024 · The Year of AGI
+
+- **New UI**: for both desktop and mobile, sets the stage for future scale. [#201](https://github.com/enricoros/big-AGI/issues/201)
+- **Conversation Folders**: enhanced conversation organization. [#321](https://github.com/enricoros/big-AGI/issues/321)
+- **[LM Studio](https://lmstudio.ai/)** support and improved token management
+- Resizable panes in split-screen conversations.
+- Large performance optimizations
+- Developer enhancements: new UI framework, updated documentation for proxy settings on browserless/docker
+
### What's New in 1.9.0 · Dec 28, 2023 · Creative Horizons
- **DALL·E 3 integration** for enhanced image generation. [#212](https://github.com/enricoros/big-AGI/issues/212)
diff --git a/docs/changelog.md b/docs/changelog.md
index ee744b191..b1772bcc4 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -5,11 +5,20 @@ by release.
- For the live roadmap, please see [the GitHub project](https://github.com/users/enricoros/projects/4/views/2)
-### 1.10.0 - Jan 2024
+### 1.11.0 - Jan 2024
-- milestone: [1.10.0](https://github.com/enricoros/big-agi/milestone/10)
+- milestone: [1.11.0](https://github.com/enricoros/big-agi/milestone/11)
- work in progress: [big-AGI open roadmap](https://github.com/users/enricoros/projects/4/views/2), [help here](https://github.com/users/enricoros/projects/4/views/4)
+### What's New in 1.10.0 · Jan 6, 2024 · The Year of AGI
+
+- **New UI**: for both desktop and mobile, sets the stage for future scale. [#201](https://github.com/enricoros/big-AGI/issues/201)
+- **Conversation Folders**: enhanced conversation organization. [#321](https://github.com/enricoros/big-AGI/issues/321)
+- **[LM Studio](https://lmstudio.ai/)** support and improved token management
+- Resizable panes in split-screen conversations.
+- Large performance optimizations
+- Developer enhancements: new UI framework, updated documentation for proxy settings on browserless/docker
+
### What's New in 1.9.0 · Dec 28, 2023 · Creative Horizons
- **DALL·E 3 integration** for enhanced image generation. [#212](https://github.com/enricoros/big-AGI/issues/212)
diff --git a/package-lock.json b/package-lock.json
index 74f754a30..21f728fc6 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "big-agi",
- "version": "1.9.0",
+ "version": "1.10.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "big-agi",
- "version": "1.9.0",
+ "version": "1.10.0",
"hasInstallScript": true,
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
diff --git a/package.json b/package.json
index 5a9007ded..4b5d6b320 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "big-agi",
- "version": "1.9.0",
+ "version": "1.10.0",
"private": true,
"scripts": {
"dev": "next dev",
diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx
index d5e21c492..24ea5675e 100644
--- a/src/apps/news/news.data.tsx
+++ b/src/apps/news/news.data.tsx
@@ -10,7 +10,7 @@ import { platformAwareKeystrokes } from '~/common/components/KeyStroke';
// update this variable every time you want to broadcast a new version to clients
-export const incrementalVersion: number = 10;
+export const incrementalVersion: number = 11;
const B = (props: { href?: string, children: React.ReactNode }) => {
const boldText = {props.children};
@@ -59,10 +59,24 @@ export const newsCallout =
// news and feature surfaces
export const NewsItems: NewsItem[] = [
// still unannounced: phone calls, split windows, ...
+ {
+ versionCode: '1.10.0',
+ versionName: 'The Year of AGI',
+ versionMoji: '🎊✨',
+ versionDate: new Date('2024-01-06T08:00:00Z'),
+ items: [
+ { text: <>New UI for desktop and mobile, enabling future expansions>, issue: 201 },
+ { text: <>Folder categorization for conversation management>, issue: 321 },
+ { text: <>LM Studio support and refined token management> },
+ { text: <>Draggable panes in split screen mode>, issue: 308 },
+ { text: <>Bug fixes and UI polish> },
+ { text: <>Developers: document proxy settings on docker>, issue: 318, dev: true },
+ ],
+ },
{
versionCode: '1.9.0',
versionName: 'Creative Horizons',
- versionMoji: '🎨🌌',
+ // versionMoji: '🎨🌌',
versionDate: new Date('2023-12-28T22:30:00Z'),
items: [
{ text: <>DALL·E 3 support (/draw), with advanced control>, issue: 212 },