Skip to content
Open
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
5 changes: 0 additions & 5 deletions bandcamp/.eslintignore

This file was deleted.

84 changes: 0 additions & 84 deletions bandcamp/.eslintrc.yml

This file was deleted.

7 changes: 7 additions & 0 deletions bandcamp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ As the name implies, the purpose of this plugin is to allow you to discover musi

## Changelog

1.2.0 (Buster backport)
- Backport from main branch v2.0.0

2.0.0
- Release for Bookworm-based Volumio
- Fix browsing / playback issues caused by Bandcamp changes

1.1.1
- Fix player state sometimes wrong when playing prefetched track

Expand Down
Binary file not shown.
6 changes: 4 additions & 2 deletions bandcamp/dist/i18n/strings_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"BANDCAMP_CONFIGURATION": "Bandcamp Discover Configuration",
"BANDCAMP_DISCOVER": "Bandcamp Discover",
"BANDCAMP_DISCOVER_SHORT": "Discover",
"BANDCAMP_ALL_GENRES": "all genres",
"BANDCAMP_ALL_SUBGENRES": "all {}",
"BANDCAMP_ALBUM": "ALBUM",
"BANDCAMP_ARTIST": "ARTIST",
"BANDCAMP_LABEL": "LABEL",
Expand All @@ -28,6 +30,7 @@
"BANDCAMP_BROWSE_BY_TAGS": "Browse by tags",
"BANDCAMP_TAGS": "Tags",
"BANDCAMP_SELECT_TAG": "Choose tag",
"BANDCAMP_SELECT_RELATEDTAG": "Add a tag",
"BANDCAMP_LOCATIONS": "Locations",
"BANDCAMP_RELEASES": "Releases",
"BANDCAMP_MY_BANDCAMP": "My Bandcamp",
Expand Down Expand Up @@ -62,9 +65,8 @@
"BANDCAMP_SELECT_GENRE": "Genres",
"BANDCAMP_SELECT_SUBGENRE": "Subgenres",
"BANDCAMP_SELECT_SORTBY": "Sort By",
"BANDCAMP_SELECT_ARTISTRECOMMENDATIONTYPE": "Artist Recommendation",
"BANDCAMP_SELECT_LOCATION": "Locations",
"BANDCAMP_SELECT_FORMAT": "Formats",
"BANDCAMP_SELECT_CATEGORY": "Categories",
"BANDCAMP_SELECT_TIME": "Time Period",
"BANDCAMP_SELECT_SORT": "Sort By",
"BANDCAMP_SET_DEFAULT_DISCOVER_PARAMS": "Set current selection as default",
Expand Down
4 changes: 2 additions & 2 deletions bandcamp/dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SearchQuery } from './lib/controller/search/SearchController';
import { ExplodedTrackInfo } from './lib/controller/browse/view-handlers/ExplodableViewHandler';
import { type SearchQuery } from './lib/controller/search/SearchController';
import { type ExplodedTrackInfo } from './lib/controller/browse/view-handlers/ExplodableViewHandler';
interface GotoParams extends ExplodedTrackInfo {
type: 'album' | 'artist';
}
Expand Down
2 changes: 1 addition & 1 deletion bandcamp/dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bandcamp/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bandcamp/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bandcamp/dist/lib/BandcampContext.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import winston from 'winston';
import type winston from 'winston';
import Cache from './util/Cache';
declare class BandcampContext {
#private;
Expand Down
2 changes: 1 addition & 1 deletion bandcamp/dist/lib/BandcampContext.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions bandcamp/dist/lib/BandcampContext.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bandcamp/dist/lib/BandcampContext.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions bandcamp/dist/lib/controller/browse/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ExplodedTrackInfo } from './view-handlers/ExplodableViewHandler';
import { RenderedPage } from './view-handlers/ViewHandler';
import { type ExplodedTrackInfo } from './view-handlers/ExplodableViewHandler';
import { type RenderedPage } from './view-handlers/ViewHandler';
export default class BrowseController {
#private;
browseUri(uri: string): Promise<RenderedPage>;
Expand All @@ -8,6 +8,7 @@ export default class BrowseController {
* - track[@trackUrl=...]
* - album[@albumUrl=...]
* - shows[@showUrl=...]
* - discover[@...]
*/
explodeUri(uri: string): Promise<ExplodedTrackInfo[]>;
}
Expand Down
2 changes: 1 addition & 1 deletion bandcamp/dist/lib/controller/browse/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions bandcamp/dist/lib/controller/browse/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bandcamp/dist/lib/controller/browse/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import ExplodableViewHandler from './ExplodableViewHandler';
import View from './View';
import { RenderedPage } from './ViewHandler';
import type View from './View';
import { type RenderedPage } from './ViewHandler';
export interface AlbumView extends View {
name: 'album';
albumUrl: string;
track?: string;
artistUrl?: string;
trackId?: string;
}
export default class AlbumViewHandler extends ExplodableViewHandler<AlbumView> {
#private;
Expand Down
Loading