From 4ac5adac3e434bd68f698a486bce607027439f30 Mon Sep 17 00:00:00 2001 From: wangjia <809946525@qq.com> Date: Mon, 15 Jun 2026 16:31:47 +0800 Subject: [PATCH] chore: release v1.0.44 Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 6 ++++++ backend/internal/handler/public.go | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5685421..834daf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.44] - 2026-06-15 + +### 改进 +- 微信分享卡片标题改为商品名称(之前仍显示"岩美") +- 微信分享卡片描述去掉"扫码验真"后缀 + ## [1.0.43] - 2026-06-15 ### 修复 diff --git a/backend/internal/handler/public.go b/backend/internal/handler/public.go index 78a516a..3f61d3a 100644 --- a/backend/internal/handler/public.go +++ b/backend/internal/handler/public.go @@ -340,9 +340,9 @@ func buildOGTitle(product model.Product) string { func buildProductOG(product model.Product, shopName, publicURL string) string { title := buildOGTitle(product) - // og:description:规格(度数/香型/容量)| 门店名正品 · 扫码验真 + // og:description:规格(度数/香型/容量)| 门店名正品 desc := product.Spec - suffix := "正品 · 扫码验真" + suffix := "正品" if shopName != "" { suffix = shopName + suffix }