ci: update manifest for version 0.4.0.0.

This commit is contained in:
Concourse CI/CD 2024-12-22 17:58:46 +00:00
parent f9978fe2f8
commit cd272affe4

View file

@ -12,8 +12,8 @@
"changelog": "## v0.4.0.0\n- Add a basic UI to configure the playlists.\n- It's now possible to print log messages to the jellyfin log by calling `logd`, `logi`, `logw` or `loge`\n for the respective levels `debug`, `info`, `warning` or `error`.\n- Allow calling generic methods via `(invoke-generic object methodname args list-of-types)`.\n- Add quoting via single quote: `'`.\n- Add special case for `(quote <form>)` to be rendered as `'<form>`.\n- It is now possible to include comments in the source via a semicolon (`;`).\n- Respect the `Enabled` flag and only process the playlists that are enabled.\n- New methods have been added: `rand`, `shuf`.\n- Add `find-artist`, `get-name` and `find-parent` default definitions.\n- Update YamlDotNet to v16.2.1.\n\n**Breaking changes**:\n- Rename global environment variables to be enclosed by `*`.\n\n**Fixes**:\n- The initialization of the executor now contains the same default definitions for the SortProgram and the normal Program.\n- The progress report now considers the SmartPlaylists and not the individual playlists per user.\n- It is now possible to pass builtins as arguments. Previously to get `(qsort > (list 1 2 3))` one had to write\n something like this: `(qsort (lambda (a b) (> a b)) (list 1 2 3))`.\n- A program no longer has to be a list, `t` is a valid program.\n- Fix list parsing in cases where a space was before the closing parenthesis.\n\n\n## v0.3.0.0\n- Add a second program (`SortProgram`) which is run after the filtering, this\n program should return the list of items, but in the order in which they should appear in\n the playlist. The default is `(begin items)` which returns the list as is.\n- Extend builtin lisp definitions: add `qsort` and string comparison methods\n- Extend default program definitions: add `all-genres` and `any-genres` to quickly specify a list of genres which to include (or excluding when negating)\n- Update Jellyfin to v 10.10.3\n\n**Fixes**:\n- The progress report now correctly gives a percentage in the range [0, 100].\n\n## v0.2.2.0\n- Update Jellyfin to v 10.10.2\n\n## v0.2.1.0\n- Make default program configuration a textarea in the settings page\n- Add convinience definitions: `is-type`, `name-contains`\n- Update YamlDotNet to v 16.2.0\n\n**Fixes**:\n- The default program was malformed, a closing bracket was at the wrong position\n- The `haskeys` function could only be called on Objects\n\n## v0.2.0.0\n- Switch to yaml loading, old json files are still accepted\n- Rework lisp interpreter to be more conventional\n- Use arbitrary strings as ids for playlists\n- Add configuration page with some default definitions for\n the filter expressions.\n\n**Breaking Changes**:\n- The lisp interpreter will now only detect strings in double quotes (`\"`).\n- The interpreter will also not allow specifying lists without quoting them.\n `(1 2 3)` ... used to work but will no longer, replace by either specifying\n the list as `(list 1 2 3)` or `(quote (1 2 3))`.\n\n## v0.1.1.0\n- Initial Alpha release.\n", "changelog": "## v0.4.0.0\n- Add a basic UI to configure the playlists.\n- It's now possible to print log messages to the jellyfin log by calling `logd`, `logi`, `logw` or `loge`\n for the respective levels `debug`, `info`, `warning` or `error`.\n- Allow calling generic methods via `(invoke-generic object methodname args list-of-types)`.\n- Add quoting via single quote: `'`.\n- Add special case for `(quote <form>)` to be rendered as `'<form>`.\n- It is now possible to include comments in the source via a semicolon (`;`).\n- Respect the `Enabled` flag and only process the playlists that are enabled.\n- New methods have been added: `rand`, `shuf`.\n- Add `find-artist`, `get-name` and `find-parent` default definitions.\n- Update YamlDotNet to v16.2.1.\n\n**Breaking changes**:\n- Rename global environment variables to be enclosed by `*`.\n\n**Fixes**:\n- The initialization of the executor now contains the same default definitions for the SortProgram and the normal Program.\n- The progress report now considers the SmartPlaylists and not the individual playlists per user.\n- It is now possible to pass builtins as arguments. Previously to get `(qsort > (list 1 2 3))` one had to write\n something like this: `(qsort (lambda (a b) (> a b)) (list 1 2 3))`.\n- A program no longer has to be a list, `t` is a valid program.\n- Fix list parsing in cases where a space was before the closing parenthesis.\n\n\n## v0.3.0.0\n- Add a second program (`SortProgram`) which is run after the filtering, this\n program should return the list of items, but in the order in which they should appear in\n the playlist. The default is `(begin items)` which returns the list as is.\n- Extend builtin lisp definitions: add `qsort` and string comparison methods\n- Extend default program definitions: add `all-genres` and `any-genres` to quickly specify a list of genres which to include (or excluding when negating)\n- Update Jellyfin to v 10.10.3\n\n**Fixes**:\n- The progress report now correctly gives a percentage in the range [0, 100].\n\n## v0.2.2.0\n- Update Jellyfin to v 10.10.2\n\n## v0.2.1.0\n- Make default program configuration a textarea in the settings page\n- Add convinience definitions: `is-type`, `name-contains`\n- Update YamlDotNet to v 16.2.0\n\n**Fixes**:\n- The default program was malformed, a closing bracket was at the wrong position\n- The `haskeys` function could only be called on Objects\n\n## v0.2.0.0\n- Switch to yaml loading, old json files are still accepted\n- Rework lisp interpreter to be more conventional\n- Use arbitrary strings as ids for playlists\n- Add configuration page with some default definitions for\n the filter expressions.\n\n**Breaking Changes**:\n- The lisp interpreter will now only detect strings in double quotes (`\"`).\n- The interpreter will also not allow specifying lists without quoting them.\n `(1 2 3)` ... used to work but will no longer, replace by either specifying\n the list as `(list 1 2 3)` or `(quote (1 2 3))`.\n\n## v0.1.1.0\n- Initial Alpha release.\n",
"targetAbi": "10.10.3.0", "targetAbi": "10.10.3.0",
"sourceUrl": "https://gitea.redxef.at/redxef/jellyfin-smart-playlist/releases/download/v0.4.0.0/smart-playlist_0.4.0.0.zip", "sourceUrl": "https://gitea.redxef.at/redxef/jellyfin-smart-playlist/releases/download/v0.4.0.0/smart-playlist_0.4.0.0.zip",
"checksum": "96abcccf5af5ab2d312c2cb0c01bd71a", "checksum": "65330e97f1de34658843923fc1466dea",
"timestamp": "2024-12-22T17:56:02Z" "timestamp": "2024-12-22T17:58:46Z"
}, },
{ {
"version": "0.3.0.0", "version": "0.3.0.0",