Skip to content

Commit 0cf476f

Browse files
authored
Merge pull request #39 from nextcloud/prepare-v1.2.1
Prepare v1.2.1
2 parents 4749d24 + a20c0aa commit 0cf476f

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ All notable changes to this project will be documented in this file.
88
The format is based on [Keep a Changelog](http://keepachangelog.com/)
99
and this project adheres to [Semantic Versioning](http://semver.org/).
1010

11+
## [1.2.1] - 2025-06-25
12+
13+
### Fixed
14+
- fixed a bug that made Context Agent unusable for non-users
15+
- made caching user-related
16+
- adapted spelling in settings
17+
- updated dependencies
18+
1119
## [1.2.0] - 2025-06-03
1220

1321
### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
APP_ID := context_agent
66
APP_NAME := Nextcloud Context Agent
7-
APP_VERSION := 1.2.0
7+
APP_VERSION := 1.2.1
88
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"$(APP_NAME)\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":9081}"
99

1010

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Positive:
2828
* The software for this app is open source, no trained AI model is used
2929
]]>
3030
</description>
31-
<version>1.2.0</version>
31+
<version>1.2.1</version>
3232
<licence>MIT</licence>
3333
<author mail="[email protected]" homepage="https://marcelklehr.de">Marcel Klehr</author>
3434
<namespace>ContextAgent</namespace>
@@ -44,7 +44,7 @@ Positive:
4444
<docker-install>
4545
<registry>ghcr.io</registry>
4646
<image>nextcloud/context_agent</image>
47-
<image-tag>1.2.0</image-tag>
47+
<image-tag>1.2.1</image-tag>
4848
</docker-install>
4949
</external-app>
5050
</info>

ex_app/lib/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ async def lifespan(app: FastAPI):
5656
id="settings_context_agent",
5757
section_type="admin",
5858
section_id="ai",
59-
title=_("Context agent"),
60-
description=_("Find more details on how to set up Context agent in the Administration documentation."),
59+
title=_("Context Agent"),
60+
description=_("Find more details on how to set up Context Agent in the Administration documentation."),
6161
fields=[
6262
SettingsField(
6363
id="tool_status",
64-
title=_("Activate all tools that Context agent should use"),
64+
title=_("Activate all tools that Context Agent should use"),
6565
type=SettingsFieldType.MULTI_CHECKBOX,
6666
default=dict.fromkeys(categories, True),
6767
options={v: k for k, v in categories.items()},

test.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ APP_HOST=0.0.0.0
66
APP_ID=context_agent
77
APP_PORT=9081
88
APP_SECRET=12345
9-
APP_VERSION=1.2.0
9+
APP_VERSION=1.2.1
1010
NEXTCLOUD_URL=http://localhost:8080
1111
COMPUTE_DEVICE=CPU

0 commit comments

Comments
 (0)