diff --git a/CHANGELOG.md b/CHANGELOG.md
index c671de1..9181d9e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to the DarkPeers Mod Queue Helper will be documented in this
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
+## [0.6.1] - 2026-04-09
+
+### Added
+
+- **Prowlarr timeout setting** — search timeout is now configurable via Tampermonkey settings (default: 15000ms). Accessible in the Integrations fieldset alongside Prowlarr URL and API Key.
+
## [0.6.0] - 2026-04-09
### Fixed
diff --git a/modq-helper-darkpeers.user.js b/modq-helper-darkpeers.user.js
index d3a7879..363cf3b 100644
--- a/modq-helper-darkpeers.user.js
+++ b/modq-helper-darkpeers.user.js
@@ -1,7 +1,7 @@
// ==UserScript==
// @name UNIT3D Mod Queue Helper — DarkPeers
// @namespace https://gitea.computerliebe.org/Procuria/dp-modq-helper
-// @version 0.6.0
+// @version 0.6.1
// @description Quality-gate checks for DarkPeers — extended moderation rules, title validation, SRRDB & Prowlarr integrations
// @author TQG Contributors
// @updateURL https://gitea.computerliebe.org/Procuria/dp-modq-helper/raw/branch/main/modq-helper-darkpeers.user.js
@@ -1227,7 +1227,7 @@ let _resolvedModStatuses = DEFAULT_MOD_STATUSES;
const Settings = {
_KEY: "modq_settings",
_defaults: {
- prowlarr: { url: "", apiKey: "", enabled: false, preferredIndexers: [], ignoredIndexers: [] },
+ prowlarr: { url: "", apiKey: "", enabled: false, preferredIndexers: [], ignoredIndexers: [], timeout: 15000 },
srrdb: { enabled: true },
checks: {
tmdbMatch: true, seasonEpisode: true, namingGuide: true,
@@ -1362,6 +1362,12 @@ const Settings = {
style="background:#1e293b;border:1px solid #334155;color:#e2e8f0;border-radius:4px;padding:4px 8px;font-size:12px;">
Comma-separated. Results from these indexers are excluded from Prowlarr matches.
+