2019-02-18 09:18:32 +00:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
id="changelog"
|
|
|
|
class="window"
|
2019-03-01 14:18:16 +00:00
|
|
|
aria-label="Changelog"
|
|
|
|
>
|
2019-02-18 09:18:32 +00:00
|
|
|
<div class="header">
|
2019-04-13 20:44:04 +00:00
|
|
|
<SidebarToggle />
|
2019-02-18 09:18:32 +00:00
|
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<a
|
|
|
|
id="back-to-help"
|
|
|
|
href="#"
|
2019-03-01 14:18:16 +00:00
|
|
|
data-target="Help"
|
|
|
|
>« Help</a>
|
2019-02-18 09:18:32 +00:00
|
|
|
|
2019-02-20 15:09:44 +00:00
|
|
|
<template v-if="version">
|
|
|
|
<h1 class="title">Release notes for {{ version }}</h1>
|
2019-02-18 09:18:32 +00:00
|
|
|
|
2019-02-20 15:09:44 +00:00
|
|
|
<template v-if="changelog">
|
|
|
|
<h3>Introduction</h3>
|
|
|
|
<div class="changelog-text">{{ changelog }}</div>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<p>Unable to retrieve releases from GitHub.</p>
|
|
|
|
<p>
|
|
|
|
<a
|
|
|
|
:href="`https://github.com/thelounge/thelounge/releases/tag/v${version}`"
|
|
|
|
target="_blank"
|
2019-03-01 14:18:16 +00:00
|
|
|
rel="noopener"
|
|
|
|
>View release notes for this version on GitHub</a>
|
2019-02-20 15:09:44 +00:00
|
|
|
</p>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<p v-else>Loading changelog…</p>
|
2019-02-18 09:18:32 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-04-13 20:44:04 +00:00
|
|
|
import SidebarToggle from "../SidebarToggle.vue";
|
|
|
|
|
2019-02-18 09:18:32 +00:00
|
|
|
export default {
|
|
|
|
name: "Changelog",
|
2019-04-13 20:44:04 +00:00
|
|
|
components: {
|
|
|
|
SidebarToggle,
|
|
|
|
},
|
2019-02-20 15:09:44 +00:00
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
2019-02-18 09:18:32 +00:00
|
|
|
};
|
|
|
|
</script>
|