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
18 changes: 18 additions & 0 deletions .github/workflows/packaging-gates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Packaging Gates

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
packaging-gates:
uses: RicherTunes/Lidarr.Plugin.Common/.github/workflows/packaging-gates.yml@c937a8a887ac4838ee421bd3e16f248fd41b4584
with:
common-path: ext/lidarr.plugin.common
plugin-csproj: Brainarr.Plugin/Brainarr.Plugin.csproj
manifest-path: plugin.json
host-assemblies-path: ext/Lidarr-docker/_output/net8.0
lidarr-docker-version: pr-plugins-2.14.2.4786
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1
1.3.2
2 changes: 1 addition & 1 deletion ext-common-sha.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d6281799addf4a6d9f9d3d8ee8f11c8a7723e1d7
c937a8a887ac4838ee421bd3e16f248fd41b4584
2 changes: 1 addition & 1 deletion ext/lidarr.plugin.common
8 changes: 5 additions & 3 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"id": "brainarr",
"apiVersion": "1.x",
"name": "Brainarr",
"version": "1.3.2",
"description": "AI-powered music discovery with 11 providers including local, cloud, and subscription options",
"author": "Brainarr Team",
"minimumVersion": "2.14.2.4786",
"entryPoint": "Lidarr.Plugin.Brainarr.dll",
"dll": "Lidarr.Plugin.Brainarr.dll",
"commonVersion": "1.5.0",
"minHostVersion": "2.14.2.4786",
"main": "Lidarr.Plugin.Brainarr.dll",
"website": "https://github.com/RicherTunes/Brainarr",
"owner": "RicherTunes",
"repository": "https://github.com/RicherTunes/Brainarr",
Expand Down
23 changes: 14 additions & 9 deletions schemas/plugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,42 @@
"$id": "https://github.com/RicherTunes/Brainarr/schemas/plugin.schema.json",
"title": "Brainarr plugin.json",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"apiVersion",
"name",
"version",
"description",
"author",
"minimumVersion",
"entryPoint",
"dll",
"minHostVersion",
"main",
"website",
"owner",
"repository",
"supportUri",
"changelogUri"
],
"properties": {
"id": { "type": "string", "minLength": 1 },
"apiVersion": { "type": "string", "pattern": "^\\d+\\.x$" },
"commonVersion": { "type": "string" },
"name": { "type": "string", "minLength": 1 },
"version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" },
"description": { "type": "string" },
"author": { "type": "string" },
"minimumVersion": {
"minHostVersion": {
"type": "string",
"description": "Minimum supported Lidarr version (plugins/nightly).",
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$"
},
"entryPoint": { "type": "string", "minLength": 1 },
"dll": { "type": "string", "minLength": 1 },
"main": { "type": "string", "minLength": 1 },
"website": { "type": "string", "format": "uri" },
"owner": { "type": "string" },
"repository": { "type": "string", "format": "uri" },
"supportUri": { "type": "string", "format": "uri" },
"changelogUri": { "type": "string", "format": "uri" }
}
"changelogUri": { "type": "string", "format": "uri" },
"gitSha": { "type": "string" },
"buildTimestamp": { "type": "string" }
},
"additionalProperties": false
}
Loading