added changelog

This commit is contained in:
supertiger1234 2019-11-13 09:31:10 +00:00
parent e15bd97532
commit e6546c88d4
2 changed files with 25 additions and 17 deletions

View file

@ -10,7 +10,6 @@
export default { export default {
props: { props: {
message: String, message: String,
require: true
}, },
computed: { computed: {
markdown: function() { markdown: function() {
@ -22,26 +21,26 @@
<style> <style>
pre { pre {
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
.codeblock { .codeblock {
background-color: rgba(0, 0, 0, 0.397); background-color: rgba(0, 0, 0, 0.397);
padding: 5px; padding: 5px;
border-radius: 5px; border-radius: 5px;
word-wrap: break-word; word-wrap: break-word;
word-break: break-word; word-break: break-word;
white-space: pre-wrap; white-space: pre-wrap;
overflow-wrap: anywhere; overflow-wrap: anywhere;
} }
.content-message img.emoji { .content-message img.emoji {
object-fit: contain; object-fit: contain;
height: 2em; height: 2em;
width: 2em; width: 2em;
margin: 1px; margin: 1px;
vertical-align: -9px; vertical-align: -9px;
} }
@ -50,6 +49,6 @@
} }
.link { .link {
color: rgb(86, 159, 253); color: rgb(86, 159, 253);
} }
</style> </style>

View file

@ -9,12 +9,21 @@ const prototype = {
}; };
const config = [ const config = [
{
version: 8.2,
title: "Better formatter + better performance.",
shortTitle: "",
date: "13/11/2019",
headColor: "#0c7b7f",
new: [
"We have changed the markdown formatter from markdown-it to simple-markdown. This has also improved the performance. (Thanks bree!)"
],
},
{ {
version: 8.1, version: 8.1,
title: "Move server channels", title: "Move server channels",
shortTitle: "", shortTitle: "",
date: "12/11/2019", date: "12/11/2019",
headColor: "#0c7b7f",
new: [ new: [
"You can now move channels to make it more organized." "You can now move channels to make it more organized."
], ],