Skip to content

Commit d000e5e

Browse files
committed
feat: v4.49.2
1 parent 1aeccc1 commit d000e5e

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "surmon.me",
3-
"version": "4.49.1",
3+
"version": "4.49.2",
44
"description": "Surmon.me blog",
55
"author": "Surmon",
66
"license": "MIT",

src/config/app.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ export const IDENTITIES = Object.freeze({
4545
MUSIC_163_BGM_ALBUM_ID: '638949385',
4646
DOUBAN_USER_ID: '56647958',
4747
GITHUB_USER_NAME: 'surmon-china',
48-
INSTAGRAM_USERNAME: 'surmon666',
49-
THREADS_USER_NAME: 'surmon666',
48+
INSTAGRAM_USERNAME: 'surmon_sattva',
5049
BTC_ADDRESS: 'bc1qhpdu03tnexkj4xsm3lqzyjdddz6z0rj2n7fsze',
5150
ETH_ADDRESS: '0xaD556974D449126efdeF23f4FF581861C301cB77'
5251
})
@@ -77,6 +76,6 @@ export const VALUABLE_LINKS = Object.freeze({
7776
DOUBAN_MOVIE: `https://movie.douban.com/people/nocower/collect`,
7877
LINKEDIN: 'https://www.linkedin.com/in/surmon',
7978
INSTAGRAM: `https://www.instagram.com/${IDENTITIES.INSTAGRAM_USERNAME}`,
80-
THREADS: `https://www.threads.net/@${IDENTITIES.THREADS_USER_NAME}`,
81-
THREADS_FOLLOW: `https://www.threads.net/intent/follow?username=${IDENTITIES.THREADS_USER_NAME}`
79+
THREADS: `https://www.threads.net/@${IDENTITIES.INSTAGRAM_USERNAME}`,
80+
THREADS_FOLLOW: `https://www.threads.net/intent/follow?username=${IDENTITIES.INSTAGRAM_USERNAME}`
8281
})

src/pages/about/desktop/statistic/threads.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
</i18n>
5151
</p>
5252
<p>
53-
<i class="iconfont icon-heart"></i>
54-
<span v-if="isZhLang">收获了</span>
55-
<statistic-count large primary split :count="store.data?.totalLikes || '-'" />
56-
<span v-if="isZhLang">次喜欢</span>
57-
<span v-else>likes</span>
53+
<i class="iconfont icon-threads"></i>
54+
<span v-if="isZhLang">发布了</span>
55+
<statistic-count large primary split count="NaN" />
56+
<span v-if="isZhLang">篇帖子</span>
57+
<span v-else>threads</span>
5858
</p>
5959
<p>
6060
<i class="iconfont icon-follower"></i>

src/pages/snippets/desktop/index.vue

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,10 @@
2626
<webfont><i18n v-bind="i18nTitle" /></webfont>
2727
</template>
2828
<template #description>
29-
<ulink :href="VALUABLE_LINKS.THREADS" class="link">
30-
<i class="iconfont icon-threads"></i>
31-
Threads
32-
</ulink>
29+
<ulink :href="VALUABLE_LINKS.THREADS" class="link"><i class="iconfont icon-threads"></i> Threads</ulink>
3330
<divider type="vertical" size="lg" color="#ffffffcc" />
3431
<ulink :href="VALUABLE_LINKS.ZHIHU" class="link">
35-
<i class="iconfont icon-zhihu"></i>
36-
Zhihu.com
32+
<i class="iconfont icon-zhihu-full"></i> zhihu.com
3733
</ulink>
3834
</template>
3935
</page-banner>

src/pages/snippets/mobile/index.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,14 @@
4444
<div class="snippets-content">
4545
<div class="statistics">
4646
<ulink class="item" :href="VALUABLE_LINKS.THREADS_FOLLOW">
47-
<i class="iconfont icon-threads"></i> Threads
47+
<i class="iconfont icon-threads"></i>
48+
<strong>Threads</strong>
4849
</ulink>
4950
<divider type="vertical" />
50-
<ulink class="item" :href="VALUABLE_LINKS.ZHIHU"><i class="iconfont icon-zhihu"></i> Zhihu.com</ulink>
51+
<ulink class="item" :href="VALUABLE_LINKS.ZHIHU">
52+
<i class="iconfont icon-zhihu"></i>
53+
<strong>zhihu.com</strong>
54+
</ulink>
5155
</div>
5256
<ul class="cards">
5357
<li class="item" v-for="(media, index) in allMedias" :key="index" data-allow-mismatch>
@@ -138,6 +142,10 @@
138142
flex: 1;
139143
text-align: center;
140144
font-size: $font-size-h3;
145+
146+
.iconfont {
147+
margin-right: $gap-xs;
148+
}
141149
}
142150
}
143151

0 commit comments

Comments
 (0)