Skip to content

Commit

Permalink
doc: document search history by localStorage
Browse files Browse the repository at this point in the history
  • Loading branch information
wdpm committed Mar 13, 2021
1 parent 6a7e041 commit 9339341
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- [ ] Tray mode
- [ ] loading indicator UI
- [ ] 添加非socket.io获取数据信息的模式
- [ ] ~~添加非socket.io获取数据信息的模式~~

### Changed
- [ ] highlight search result text
- [ ] use VtbInfoLite version NOT VtbInfo to reduce data size
- [ ] ~~use VtbInfoLite version NOT VtbInfo to reduce data size~~

### Fixed
- [ ] 多开window 之后,如果删除其中一些窗口,再次重排窗口无效。该bug不稳定重现。
- [ ] 播放器画质切换无效的严重BUG
- [ ] 播放器画质切换无效的严重BUG(HELP WANTED)

## [0.9.0] - 2021-3-13
### Added
- Living room entry for some vtubers that has not been collected.

## [0.8.1] - 2020-12-17
### Added
- Home page loading indicator UI

### Fixed
- 继续修复更新App对话框的显示关闭逻辑.

Expand Down Expand Up @@ -84,7 +90,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- follow router doesn't highlight when navigate to its sub route.
- 对当前在线某个vtb进行关注,马上取关,触发奇怪的下播提醒。

[Unreleased]: https://github.com/wdpm/bilibili-dd-monitor/compare/v0.8.1...HEAD
[Unreleased]: https://github.com/wdpm/bilibili-dd-monitor/compare/v0.9.0...HEAD
[0.9.0]: https://github.com/wdpm/bilibili-dd-monitor/releases/tag/v0.9.0
[0.8.1]: https://github.com/wdpm/bilibili-dd-monitor/releases/tag/v0.8.1
[0.8.0]: https://github.com/wdpm/bilibili-dd-monitor/releases/tag/v0.8.0
[0.7.5]: https://github.com/wdpm/bilibili-dd-monitor/releases/tag/v0.7.5
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bilibili-dd-monitor",
"version": "0.8.1",
"version": "0.9.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
4 changes: 2 additions & 2 deletions src/app/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<li class="nav-list-item">
<router-link to="/" class="nav-list-item-link">
<font-awesome-icon :icon="['fas', 'signal']" class="nav-list-item-icon"/>
正在直播
主页
</router-link>
</li>
<li class="nav-list-item">
Expand All @@ -30,7 +30,7 @@
</li>
<li class="nav-list-item">
<router-link to="/liveRoomEntry" class="nav-list-item-link">
<font-awesome-icon :icon="['fas', 'cog']" class="nav-list-item-icon"/>
<font-awesome-icon :icon="['fas', 'paper-plane']" class="nav-list-item-icon"/>
直播间临时入口
</router-link>
</li>
Expand Down
17 changes: 15 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,19 @@ import {
// import font awesome icon
// https://github.com/FortAwesome/vue-fontawesome#installation
import { library } from '@fortawesome/fontawesome-svg-core'
import { faBan, faCog, faEllipsisV, faGlobe, faHeart, faListUl, faPlusCircle, faSearch, faSignal, faUserFriends } from '@fortawesome/free-solid-svg-icons'
import {
faBan,
faCog,
faEllipsisV,
faGlobe,
faHeart,
faListUl,
faPlusCircle,
faSearch,
faSignal,
faUserFriends,
faPaperPlane
} from '@fortawesome/free-solid-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'

// https://vue-select.org/guide/
Expand All @@ -38,7 +50,8 @@ library.add(
faUserFriends,
faBan,
faSearch,
faEllipsisV
faEllipsisV,
faPaperPlane
)
Vue.component('font-awesome-icon', FontAwesomeIcon)

Expand Down

0 comments on commit 9339341

Please sign in to comment.