Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.2.1] - 2025-06-25

### Fixed
- fixed a bug that made Context Agent unusable for non-users
- made caching user-related
- adapted spelling in settings
- updated dependencies

## [1.2.0] - 2025-06-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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


Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Positive:
* The software for this app is open source, no trained AI model is used
]]>
</description>
<version>1.2.0</version>
<version>1.2.1</version>
<licence>MIT</licence>
<author mail="[email protected]" homepage="https://marcelklehr.de">Marcel Klehr</author>
<namespace>ContextAgent</namespace>
Expand All @@ -44,7 +44,7 @@ Positive:
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/context_agent</image>
<image-tag>1.2.0</image-tag>
<image-tag>1.2.1</image-tag>
</docker-install>
</external-app>
</info>
6 changes: 3 additions & 3 deletions ex_app/lib/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ async def lifespan(app: FastAPI):
id="settings_context_agent",
section_type="admin",
section_id="ai",
title=_("Context agent"),
description=_("Find more details on how to set up Context agent in the Administration documentation."),
title=_("Context Agent"),
description=_("Find more details on how to set up Context Agent in the Administration documentation."),
fields=[
SettingsField(
id="tool_status",
title=_("Activate all tools that Context agent should use"),
title=_("Activate all tools that Context Agent should use"),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we going back to All Caps Style on this? It thought we should be using Sentence style?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Desin just confirmed to use Uppercase Style for app names :)

type=SettingsFieldType.MULTI_CHECKBOX,
default=dict.fromkeys(categories, True),
options={v: k for k, v in categories.items()},
Expand Down
2 changes: 1 addition & 1 deletion test.env
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ APP_HOST=0.0.0.0
APP_ID=context_agent
APP_PORT=9081
APP_SECRET=12345
APP_VERSION=1.2.0
APP_VERSION=1.2.1
NEXTCLOUD_URL=http://localhost:8080
COMPUTE_DEVICE=CPU
Loading