From 5920fae40371ee1c343030b1df459a512d61ade2 Mon Sep 17 00:00:00 2001 From: "xiongjie.xue" Date: Thu, 9 Jan 2025 17:55:17 +0800 Subject: [PATCH] =?UTF-8?q?ci(build):=20=F0=9F=8E=A1=20update=20build=20fi?= =?UTF-8?q?le?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++-------- entry/oh-package-lock.json5 | 2 +- library/BuildProfile.ets | 2 +- library/CHANGELOG.md | 9 +++++++++ library/README.md | 12 ++++-------- library/oh-package.json5 | 2 +- 6 files changed, 20 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 355db40..1845e05 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ } ``` -## 别忘了帮我点一个小星星鼓励一下🌟🌟~ +## 别忘了帮我点一个小星星🌟鼓励一下[![Star This Repository](https://img.shields.io/static/v1?label=Star&message=ThisRepository&color=blue)](https://github.com/asasugar/HPRichText) 如果需要直接运行该代码示例,需要 @@ -61,17 +61,13 @@ #### 完整日志:[changelog](https://github.com/asasugar/HPRichText/blob/master/library/CHANGELOG.md) -#### 最近更新:[v3.0.5](https://github.com/asasugar/HPRichText/releases/tag/v3.0.5) (2025-01-06) +#### 最近更新:[v3.0.6](https://github.com/asasugar/HPRichText/releases/tag/v3.0.6) (2025-01-09) ### Bug Fixes - 🐛 - 处理html文本时移除trimHtml方法保留文本源 [(#90)](https://github.com/asasugar/HPRichText/issues/90) - ([f5d9264](https://github.com/asasugar/HPRichText/commit/f5d9264f0bb01265443935191c50c894d47d6499)) - -- 🐛 - 修复点击事件失效问题 [(#88)](https://github.com/asasugar/HPRichText/issues/88) - ([2d423d9](https://github.com/asasugar/HPRichText/commit/2d423d989845dfe0749cf39a7d3e9eac85fb1c37)) + 修复br标签的换行处理逻辑 [(#86)](https://github.com/asasugar/HPRichText/issues/86) + ([4d642d2](https://github.com/asasugar/HPRichText/commit/4d642d22f9c5e8b8ddb6a627401e707b3d1af179)) ## 简介 diff --git a/entry/oh-package-lock.json5 b/entry/oh-package-lock.json5 index 0fc0359..8415d15 100644 --- a/entry/oh-package-lock.json5 +++ b/entry/oh-package-lock.json5 @@ -10,7 +10,7 @@ "packages": { "@ohasasugar/hp-richtext@../library": { "name": "@ohasasugar/hp-richtext", - "version": "3.0.5", + "version": "3.0.6", "resolved": "../library", "registryType": "local" } diff --git a/library/BuildProfile.ets b/library/BuildProfile.ets index 97fa3c1..c8aac22 100644 --- a/library/BuildProfile.ets +++ b/library/BuildProfile.ets @@ -1,7 +1,7 @@ /** * Use these variables when you tailor your ArkTS code. They must be of the const type. */ -export const HAR_VERSION = '3.0.5'; +export const HAR_VERSION = '3.0.6'; export const BUILD_MODE_NAME = 'release'; export const DEBUG = false; export const TARGET_NAME = 'default'; diff --git a/library/CHANGELOG.md b/library/CHANGELOG.md index 0e5bdb9..6acb1f1 100644 --- a/library/CHANGELOG.md +++ b/library/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +### [v3.0.6](https://github.com/asasugar/HPRichText/releases/tag/v3.0.6) (2025-01-09) + +### Bug Fixes + +- 🐛 + 修复br标签的换行处理逻辑 [(#86)](https://github.com/asasugar/HPRichText/issues/86) + ([4d642d2](https://github.com/asasugar/HPRichText/commit/4d642d22f9c5e8b8ddb6a627401e707b3d1af179)) + + ### [v3.0.5](https://github.com/asasugar/HPRichText/releases/tag/v3.0.5) (2025-01-06) ### Bug Fixes diff --git a/library/README.md b/library/README.md index 355db40..1845e05 100644 --- a/library/README.md +++ b/library/README.md @@ -32,7 +32,7 @@ } ``` -## 别忘了帮我点一个小星星鼓励一下🌟🌟~ +## 别忘了帮我点一个小星星🌟鼓励一下[![Star This Repository](https://img.shields.io/static/v1?label=Star&message=ThisRepository&color=blue)](https://github.com/asasugar/HPRichText) 如果需要直接运行该代码示例,需要 @@ -61,17 +61,13 @@ #### 完整日志:[changelog](https://github.com/asasugar/HPRichText/blob/master/library/CHANGELOG.md) -#### 最近更新:[v3.0.5](https://github.com/asasugar/HPRichText/releases/tag/v3.0.5) (2025-01-06) +#### 最近更新:[v3.0.6](https://github.com/asasugar/HPRichText/releases/tag/v3.0.6) (2025-01-09) ### Bug Fixes - 🐛 - 处理html文本时移除trimHtml方法保留文本源 [(#90)](https://github.com/asasugar/HPRichText/issues/90) - ([f5d9264](https://github.com/asasugar/HPRichText/commit/f5d9264f0bb01265443935191c50c894d47d6499)) - -- 🐛 - 修复点击事件失效问题 [(#88)](https://github.com/asasugar/HPRichText/issues/88) - ([2d423d9](https://github.com/asasugar/HPRichText/commit/2d423d989845dfe0749cf39a7d3e9eac85fb1c37)) + 修复br标签的换行处理逻辑 [(#86)](https://github.com/asasugar/HPRichText/issues/86) + ([4d642d2](https://github.com/asasugar/HPRichText/commit/4d642d22f9c5e8b8ddb6a627401e707b3d1af179)) ## 简介 diff --git a/library/oh-package.json5 b/library/oh-package.json5 index d05da73..d34d82a 100644 --- a/library/oh-package.json5 +++ b/library/oh-package.json5 @@ -1,6 +1,6 @@ { "name": "@ohasasugar/hp-richtext", - "version": "3.0.5", + "version": "3.0.6", "description": "hp-richtext, 是一个基于HTML的标签解析,扩展了更多属性和样式的鸿蒙富文本组件,解决了遍历嵌套渲染原生RichText的性能问题。", "homepage": "https://github.com/asasugar/HPRichText", "repository": "https://github.com/asasugar/HPRichText",