This repository was archived by the owner on Sep 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " raven-reader" ,
3
3
"productName" : " Raven Reader" ,
4
- "version" : " 1.0.63 " ,
4
+ "version" : " 1.0.64 " ,
5
5
"author" :
" Hello Efficiency Inc. <[email protected] >" ,
6
6
"description" : " Simple desktop RSS Reader" ,
7
7
"license" : " MIT" ,
Original file line number Diff line number Diff line change 31
31
</div >
32
32
<h6 ><strong >{{ article.articles.title }}</strong ></h6 >
33
33
<img
34
- v-if =" contentPreview && article.articles.cover"
34
+ v-if =" !disableImages && article.articles.cover"
35
35
:src =" article.articles.cover"
36
36
class =" img-fluid ratio-16x9 my-2"
37
37
:alt =" article.articles.title"
@@ -77,6 +77,9 @@ export default {
77
77
}
78
78
},
79
79
computed: {
80
+ disableImages () {
81
+ return this .$store .state .Setting .disableImages
82
+ },
80
83
contentPreview () {
81
84
return this .$store .state .Setting .contentPreview
82
85
}
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ export default {
2
2
computed : {
3
3
isDarkMode ( ) {
4
4
const el = document . body
5
- console . log ( el . classList . contains ( 'app-nightmode' ) )
6
5
return el . classList . contains ( 'app-nightmode' ) || el . classList . contains ( 'app-darkmode' )
7
6
}
8
7
} ,
You can’t perform that action at this time.
0 commit comments