Files
nc_bot_webhooks/appinfo/info.xml
T
kyle b18b996468 refactor(nc_bot_webhooks): rename app display name and logger tags to nc_bot_webhooks and update docs
- appinfo/info.xml: Update app `<name>` to `nc_bot_web_hooks`.
- lib/NavigationProvider.php: Update navigation entry name to `nc_bot_web_hooks`.
- lib/Controller/WebhookController.php: Update all logger tags from `NCbotwebhooks:` to `nc_bot_web_hooks:`.
- lib/Cron/ImageCleanup.php: Update logger tag to `nc_bot_web_hooks:`.
- lib/Service/TalkService.php: Update all logger tags from `NCbotwebhooks:` to `nc_bot_web_hooks:`.
- agent.md: Update references to app name and logger tags.
- architecture.md: Update references to app name.
- INSTALL.md: Update references to app name and example strings.
- README.md: Restructure "Installation" section (split into Initial installation, Updating using git, Local update), add "Debugging" section with diagnostic grep examples, update app name references.
2026-06-14 15:06:15 -07:00

33 lines
1.2 KiB
XML

<?xml version="1.0"?>
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>nc_bot_webhooks</id>
<name>nc_bot_webhooks</name>
<summary>Discord webhook bridge for Nextcloud Talk with image support</summary>
<description>Accepts Discord webhook-style JSON payloads and posts them into Nextcloud Talk rooms, preserving image attachments. Each room gets its own webhook URL with an auth token for security.</description>
<version>1.1.0</version>
<licence>AGPL-3.0-or-later</licence>
<author homepage="https://github.com/Mr-Newlove/nc_bot_webhooks/kyle">Kyle</author>
<namespace>Ncbotwebhooks</namespace>
<category>integration</category>
<dependencies>
<nextcloud min-version="33" max-version="33"/>
<app>spreed</app>
</dependencies>
<background-jobs>
OCA\Ncbotwebhooks\Cron\ImageCleanup
</background-jobs>
<settings>
<admin>OCA\Ncbotwebhooks\Settings\Admin</admin>
</settings>
<commands>
<command>OCA\Ncbotwebhooks\Command\DebugToggle</command>
</commands>
<bugs>https://github.com/Mr-Newlove/nc_bot_webhooks/issues</bugs>
</info>