diff --git a/RELEASES.md b/RELEASES.md index 25c30861a..44de088aa 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,4 +1,4 @@ -# Lemmy v0.7.0 Release (2020-06-2X) +# Lemmy v0.7.0 Release (2020-06-22) ## Breaking Change to our image server: Pictshare to Pict-rs migration guide @@ -17,10 +17,11 @@ You'll also have to update your nginx config, use the [one here](https://github. *You'll have to log in again to pick up your avatar* -Apart from that, we've closed [~90 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1), including: +Apart from that, we've closed [~100 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1), including: - Site-wide list of recent comments. - Reconnecting websockets. +- Swapped out pictshare for [pict-rs](https://git.asonix.dog/asonix/pict-rs). - Lots more themes, including a default light one. - Expandable embeds for post links (and thumbnails), from iframely. - Better icons. diff --git a/ansible/VERSION b/ansible/VERSION index ed2321280..66dedaceb 100644 --- a/ansible/VERSION +++ b/ansible/VERSION @@ -1 +1 @@ -v0.6.79 +v0.6.82 diff --git a/docker/prod/docker-compose.yml b/docker/prod/docker-compose.yml index 863ff593b..bee5d75e3 100644 --- a/docker/prod/docker-compose.yml +++ b/docker/prod/docker-compose.yml @@ -12,7 +12,7 @@ services: restart: always lemmy: - image: dessalines/lemmy:v0.6.79 + image: dessalines/lemmy:v0.6.82 ports: - "127.0.0.1:8536:8536" restart: always diff --git a/server/src/version.rs b/server/src/version.rs index a27f3acb9..d7d3193d6 100644 --- a/server/src/version.rs +++ b/server/src/version.rs @@ -1 +1 @@ -pub const VERSION: &str = "v0.6.79"; +pub const VERSION: &str = "v0.6.82"; diff --git a/ui/src/components/comment-form.tsx b/ui/src/components/comment-form.tsx index 79aa91bdd..24bfb7cbb 100644 --- a/ui/src/components/comment-form.tsx +++ b/ui/src/components/comment-form.tsx @@ -61,7 +61,7 @@ export class CommentForm extends Component { buttonTitle: !this.props.node ? capitalizeFirstLetter(i18n.t('post')) : this.props.edit - ? capitalizeFirstLetter(i18n.t('edit')) + ? capitalizeFirstLetter(i18n.t('save')) : capitalizeFirstLetter(i18n.t('reply')), previewMode: false, loading: false, @@ -138,7 +138,7 @@ export class CommentForm extends Component { /> {this.state.previewMode && (
{ )} - )} {!this.props.showContext && this.linkBtn} +