2024-02-17 05:34:50 +01:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="_panel _shadow" :class="$style.root">
|
|
|
|
<div :class="$style.icon">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-open-source" width="40" height="40" viewBox="0 0 24 24" stroke-width="1" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
|
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
|
|
|
<path d="M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<div :class="$style.main">
|
|
|
|
<div :class="$style.title">
|
|
|
|
<I18n :src="i18n.ts.aboutX" tag="span">
|
|
|
|
<template #x>
|
|
|
|
{{ instance.name ?? host }}
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
</div>
|
|
|
|
<div :class="$style.text">
|
|
|
|
<I18n :src="i18n.ts._aboutMisskey.thisIsModifiedVersion" tag="span">
|
|
|
|
<template #name>
|
|
|
|
{{ instance.name ?? host }}
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
<I18n :src="i18n.ts.correspondingSourceIsAvailable" tag="span">
|
|
|
|
<template #anchor>
|
2024-02-19 10:51:25 +01:00
|
|
|
<MkA to="/about-sharkey" class="_link">{{ i18n.ts.aboutMisskey }}</MkA>
|
2024-02-17 05:34:50 +01:00
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
</div>
|
|
|
|
<div class="_buttons">
|
|
|
|
<MkButton @click="close">{{ i18n.ts.gotIt }}</MkButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button class="_button" :class="$style.close" @click="close"><i class="ti ti-x"></i></button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import { host } from '@/config.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { instance } from '@/instance.js';
|
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const zIndex = os.claimZIndex('low');
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
miLocalStorage.setItem('modifiedVersionMustProminentlyOfferInAgplV3Section13Read', 'true');
|
|
|
|
emit('closed');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
position: fixed;
|
|
|
|
z-index: v-bind(zIndex);
|
|
|
|
bottom: var(--margin);
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: calc(100% - (var(--margin) * 2));
|
|
|
|
max-width: 500px;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 25px;
|
|
|
|
width: 100px;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
.icon {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
|
|
.icon {
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
padding: 25px 25px 25px 0;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
margin: 0.7em 0 1em 0;
|
|
|
|
}
|
|
|
|
</style>
|