chore(release): release v0.44.1 (#291)
This commit is contained in:
parent
35acb49545
commit
c8afe6995d
5 changed files with 20 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.44.0"
|
||||
".": "0.44.1"
|
||||
}
|
||||
|
|
|
|||
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -1,5 +1,20 @@
|
|||
# Changelog
|
||||
|
||||
## [0.44.1](https://github.com/webstreamr/webstreamr/compare/v0.44.0...v0.44.1) (2025-08-18)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **deps:** lock file maintenance ([#290](https://github.com/webstreamr/webstreamr/issues/290)) ([747ea84](https://github.com/webstreamr/webstreamr/commit/747ea84880e8f88ac74c77fe6cd2359396de565e))
|
||||
* **deps:** update dependency @types/node to v22.17.2 ([#289](https://github.com/webstreamr/webstreamr/issues/289)) ([8a24dbc](https://github.com/webstreamr/webstreamr/commit/8a24dbcd24b054d498d765c225c556062c054969))
|
||||
* **extractor:** extract size and title for Fastream URLs ([36f3d70](https://github.com/webstreamr/webstreamr/commit/36f3d70467bca8396d0af847b110ab8b6688772e))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extractor:** remove unreliable title height guessing ([35acb49](https://github.com/webstreamr/webstreamr/commit/35acb49545438257615c775161d525989b688c6f))
|
||||
* **source:** do alternative dash search for HomeCine ([bfdb212](https://github.com/webstreamr/webstreamr/commit/bfdb212770007582c3577f325daef91bbb0a33fe))
|
||||
|
||||
## [0.44.0](https://github.com/webstreamr/webstreamr/compare/v0.43.3...v0.44.0) (2025-08-17)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.44.0",
|
||||
"version": "0.44.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.44.0",
|
||||
"version": "0.44.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.44.0",
|
||||
"version": "0.44.1",
|
||||
"type": "commonjs",
|
||||
"scripts": {
|
||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ const typedEntries = <T extends object>(obj: T): [keyof T, T[keyof T]][] => (Obj
|
|||
export const buildManifest = (sources: Source[], extractors: Extractor[], config: Config): CustomManifest => {
|
||||
const manifest: CustomManifest = {
|
||||
id: envGetAppId(),
|
||||
version: '0.44.0', // x-release-please-version
|
||||
version: '0.44.1', // x-release-please-version
|
||||
name: envGetAppName(),
|
||||
description: 'Provides HTTP URLs from streaming websites. Configure add-on for additional languages. Add MediaFlow proxy for more URLs.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue