Skip to content

Commit

Permalink
Add Chinese authorized seller information on Buy page and update Term…
Browse files Browse the repository at this point in the history
…s to link to IPR Statement
  • Loading branch information
pilotmoon committed Nov 27, 2024
1 parent 8806f9c commit adbf3f7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
6 changes: 3 additions & 3 deletions site/lizhi.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ prev: false
next: false
---

# DIGITALYCHEE
# DIGITALYCHEE Authorization Statement

## 授权证明

**Pilotmoon Software** 授权 **苏州荔枝数码科技有限公司** 为中国区官方合作伙伴,
并享有本公司旗下正版软件 **PopClip** 在中国的销售资质。
该合作伙伴的商城名为 「**数码荔枝正版软件**」商城,
商城网址为:<https://lizhi.shop>
商城网址为:<https://lizhi.shop>, <https://digitalychee.taobao.com>
请勿在其他未经授权的网站购买我们的软件。
我们不再为这样的顾客提供任何售后服务,
包括:密钥找回、版本更新、技术支持。
Expand All @@ -22,4 +22,4 @@ next: false

## AUTHORIZATION CERTIFICATE

We, Pilotmoon Software, the developer of PopClip, authorize DIGITALYCHEE TECHNOLOGY CO, LTD as our official partner in China, and it owns the right to sell our copyrighted software on their store: <https://lizhi.shop>. Please don't purchase our product(s) from any other websites. Purchases from unauthorized websites will not receive official customer support, such as license retrieval, software updates, and technical assistance.
We, Pilotmoon Software, the developer of PopClip, authorize DIGITALYCHEE TECHNOLOGY CO, LTD as our official partner in China, and it owns the right to sell our copyrighted software on their store: <https://lizhi.shop>, <https://digitalychee.taobao.com>. Please don't purchase our products from any other websites. Purchases from unauthorized websites will not receive official customer support, such as license retrieval, software updates, and technical assistance.
14 changes: 12 additions & 2 deletions site/src/Buy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const log = useLogger();
const store = useStoreState();
const purchaseInfo = usePurchaseInfo();
const isLizhi = computed(() =>
config.lizhi.countries.includes(store.countryCode.value),
);
Expand Down Expand Up @@ -190,7 +189,7 @@ function trackBuy(button) {
<span :class="$style.price">{{ roundPrice(store.paddleProducts.value.popclip_lifetime?.displayPrice ?? "") }}</span>
<span v-if="store.paddleProducts.value.popclip_lifetime?.isTaxed" :class="$style.tax">+ tax</span>
</div>
<div v-if="store.paddleProducts.value.popclip_lifetime?.message" :class="$style.priceMessage">
<div v-if="store.paddleProducts.value.popclip_lifetime?.message && !isLizhi" :class="$style.priceMessage">
<span>{{ store.paddleProducts.value.popclip_lifetime?.message }}</span>
</div>
<div v-if="store.paddleProducts.value.popclip_lifetime?.coupon" :class="$style.couponInfo">
Expand All @@ -216,6 +215,17 @@ function trackBuy(button) {
{{ store.isLoadedForCoupon !== null ? `Showing prices for ${getFlagEmoji(store.countryCode.value)} ${store.countryName.value}` :
`Loading prices...` }}
</div>
<div v-if="isLizhi" class="warning custom-block">
<p class="custom-block-title">Warning: Avoid fraudulent sellers in 🇨🇳 China!</p>
<p>Please not that the <b>ONLY</b> Chinese company authorized to sell PopClip licenses is <b>DIGITALYCHEE (数码荔枝)</b>, at the following websites:
✅ <a href="https://lizhi.shop">lizhi.shop</a> and
<a href="https://digitalychee.taobao.com">digitalychee.taobao.com</a>.
</p>
<p>❌🙅 If you buy a license key from any other seller it is fraudulent and
invalid. For more information please see <a href="/ipr-china"> Intellectual Property Rights Statement</a>.
</p>
</div>
</template>
<style module>
Expand Down
4 changes: 2 additions & 2 deletions site/src/composables/useStoreState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export const useStoreState = createGlobalState(() => {
// "popclip-store-masUrl",
// getMacAppStoreUrl(config.mas.appId, config.mas.slug),
// );
const lizhiPrice = useStorage("popclip-store-lizhiPrice", config.lizhi.price);
const lizhiUrl = useStorage("popclip-store-lizhiUrl", config.lizhi.storeUrl);
const lizhiPrice = config.lizhi.price;
const lizhiUrl = config.lizhi.storeUrl;
return {
countryCode,
countryName,
Expand Down
3 changes: 2 additions & 1 deletion site/terms.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ apply to that purchase.

- Worldwide (subscriptions): Setapp (<https://setapp.com>)

- In China: Digitalychee (<https://lizhi.io>) - [certificate](/lizhi)
- In China: DIGITALYCHEE (<https://lizhi.io>). See: [Authorization Statement](/lizhi) and [Intellectual Property Rights
Statement](/ipr-china).

<hr style="margin: 3em 0;">

Expand Down

0 comments on commit adbf3f7

Please sign in to comment.