2021-08-13 10:59:54 +02:00
|
|
|
<template>
|
2021-12-18 04:12:47 +01:00
|
|
|
<MkModal ref="modal" :z-priority="'middle'" @click="$refs.modal.close()" @closed="$emit('closed')">
|
2021-08-13 10:59:54 +02:00
|
|
|
<div class="ewlycnyt">
|
|
|
|
<div class="title">{{ $ts.misskeyUpdated }}</div>
|
|
|
|
<div class="version">✨{{ version }}🚀</div>
|
|
|
|
<MkButton full @click="whatIsNew">{{ $ts.whatIsNew }}</MkButton>
|
2021-10-22 19:45:25 +02:00
|
|
|
<MkButton class="gotIt" primary full @click="$refs.modal.close()">{{ $ts.gotIt }}</MkButton>
|
2021-08-13 10:59:54 +02:00
|
|
|
</div>
|
|
|
|
</MkModal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkModal from '@/components/ui/modal.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import { version } from '@/config';
|
2021-08-13 10:59:54 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkModal,
|
|
|
|
MkButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
version: version,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
whatIsNew() {
|
|
|
|
this.$refs.modal.close();
|
2021-11-05 08:18:52 +01:00
|
|
|
window.open(`https://misskey-hub.net/docs/releases.html#_${version.replace(/\./g, '-')}`, '_blank');
|
2021-08-13 10:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ewlycnyt {
|
|
|
|
position: relative;
|
|
|
|
padding: 32px;
|
|
|
|
min-width: 320px;
|
|
|
|
max-width: 480px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .version {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
2021-10-22 19:45:25 +02:00
|
|
|
|
|
|
|
> .gotIt {
|
|
|
|
margin: 8px 0 0 0;
|
|
|
|
}
|
2021-08-13 10:59:54 +02:00
|
|
|
}
|
|
|
|
</style>
|