@muhammedaksam/easiarr 0.7.4 → 0.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muhammedaksam/easiarr",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "TUI tool for generating docker-compose files for the *arr media ecosystem with 41 apps, TRaSH Guides best practices, VPN routing, and Traefik reverse proxy support",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -104,9 +104,9 @@ export async function generateServicesYaml(config: EasiarrConfig): Promise<strin
104
104
  let yaml = "---\n# Auto-generated by Easiarr\n# https://github.com/muhammedaksam/easiarr\n\n"
105
105
 
106
106
  // Add Easiarr info section with two widgets - one for installed, one for latest
107
- yaml += `Easiarr:\n`
107
+ yaml += `- Easiarr:\n`
108
108
  // Installed version from local easiarr-status container
109
- yaml += ` - Installed:\n`
109
+ yaml += ` - Installed:\n`
110
110
  yaml += ` href: https://github.com/muhammedaksam/easiarr\n`
111
111
  yaml += ` icon: mdi-docker\n`
112
112
  yaml += ` description: Your current version\n`
@@ -118,7 +118,7 @@ export async function generateServicesYaml(config: EasiarrConfig): Promise<strin
118
118
  yaml += ` - field: version\n`
119
119
  yaml += ` label: Version\n`
120
120
  // Latest version from GitHub API
121
- yaml += ` - Latest:\n`
121
+ yaml += ` - Latest:\n`
122
122
  yaml += ` href: https://github.com/muhammedaksam/easiarr/releases\n`
123
123
  yaml += ` icon: mdi-github\n`
124
124
  yaml += ` description: Check for updates\n`
@@ -140,10 +140,10 @@ export async function generateServicesYaml(config: EasiarrConfig): Promise<strin
140
140
  if (!services || services.length === 0) continue
141
141
 
142
142
  const categoryName = APP_CATEGORIES[category]
143
- yaml += `${categoryName}:\n`
143
+ yaml += `- ${categoryName}:\n`
144
144
 
145
145
  for (const { name, service } of services) {
146
- yaml += ` - ${name}:\n`
146
+ yaml += ` - ${name}:\n`
147
147
  yaml += ` href: ${service.href}\n`
148
148
 
149
149
  if (service.icon) {