mirror of
https://github.com/sbondCo/Watcharr.git
synced 2026-08-07 07:14:44 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa34f1ead1 | |||
| cefed53c7f | |||
| 0d8b050615 | |||
| 63988f833f | |||
| e391d5dc69 | |||
| cba3d11f64 |
@@ -2,6 +2,21 @@
|
||||
|
||||
These changes are awaiting release:
|
||||
|
||||
# [4.2.1] - 2026-08-04T00:40:00Z
|
||||
|
||||
## Fixed
|
||||
|
||||
- ProvidersList: Duplicate key error (that was causing an infinite loading issue for some media).
|
||||
|
||||
## Etc
|
||||
|
||||
- **Package**: [GitHub CR](https://github.com/orgs/sbondCo/packages/container/watcharr/1095711172?tag=v4.2.1) or [Docker Hub](https://hub.docker.com/layers/sbondco/watcharr/v4.2.1/images/sha256-10100c88751ff6ad4d8d7ea8af9c299adc70cc0cb5e89ccd849d0b0d6e7637a8).
|
||||
|
||||
# [4.2.0] - 2026-08-03T07:45:00Z
|
||||
|
||||
> [!NOTE]
|
||||
> v4.2.0 - That's pretty funny right? Hah. Let's all chuckle together :)
|
||||
|
||||
## New
|
||||
|
||||
- Show `Airs On` date for episodes that have yet to air (thanks [@KarpachMarko]!).
|
||||
@@ -74,6 +89,10 @@ I have been slacking in this department, so there has been a lot of house cleani
|
||||
- golang.org/x/crypto: v0.40.0 -> v0.54.0
|
||||
- gorm.io/gorm: v1.31.1: -> v1.31.2
|
||||
|
||||
## Etc
|
||||
|
||||
- **Package**: [GitHub CR](https://github.com/orgs/sbondCo/packages/container/watcharr/1092583539?tag=v4.2.0) or [Docker Hub](https://hub.docker.com/layers/sbondco/watcharr/v4.2.0/images/sha256-1063b31d3254fe74ca1960eb78c1992dc809b4f7122b4d28547337a9fb8afc51).
|
||||
|
||||
# [4.1.1] - 2026-07-26T02:00:00Z
|
||||
|
||||
## Fixed
|
||||
@@ -1782,6 +1801,8 @@ Welcome to Watcharr :popcorn:, hope it is enjoyed and improves anyone's experien
|
||||
<!-- Version Changelog References (newest first) -->
|
||||
|
||||
[Unreleased]: https://github.com/sbondCo/Watcharr/compare/v4.0.0...HEAD
|
||||
[4.2.1]: https://github.com/sbondCo/Watcharr/compare/v4.2.0...v4.2.1
|
||||
[4.2.0]: https://github.com/sbondCo/Watcharr/compare/v4.1.1...v4.2.0
|
||||
[4.1.1]: https://github.com/sbondCo/Watcharr/compare/v4.1.0...v4.1.1
|
||||
[4.1.0]: https://github.com/sbondCo/Watcharr/compare/v4.0.1...v4.1.0
|
||||
[4.0.1]: https://github.com/sbondCo/Watcharr/compare/v4.0.0...v4.0.1
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "watcharr",
|
||||
"version": "4.2.0",
|
||||
"version": "4.2.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "watcharr",
|
||||
"version": "4.2.0",
|
||||
"version": "4.2.1",
|
||||
"license": "GPL-3.0-only",
|
||||
"dependencies": {
|
||||
"blurhash": "2.0.5",
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "watcharr",
|
||||
"license": "GPL-3.0-only",
|
||||
"version": "4.2.0",
|
||||
"version": "4.2.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
4.2.0
|
||||
4.2.1
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
{#if providers?.length > 0}
|
||||
<div class="streaming-providers">
|
||||
{#each providers as provider (provider.name)}
|
||||
{#each providers as provider (provider)}
|
||||
<ProviderIcon i={provider.name} href={provider.link} wh={40} />
|
||||
{/each}
|
||||
{#if fullListLink}
|
||||
|
||||
+7
-1
@@ -368,9 +368,15 @@ export interface MediaGenre {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export enum MediaProviderType {
|
||||
Sub = "sub",
|
||||
Free = "free",
|
||||
}
|
||||
|
||||
export interface MediaProvider {
|
||||
name: string;
|
||||
link: string;
|
||||
type?: MediaProviderType;
|
||||
link?: string;
|
||||
}
|
||||
|
||||
export enum MediaVideoType {
|
||||
|
||||
Reference in New Issue
Block a user