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; 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",