Skip to content

Commit

Permalink
Disabled other stream types for the time being due to issues with coo…
Browse files Browse the repository at this point in the history
…kies
  • Loading branch information
bootsie123 committed Sep 19, 2021
1 parent 2a1d4cd commit 5c2a937
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Yes! Just click on the clock icon on the feed you want all the other feeds to sy

## Acknowledgements

**Special thanks To:** [SoMuchForSubtlety](https://github.com/SoMuchForSubtlety) (F1 Viewer) and [robvdpol](https://github.com/robvdpol) (RaceControl) for giving me a framework to work with and mapping out the F1TV API!
**Special thanks to:** [SoMuchForSubtlety](https://github.com/SoMuchForSubtlety) (F1 Viewer) and [robvdpol](https://github.com/robvdpol) (RaceControl) for giving me a framework to work with and mapping out the F1TV API!

Other thanks to:

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"main": "background.js",
"dependencies": {
"axios": "^0.21.1",
"bulma": "^0.9.2",
"bulma": "^0.9.3",
"compression": "^1.7.4",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.6.5",
Expand Down Expand Up @@ -56,9 +56,9 @@
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.14.1",
"nodemon": "^2.0.7",
"prettier": "2.1.2",
"sass": "^1.41.0",
"sass-loader": "^8.0.2",
"vue-cli-plugin-electron-builder": "^2.0.0",
"vue-template-compiler": "^2.6.11"
Expand Down
4 changes: 2 additions & 2 deletions src/components/LayoutItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@
border-color: #b5b5b5;
}
/deep/ .ri-check-fill {
::v-deep .ri-check-fill {
color: black;
}
/deep/ .ri-check-line {
::v-deep .ri-check-line {
color: #c5c5c5 !important;
}
</style>
11 changes: 7 additions & 4 deletions src/components/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,22 @@
{
text: "Web",
value: "WEB_HLS",
selected: true
disabled: true
},
{
text: "Big Screen",
value: "BIG_SCREEN_HLS"
value: "BIG_SCREEN_HLS",
selected: true
},
{
text: "Tablet",
value: "TABLET_HLS"
value: "TABLET_HLS",
disabled: true
},
{
text: "Mobile",
value: "MOBILE_HLS"
value: "MOBILE_HLS",
disabled: true
}
]
};
Expand Down
2 changes: 1 addition & 1 deletion src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default new Vuex.Store({
username: "",
password: "",
authError: "",
streamType: savedState.streamType || "WEB_HLS"
streamType: savedState.streamType || "BIG_SCREEN_HLS"
},
getters: {
layouts: state => state.layouts,
Expand Down

0 comments on commit 5c2a937

Please sign in to comment.