mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
113 lines
2.3 KiB
Vue
113 lines
2.3 KiB
Vue
<template>
|
|
<div class="content">
|
|
<div class="container-fluid whats-new">
|
|
<div class="row">
|
|
<div class="col-md whats-new-text-wrapper">
|
|
<div class="logo">
|
|
<img src="../assets/img/lens-logo.svg">
|
|
</div>
|
|
<!-- Safe to use v-html as we self generate the html locally only -->
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<div class="whats-new-text" v-html="content">
|
|
<!-- What's new content -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md whats-new-actions-wrapper">
|
|
<div class="whats-new-actions">
|
|
<button type="button" class="btn btn-primary" @click="toLanding">
|
|
Ok, got it!
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import marked from 'marked'
|
|
import fs from 'fs'
|
|
import path from "path"
|
|
|
|
export default {
|
|
name: 'WhatsNewPage',
|
|
data() {
|
|
return {
|
|
error: "",
|
|
// eslint-disable-next-line
|
|
content: marked(fs.readFileSync(path.join(__static, "RELEASE_NOTES.md"), 'utf8')),
|
|
}
|
|
},
|
|
components: {},
|
|
computed: {
|
|
},
|
|
methods: {
|
|
toLanding: async function() {
|
|
await this.$store.dispatch("updateLastSeenAppVersion")
|
|
this.$router.push({
|
|
name: "landing-page",
|
|
}).catch(err => {})
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.content {
|
|
background: #282b2f url(../assets/img/crane.svg) no-repeat;
|
|
background-position: 0px 35%;
|
|
background-size: 85%;
|
|
background-clip: content-box;
|
|
}
|
|
.content > .whats-new{
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color:rgba(0, 0, 0, 0.3);
|
|
|
|
.whats-new-text-wrapper{
|
|
position: absolute;
|
|
top: 20px;
|
|
bottom: 77px;
|
|
left: 0;
|
|
right: 0;
|
|
overflow-y: scroll;
|
|
.logo {
|
|
padding: 30px 30px;
|
|
max-width: 1000px;
|
|
img {
|
|
width: 200px;
|
|
}
|
|
}
|
|
.whats-new-text{
|
|
padding: 10px 30px;
|
|
max-width: 1000px;
|
|
h1{
|
|
font-size: 24px;
|
|
}
|
|
h2{
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.whats-new-actions-wrapper{
|
|
position: absolute;
|
|
height: 77px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border-top: 1px solid #333;
|
|
background: var(--lens-pane-bg);
|
|
.whats-new-actions{
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|