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
2 changes: 1 addition & 1 deletion .run/AssistantTalkBot.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<env name="APP_ID" value="talk_bot_ai" />
<env name="APP_PORT" value="10034" />
<env name="APP_SECRET" value="12345" />
<env name="APP_VERSION" value="3.3.0" />
<env name="APP_VERSION" value="3.3.1" />
<env name="NEXTCLOUD_URL" value="http://stable31.local" />
<env name="PYTHONUNBUFFERED" value="1" />
</envs>
Expand Down
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ help:
@echo " run32 installs $(APP_NAME) for Nextcloud 32"
@echo " run33 installs $(APP_NAME) for Nextcloud 33"
@echo " run34 installs $(APP_NAME) for Nextcloud 34"
@echo " run35 installs $(APP_NAME) for Nextcloud 35"
@echo " "
@echo " > Commands for manual registration of ExApp ($(APP_NAME) should be running!):"
@echo " "
Expand All @@ -34,6 +35,7 @@ help:
@echo " register32 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
@echo " register33 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
@echo " register34 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
@echo " register35 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
@echo " "


Expand Down Expand Up @@ -79,6 +81,12 @@ run34:
docker exec master-stable34-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml

.PHONY: run35
run35:
docker exec master-stable35-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
docker exec master-stable35-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml

.PHONY: register
register:
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
Expand Down Expand Up @@ -108,3 +116,8 @@ register33:
register34:
docker exec master-stable34-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
docker exec master-stable34-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish

.PHONY: register35
register35:
docker exec master-stable35-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
docker exec master-stable35-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The bot is capable of answering questions in Nextcloud Talk chat conversations u

**The [`AppAPI`](https://apps.nextcloud.com/apps/app_api), [Nextcloud Talk](https://apps.nextcloud.com/apps/spreed), and [Nextcloud Assistant](https://apps.nextcloud.com/apps/assistant) apps needs to be enabled to install and use this bot.**
]]></description>
<version>3.3.0</version>
<version>3.3.1</version>
<licence>agpl</licence>
<author mail="andrey18106x@gmail.com" homepage="https://github.com/andrey18106">Andrey Borysenko</author>
<author mail="bigcat88@icloud.com" homepage="https://github.com/bigcat88">Alexander Piskun</author>
Expand All @@ -34,7 +34,7 @@ The bot is capable of answering questions in Nextcloud Talk chat conversations u
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/talk_bot_ai</image>
<image-tag>3.3.0</image-tag>
<image-tag>3.3.1</image-tag>
</docker-install>
</external-app>
</info>