Updated changelog

This commit is contained in:
Maximilian Giller 2022-02-11 21:21:28 +01:00
parent b60f33b454
commit 9cfba93f65

View file

@ -1,5 +1,16 @@
<template> <template>
<LayoutMinimal title="Changelog"> <LayoutMinimal title="Changelog">
<BaseSection>
<BaseTitle size="small">
11.02.2022
</BaseTitle>
<ul>
<li>Implemented daily and monthly statistics</li>
<li>Added tool</li>
</ul>
</BaseSection>
<BaseSection>
<BaseTitle size="small"> <BaseTitle size="small">
23.11.2021 23.11.2021
</BaseTitle> </BaseTitle>
@ -7,6 +18,9 @@
<li>Added tools page</li> <li>Added tools page</li>
<li>Visual tweaks</li> <li>Visual tweaks</li>
</ul> </ul>
</BaseSection>
<BaseSection>
<BaseTitle size="small"> <BaseTitle size="small">
07.11.2021 07.11.2021
</BaseTitle> </BaseTitle>
@ -15,24 +29,34 @@
<li>Created basic footer</li> <li>Created basic footer</li>
<li>Added live record timer</li> <li>Added live record timer</li>
</ul> </ul>
</BaseSection>
<BaseSection>
<BaseTitle size="small"> <BaseTitle size="small">
27.07.2021 27.07.2021
</BaseTitle> </BaseTitle>
<ul> <ul>
<li>Added simple statistics</li> <li>Added simple statistics</li>
</ul> </ul>
</BaseSection>
<BaseSection>
<BaseTitle size="small"> <BaseTitle size="small">
21.05.2021 21.05.2021
</BaseTitle> </BaseTitle>
<ul> <ul>
<li>Visual tweaks</li> <li>Visual tweaks</li>
</ul> </ul>
</BaseSection>
<BaseSection>
<BaseTitle size="small"> <BaseTitle size="small">
12.04.2021 12.04.2021
</BaseTitle> </BaseTitle>
<ul> <ul>
<li>Added toggle to change visibility of single projects and tags</li> <li>Added toggle to change visibility of single projects and tags</li>
</ul> </ul>
</BaseSection>
</LayoutMinimal> </LayoutMinimal>
</template> </template>
@ -40,12 +64,14 @@
// @ is an alias to /src // @ is an alias to /src
import LayoutMinimal from "@/components/layout/LayoutMinimal"; import LayoutMinimal from "@/components/layout/LayoutMinimal";
import BaseTitle from "@/components/base/BaseTitle"; import BaseTitle from "@/components/base/BaseTitle";
import BaseSection from "../components/base/BaseSection.vue";
export default { export default {
name: "Changelog", name: "Changelog",
components: { components: {
LayoutMinimal, LayoutMinimal,
BaseTitle BaseTitle,
BaseSection
} }
}; };
</script> </script>