Skip to content
This repository was archived by the owner on Sep 28, 2023. It is now read-only.

Commit fa67c88

Browse files
committed
Version bump
1 parent 56a9ae2 commit fa67c88

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "raven-reader",
33
"productName": "Raven Reader",
4-
"version": "1.0.63",
4+
"version": "1.0.64",
55
"author": "Hello Efficiency Inc. <[email protected]>",
66
"description": "Simple desktop RSS Reader",
77
"license": "MIT",

src/components/ArticleListItem.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</div>
3232
<h6><strong>{{ article.articles.title }}</strong></h6>
3333
<img
34-
v-if="contentPreview && article.articles.cover"
34+
v-if="!disableImages && article.articles.cover"
3535
:src="article.articles.cover"
3636
class="img-fluid ratio-16x9 my-2"
3737
:alt="article.articles.title"
@@ -77,6 +77,9 @@ export default {
7777
}
7878
},
7979
computed: {
80+
disableImages () {
81+
return this.$store.state.Setting.disableImages
82+
},
8083
contentPreview () {
8184
return this.$store.state.Setting.contentPreview
8285
}

src/mixins/setTheme.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ export default {
22
computed: {
33
isDarkMode () {
44
const el = document.body
5-
console.log(el.classList.contains('app-nightmode'))
65
return el.classList.contains('app-nightmode') || el.classList.contains('app-darkmode')
76
}
87
},

0 commit comments

Comments
 (0)