Skip to content

Commit

Permalink
chore: release v1.31.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Jul 17, 2024
1 parent b063e0f commit 224d04c
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions dist/DPlayer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/DPlayer.min.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/d.ts/danmaku.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ declare class Danmaku {
_measure(text: string, itemFontSize: number): number;
seek(): void;
clear(): void;
htmlEncode(str: string): string;
resize(): void;
hide(): void;
show(): void;
Expand Down
2 changes: 1 addition & 1 deletion dist/d.ts/danmaku.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 dist/d.ts/player.d.ts.map

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

6 changes: 3 additions & 3 deletions dist/d.ts/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import DPlayer from './player';
export type Lang = 'en' | 'zh-cn' | 'zh-tw' | 'ja' | 'ja-jp';
export type Preload = 'none' | 'metadata' | 'auto';
export type CrossOrigin = 'anonymous' | 'use-credentials' | null;
export type VideoType = 'auto' | 'hls' | 'live-llhls-for-KonomiTV' | 'mpegts' | 'flv' | 'dash' | 'webtorrent' | 'normal';
export type VideoType = 'auto' | 'hls' | 'mpegts' | 'flv' | 'dash' | 'webtorrent' | 'normal';
export type SubtitleType = 'webvtt' | 'aribb24';
export type Events = VideoEvents | PlayerEvents;
export type VideoEvents = 'abort' | 'canplay' | 'canplaythrough' | 'durationchange' | 'emptied' | 'ended' | 'error' | 'loadeddata' | 'loadedmetadata' | 'loadstart' | 'mozaudioavailable' | 'pause' | 'play' | 'playing' | 'progress' | 'ratechange' | 'seeked' | 'seeking' | 'stalled' | 'suspend' | 'timeupdate' | 'volumechange' | 'waiting';
Expand Down Expand Up @@ -175,7 +175,7 @@ export interface Video {
*/
thumbnails?: string;
/**
* @description values: 'auto' | 'hls' | 'live-llhls-for-KonomiTV' | 'mpegts' | 'flv' | 'dash' | 'webtorrent' | 'normal' or other custom export type
* @description values: 'auto' | 'hls' | 'mpegts' | 'flv' | 'dash' | 'webtorrent' | 'normal' or other custom export type
*/
type?: VideoType | string;
/**
Expand All @@ -195,7 +195,7 @@ export interface VideoQuality {
*/
url: string;
/**
* @description values: 'auto' | 'hls' | 'live-llhls-for-KonomiTV' | 'mpegts' | 'flv' | 'dash' | 'webtorrent' | 'normal' or other custom export type
* @description values: 'auto' | 'hls' | 'mpegts' | 'flv' | 'dash' | 'webtorrent' | 'normal' or other custom export type
*/
type?: VideoType | string;
}
Expand Down
Loading

0 comments on commit 224d04c

Please sign in to comment.