From eaeacbfb1b928049ad782b3a11b8297c9042e9b5 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Wed, 4 Jun 2025 09:23:13 +0700 Subject: [PATCH 1/2] =?UTF-8?q?=D0=A3=D0=BB=D1=83=D1=87=D1=88=D0=B5=D0=BD?= =?UTF-8?q?=D0=BE=20=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=82=D0=B8=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D1=82=D0=B5=D0=BA=D1=81=D1=82?= =?UTF-8?q?=D0=B0=20=D0=BF=D1=80=D0=B8=20=D0=BA=D0=BE=D0=BF=D0=B8=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B8=20=D0=B8=D0=B7=20=D0=BE?= =?UTF-8?q?=D0=BA=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/Reader/CopyTextPage/CopyTextPage.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/components/Reader/CopyTextPage/CopyTextPage.vue b/client/components/Reader/CopyTextPage/CopyTextPage.vue index 4b5122c6..9dc43bf2 100644 --- a/client/components/Reader/CopyTextPage/CopyTextPage.vue +++ b/client/components/Reader/CopyTextPage/CopyTextPage.vue @@ -52,18 +52,21 @@ class CopyTextPage { from = (from < 0 ? 0 : from); to = paraIndex + 100; to = (to > parsed.para.length ? parsed.para.length : to); - cut = '

..... Текст вырезан. Если хотите скопировать больше, поставьте в настройках галочку "Загружать весь текст"'; + cut = '

..... Текст вырезан. Если хотите скопировать больше, поставьте в настройках галочку "Загружать весь текст"'; } if (from > 0) text += cut; for (let i = from; i < to; i++) { const p = parsed.para[i]; + if (p.addIndex > 0) + continue; + const parts = parsed.splitToStyle(p.text); if (this.stopInit) return; - text += `

`; + text += `

  `; for (const part of parts) text += part.text; From 01313d66b2cd0700d4a2fc1ed038e8e3dcbc3316 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Wed, 4 Jun 2025 09:28:15 +0700 Subject: [PATCH 2/2] =?UTF-8?q?=D0=92=D0=B5=D1=80=D1=81=D0=B8=D1=8F=201.2.?= =?UTF-8?q?8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/Reader/versionHistory.js | 13 +++++++++++++ package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/client/components/Reader/versionHistory.js b/client/components/Reader/versionHistory.js index 0ca43e1e..6855a170 100644 --- a/client/components/Reader/versionHistory.js +++ b/client/components/Reader/versionHistory.js @@ -1,4 +1,17 @@ export const versionHistory = [ +{ + version: '1.2.8', + releaseDate: '2025-06-04', + showUntil: '2025-06-03', + content: +` +
    +
  • исправление багов
  • +
+ +` +}, + { version: '1.2.7', releaseDate: '2025-02-22', diff --git a/package.json b/package.json index 432c216a..265754bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "liberama", - "version": "1.2.7", + "version": "1.2.8", "author": "Book Pauk ", "license": "CC0-1.0", "repository": "bookpauk/liberama",