Skip to content

Releases: tvly/tvly-web

v1.2.2

17 Mar 15:55
Compare
Choose a tag to compare

改动

  1. 修正频道列表页键绑定影响搜索的问题。

配置差异

升级依赖

不需要

v1.2.1

27 Feb 17:43
Compare
Choose a tag to compare

改动

  1. 修正非 chrome、firefox 的浏览器上滚动效果异常的问题。(iamdustan/smoothscroll#112)
  2. 修正用 PageUp 或 PageDown 或滚轮翻页之后不更新选中频道的问题。
  3. 去除不能加载 snapshot 时弹出的警告信息。

配置差异

升级依赖

需要

v1.2.0

27 Feb 06:40
Compare
Choose a tag to compare

改动

  1. 升级 flowplayer 到 7.2.4。
  2. 增加节目列表界面的键盘绑定,支持在电视上用遥控器控制 chrome 进行基本操作。
  3. 支持多个 channelsUrl、epgUrl。
  4. 新的基于模板的 snapshotUrl 和 hlsUrl 配置方法。

配置差异

  1. 原有的
"channelsUrl": "https://example.com/channels.json",
“epgUrl": "https://example.com/epg.json",
"snapshotUrl": "https://example.com/snapshot/",
"hlsUrl": "https://example.com/hls/",

需要改为

"channelsUrlList": [
    "https://example.com/channels.json",
],

"epgUrlList": [
    "https://example.com/epg.json",
],

"defaultSnapshotUrlTemplate": "https://example.com/snapshot/{Vid}.jpg",
"defaultHlsUrlTemplate": "https://example.com/hls/{Vid}.m3u8",
  1. channelsUrl 所指向的 json 文件中可以在任意层增加SnapshotUrlTemplateHlsUrlTemplate字段,分别覆盖defaultSnapshotUrlTemplatedefaultHlsUrlTemplate字段的内容,离根越近覆盖范围越大,离根越远优先级越高。可添加的层包括:

    • json 的根
    • Categories 数组的项中
    • Channels 数组的项中
  2. SnapshotUrlTemplateHlsUrlTemplate 中可包含的变量包括:

    • Vid - channel 的 Vid
    • Category - 所属 category 的 Name
    • Name - channel 的 Name

升级依赖

需要

注意

在多个 channelsUrl 的时候需要注意 Category 的Name和 Channel 的 Vid 一定不要重复

flowplayer HOTFIX

29 Oct 10:47
Compare
Choose a tag to compare

使用方法:

npm install
cd node_modules
patch -p1 < ../node_modules.patch

接下来可以正常编译

v1.0.9

29 Oct 04:15
Compare
Choose a tag to compare

改动

  1. 升级 flowplayer 到 7.2.1,修正 safari 上不能播放的问题。
  2. 支持在界面上显示观众数量。

配置差异

  1. 新增可选配置 channelViewersUrl 用于显示各频道的观众数量(example)。默认不启用观众数量功能。
  2. 新增可选配置 channelViewersRefreshInterval 用于控制观众数量数据的刷新间隔秒数。默认为 30。

升级依赖

需要

v1.0.8

24 Oct 06:19
Compare
Choose a tag to compare

改动

  1. 修改列表页面的模式切换按钮,增强语义。
  2. 支持 Google Analytics。

不兼容配置

  1. 新增可选配置 googleAnalytics 用于搜集用户的在线状态。默认为不开启此功能。

升级依赖

需要

v1.0.7

18 Oct 07:03
Compare
Choose a tag to compare

改动

  1. 修正节目名太长导致布局损坏。(#45)
  2. 修正从收藏列表进入播放界面,却返回到频道列表的问题。(#46)
  3. 如果从收藏列表或节目清单进入播放界面,则禁止换台。
  4. 升级依赖,删除 hotfix。

不兼容配置

升级依赖

需要