Skip to content

Commit

Permalink
feat(mas): remove BETA from image
Browse files Browse the repository at this point in the history
  • Loading branch information
ipy committed Jan 29, 2020
1 parent ad0e97f commit ae6c4ed
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
Binary file modified src/renderer/assets/adv-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions src/renderer/components/BrowsingView/BrowsingHomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,12 @@
fontSize: `${moreInfoSize}px`,
}"
>
{{ isLogin ? $t('browsing.homepage.premiumInfo')
+ `${userInfo.createdAt}` : $t('browsing.homepage.signInfo') }}
<span v-if="isLogin">
{{ $t('browsing.homepage.premiumInfo') + `${userInfo.createdAt}` }}
</span>
<span v-if="!isLogin && isMas">
{{ $t('browsing.homepage.signInfo') }}
</span>
</span>
<button
:style="{
Expand Down Expand Up @@ -171,6 +175,9 @@ export default {
isDarwin() {
return process.platform === 'darwin';
},
isMas() {
return !!process.mas;
},
currentVersion() {
return version;
},
Expand Down
Binary file removed static/nsfw/group1-shard1of1
Binary file not shown.
1 change: 0 additions & 1 deletion static/nsfw/model.json

This file was deleted.

0 comments on commit ae6c4ed

Please sign in to comment.