diff --git a/CHANGELOG.md b/CHANGELOG.md index 7351893..d25d49e 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.5.1] - 2022-05-15 + +### Fixed + +- Remove double note content + ## [1.5.0] - 2022-05-14 ### Added diff --git a/backend/Cargo.lock b/backend/Cargo.lock index d7d55da..394fac6 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "cryptgeon" -version = "1.5.0" +version = "1.5.1" dependencies = [ "actix-files", "actix-web", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 86e01e6..0c12a9b 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cryptgeon" -version = "1.5.0" +version = "1.5.1" authors = ["cupcakearmy "] edition = "2021" diff --git a/frontend/src/lib/ui/ShowNote.svelte b/frontend/src/lib/ui/ShowNote.svelte index dbf9cce..181d1c2 100644 --- a/frontend/src/lib/ui/ShowNote.svelte +++ b/frontend/src/lib/ui/ShowNote.svelte @@ -41,9 +41,6 @@

{@html $t('show.warning_will_not_see_again')}

{#if note.meta.type === 'text'} -
- {note.contents} -
{@html contentWithLinks(note.contents)}