docs: 更新文档内容并优化站点配置
1. 替换赞助页面为微信收款码 2. 新增常见问题引导、高级教程内容 3. 优化导航菜单结构与站点SEO配置 4. 更新依赖版本与静态资源缓存规则 5. 新增本地图标资源与赞助墙组件
0
.playwright-mcp/page-2026-05-11T13-57-55-833Z.yml
Normal file
@@ -1,4 +1,4 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
import { defineConfig, type HeadConfig } from 'vitepress'
|
||||
|
||||
const SITE_URL = 'https://pve.oowo.cc'
|
||||
const SITE_NAME = 'PVE Tools Pro'
|
||||
@@ -25,6 +25,23 @@ export default defineConfig({
|
||||
cleanUrls: true,
|
||||
lastUpdated: true,
|
||||
ignoreDeadLinks: 'localhostLinks',
|
||||
vite: {
|
||||
plugins: [
|
||||
{
|
||||
name: 'skip-unused-fonts',
|
||||
generateBundle(_options, bundle) {
|
||||
// 项目主要使用 HarmonyOS Sans,Inter 仅作回退
|
||||
// 仅保留 latin 和 latin-ext 子集,移除 cyrillic/greek/vietnamese 等
|
||||
const keep = /inter-(roman|italic)-(latin|latinext)/i
|
||||
for (const fileName of Object.keys(bundle)) {
|
||||
if (/inter.*\.woff2$/i.test(fileName) && !keep.test(fileName)) {
|
||||
delete bundle[fileName]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
sitemap: {
|
||||
hostname: SITE_URL,
|
||||
lastmodDateOnly: true,
|
||||
@@ -51,6 +68,7 @@ export default defineConfig({
|
||||
['meta', { property: 'og:site_name', content: SITE_NAME }],
|
||||
['meta', { property: 'og:locale', content: 'zh_CN' }],
|
||||
['meta', { name: 'twitter:card', content: 'summary_large_image' }],
|
||||
['meta', { name: 'twitter:site', content: '@Mapleawaa' }],
|
||||
['link', { rel: 'stylesheet', href: 'https://s1.hdslb.com/bfs/static/jinkela/longtu/images/harmonyos_sans_sc.css' }],
|
||||
['link', { rel: 'stylesheet', href: 'https://s1.hdslb.com/bfs/static/jinkela/longtu/images/harmonyos_sans_sc_mono.css' }]
|
||||
],
|
||||
@@ -58,10 +76,11 @@ export default defineConfig({
|
||||
const url = pageToUrl(page)
|
||||
const pageTitle = title || SITE_NAME
|
||||
const pageDescription = description || SITE_DESCRIPTION
|
||||
const isArticle = page.startsWith('advanced/')
|
||||
|
||||
return [
|
||||
const head: HeadConfig[] = [
|
||||
['link', { rel: 'canonical', href: url }],
|
||||
['meta', { property: 'og:type', content: 'website' }],
|
||||
['meta', { property: 'og:type', content: isArticle ? 'article' : 'website' }],
|
||||
['meta', { property: 'og:title', content: pageTitle }],
|
||||
['meta', { property: 'og:description', content: pageDescription }],
|
||||
['meta', { property: 'og:url', content: url }],
|
||||
@@ -72,6 +91,29 @@ export default defineConfig({
|
||||
['meta', { name: 'twitter:description', content: pageDescription }],
|
||||
['meta', { name: 'twitter:image', content: DEFAULT_OG_IMAGE }]
|
||||
]
|
||||
|
||||
// 首页添加 JSON-LD 结构化数据
|
||||
if (page === '' || page === 'index.md') {
|
||||
head.push([
|
||||
'script',
|
||||
{ type: 'application/ld+json' },
|
||||
JSON.stringify({
|
||||
'@context': 'https://schema.org',
|
||||
'@type': 'WebSite',
|
||||
name: SITE_NAME,
|
||||
url: SITE_URL,
|
||||
description: SITE_DESCRIPTION,
|
||||
author: { '@type': 'Person', name: 'Maple' },
|
||||
potentialAction: {
|
||||
'@type': 'SearchAction',
|
||||
target: `${SITE_URL}/?q={search_term_string}`,
|
||||
'query-input': 'required name=search_term_string'
|
||||
}
|
||||
})
|
||||
])
|
||||
}
|
||||
|
||||
return head
|
||||
},
|
||||
themeConfig: {
|
||||
logo: {
|
||||
@@ -80,14 +122,30 @@ export default defineConfig({
|
||||
},
|
||||
nav: [
|
||||
{ text: '首页', link: '/' },
|
||||
{ text: '公告', link: '/update' },
|
||||
{ text: '使用指南', link: '/guide' },
|
||||
{ text: '提交插件', link: '/submit-plugin' },
|
||||
{ text: '高级教程', link: '/advanced/' },
|
||||
{ text: '更新日志', link: '/update' },
|
||||
{ text: '开发计划', link: '/todo' },
|
||||
{ text: 'TOS', link: '/tos' },
|
||||
{ text: 'ULA', link: '/ula' },
|
||||
{ text: '提交插件', link: '/submit-plugin' },
|
||||
{
|
||||
text: '项目动态',
|
||||
items: [
|
||||
{ text: '更新日志', link: '/update' },
|
||||
{ text: '开发计划', link: '/todo' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '支持',
|
||||
items: [
|
||||
{ text: '付费技术支持', link: '/pay' },
|
||||
{ text: '赞助和加群', link: '/sponsor' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '法律条款',
|
||||
items: [
|
||||
{ text: '服务条款(TOS)', link: '/tos' },
|
||||
{ text: '最终用户许可(ULA)', link: '/ula' }
|
||||
]
|
||||
},
|
||||
{ text: 'GitHub', link: 'https://github.com/Mapleawaa/PVE-Tools-9' }
|
||||
],
|
||||
search: {
|
||||
@@ -105,11 +163,23 @@ export default defineConfig({
|
||||
{ text: '提交插件', link: '/submit-plugin' },
|
||||
{ text: '更新日志', link: '/update' },
|
||||
{ text: '开发计划', link: '/todo' },
|
||||
{ text: '服务条款(TOS)', link: '/tos' },
|
||||
{ text: '最终用户许可(ULA)', link: '/ula' },
|
||||
{ text: '常见问题', link: '/faq' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '支持与赞助',
|
||||
items: [
|
||||
{ text: '付费技术支持', link: '/pay' },
|
||||
{ text: '赞助和加群', link: '/sponsor' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '法律条款',
|
||||
items: [
|
||||
{ text: '服务条款(TOS)', link: '/tos' },
|
||||
{ text: '最终用户许可(ULA)', link: '/ula' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '高级教程',
|
||||
items: [
|
||||
|
||||
@@ -11,8 +11,8 @@ const sources = computed(() => {
|
||||
{ name: '全国可用 Pages托管', url: config.cloudflare || '' },
|
||||
{ name: 'Github国内加速', url: config.ghfast || '' },
|
||||
{ name: 'Github源站', url: config.github || '' },
|
||||
{ name: '中国大陆备案CDN', url: config.edgeone }
|
||||
]
|
||||
{ name: '中国大陆备案CDN', url: config.edgeone, disabled: !config.edgeone || config.edgeone === '未上线' }
|
||||
].filter(s => !s.disabled)
|
||||
})
|
||||
|
||||
const currentIndex = ref(0)
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<script setup>
|
||||
import { useData } from 'vitepress'
|
||||
import todoData from '../../../todo-data.json'
|
||||
import SponsorWall from './SponsorWall.vue'
|
||||
|
||||
const { frontmatter } = useData()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="frontmatter.my_features" class="home-content-container">
|
||||
<div class="features-wrapper">
|
||||
<div class="main-content">
|
||||
<div class="features-grid">
|
||||
<div v-for="feature in frontmatter.my_features" :key="feature.title" class="feature-card">
|
||||
<div class="feature-icon" :class="feature.iconClass"></div>
|
||||
@@ -16,23 +16,9 @@ const { frontmatter } = useData()
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-wrapper">
|
||||
<div class="timeline-box">
|
||||
<div class="timeline-header">
|
||||
<h2 class="timeline-box-title">更新时间线</h2>
|
||||
<a href="/todo" class="timeline-more">更多计划 ></a>
|
||||
</div>
|
||||
<div class="timeline-list">
|
||||
<div v-for="(event, index) in todoData.timeline.slice(0, 5)" :key="index" class="timeline-item">
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-content">
|
||||
<div class="timeline-date">{{ event.date }}</div>
|
||||
<div class="timeline-event">{{ event.event }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="sponsor-sidebar">
|
||||
<SponsorWall />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -47,10 +33,17 @@ const { frontmatter } = useData()
|
||||
padding: 48px 24px;
|
||||
}
|
||||
|
||||
.features-wrapper {
|
||||
.main-content {
|
||||
flex: 2;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sponsor-sidebar {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
/* 功能卡片网格 */
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
@@ -70,7 +63,6 @@ const { frontmatter } = useData()
|
||||
border-color: var(--vp-c-brand);
|
||||
}
|
||||
|
||||
/* 这里的图标样式尽量向 VitePress 官方靠拢,并配合 custom.css */
|
||||
.feature-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -101,30 +93,29 @@ const { frontmatter } = useData()
|
||||
mask-position: center;
|
||||
}
|
||||
|
||||
/* 图标映射 - 这里的类名需要在 index.md 中指定 */
|
||||
.icon-rocket::before {
|
||||
-webkit-mask-image: url('https://api.iconify.design/mdi:rocket-launch-outline.svg');
|
||||
mask-image: url('https://api.iconify.design/mdi:rocket-launch-outline.svg');
|
||||
.icon-rocket::before {
|
||||
-webkit-mask-image: url('/icons/rocket-launch-outline.svg');
|
||||
mask-image: url('/icons/rocket-launch-outline.svg');
|
||||
}
|
||||
.icon-sparkles::before {
|
||||
-webkit-mask-image: url('https://api.iconify.design/mdi:sparkles.svg');
|
||||
mask-image: url('https://api.iconify.design/mdi:sparkles.svg');
|
||||
.icon-sparkles::before {
|
||||
-webkit-mask-image: url('/icons/sparkles.svg');
|
||||
mask-image: url('/icons/sparkles.svg');
|
||||
}
|
||||
.icon-harddrive::before {
|
||||
-webkit-mask-image: url('https://api.iconify.design/mdi:harddisk.svg');
|
||||
mask-image: url('https://api.iconify.design/mdi:harddisk.svg');
|
||||
.icon-harddrive::before {
|
||||
-webkit-mask-image: url('/icons/harddisk.svg');
|
||||
mask-image: url('/icons/harddisk.svg');
|
||||
}
|
||||
.icon-gpu::before {
|
||||
-webkit-mask-image: url('https://api.iconify.design/mdi:video-card.svg');
|
||||
mask-image: url('https://api.iconify.design/mdi:video-card.svg');
|
||||
.icon-gpu::before {
|
||||
-webkit-mask-image: url('/icons/video-card.svg');
|
||||
mask-image: url('/icons/video-card.svg');
|
||||
}
|
||||
.icon-clock::before {
|
||||
-webkit-mask-image: url('https://api.iconify.design/mdi:clock-outline.svg');
|
||||
mask-image: url('https://api.iconify.design/mdi:clock-outline.svg');
|
||||
.icon-clock::before {
|
||||
-webkit-mask-image: url('/icons/clock-outline.svg');
|
||||
mask-image: url('/icons/clock-outline.svg');
|
||||
}
|
||||
.icon-more::before {
|
||||
-webkit-mask-image: url('https://api.iconify.design/mdi:dots-horizontal.svg');
|
||||
mask-image: url('https://api.iconify.design/mdi:dots-horizontal.svg');
|
||||
.icon-more::before {
|
||||
-webkit-mask-image: url('/icons/dots-horizontal.svg');
|
||||
mask-image: url('/icons/dots-horizontal.svg');
|
||||
}
|
||||
|
||||
.feature-title {
|
||||
@@ -142,99 +133,11 @@ const { frontmatter } = useData()
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Timeline side */
|
||||
.timeline-wrapper {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.timeline-box {
|
||||
background-color: var(--vp-c-bg-soft);
|
||||
padding: 24px;
|
||||
border-radius: 12px;
|
||||
border: 1px solid var(--vp-c-bg-soft);
|
||||
height: fit-content;
|
||||
position: sticky;
|
||||
top: 80px;
|
||||
}
|
||||
|
||||
.timeline-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 12px;
|
||||
border-bottom: 1px solid var(--vp-c-divider);
|
||||
}
|
||||
|
||||
.timeline-box-title {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
background: none;
|
||||
-webkit-text-fill-color: initial;
|
||||
}
|
||||
|
||||
.timeline-more {
|
||||
font-size: 0.8rem;
|
||||
color: var(--vp-c-brand);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.timeline-more:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.timeline-list {
|
||||
position: relative;
|
||||
padding-left: 16px;
|
||||
border-left: 1px solid var(--vp-c-divider);
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.timeline-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.timeline-dot {
|
||||
position: absolute;
|
||||
left: -21px;
|
||||
top: 6px;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
background-color: var(--vp-c-brand);
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--vp-c-bg-soft);
|
||||
}
|
||||
|
||||
.timeline-date {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
color: var(--vp-c-brand);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.timeline-event {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
color: var(--vp-c-text-1);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
/* 响应式 */
|
||||
@media (max-width: 960px) {
|
||||
.home-content-container {
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.timeline-box {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
266
Web/.vitepress/theme/components/SponsorWall.vue
Normal file
@@ -0,0 +1,266 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
import { Heart } from 'lucide-vue-next'
|
||||
import sponsorData from '../../../sponsor-data.json'
|
||||
|
||||
const showAll = ref(false)
|
||||
|
||||
const topSponsors = computed(() => sponsorData.top_sponsors || [])
|
||||
const recentSponsors = computed(() => {
|
||||
const list = sponsorData.recent_sponsors || []
|
||||
return showAll.value ? list : list.slice(0, 8)
|
||||
})
|
||||
|
||||
const sponsorLink = computed(() => sponsorData.sponsor_link || '#')
|
||||
const qqGroup = computed(() => sponsorData.qq_group || '')
|
||||
const hasMore = computed(() => (sponsorData.recent_sponsors || []).length > 8)
|
||||
|
||||
function formatAmount(amount) {
|
||||
return `¥ ${amount.toFixed(2)}`
|
||||
}
|
||||
|
||||
function formatDate(dateStr) {
|
||||
if (!dateStr) return ''
|
||||
const d = new Date(dateStr)
|
||||
return `${d.getMonth() + 1}/${d.getDate()}`
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="sponsor-wall">
|
||||
<!-- 标题 -->
|
||||
<div class="wall-header">
|
||||
<div class="header-icon"><Heart :size="20" /></div>
|
||||
<h2 class="wall-title">感谢投喂</h2>
|
||||
</div>
|
||||
|
||||
<!-- 最高赞助 -->
|
||||
<div v-if="topSponsors.length > 0" class="section">
|
||||
<div v-for="(s, i) in topSponsors" :key="'top-' + i" class="top-card">
|
||||
<div class="top-badge">TOP</div>
|
||||
<div class="top-info">
|
||||
<div class="top-name">{{ s.name }}</div>
|
||||
<div v-if="s.message" class="top-msg">{{ s.message }}</div>
|
||||
</div>
|
||||
<div class="top-amount">{{ formatAmount(s.amount) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 投喂列表 -->
|
||||
<div class="feed-list">
|
||||
<div v-for="(s, i) in recentSponsors" :key="'feed-' + i" class="feed-item">
|
||||
<div class="feed-avatar">{{ s.name.charAt(0) }}</div>
|
||||
<div class="feed-info">
|
||||
<span class="feed-name">{{ s.name }}</span>
|
||||
<span class="feed-meta">{{ s.channel }} · {{ formatDate(s.date) }}</span>
|
||||
</div>
|
||||
<div class="feed-amount">{{ formatAmount(s.amount) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button v-if="hasMore && !showAll" class="show-more" @click="showAll = true">
|
||||
查看全部 →
|
||||
</button>
|
||||
|
||||
<!-- 赞助入口 -->
|
||||
<div class="wall-footer">
|
||||
<a :href="sponsorLink" target="_blank" rel="noopener" class="cta-btn">
|
||||
☕ 请作者喝咖啡
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.sponsor-wall {
|
||||
background-color: var(--vp-c-bg-soft);
|
||||
border-radius: 12px;
|
||||
border: 1px solid var(--vp-c-bg-soft);
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.wall-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 1px solid var(--vp-c-divider);
|
||||
}
|
||||
|
||||
.header-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--vp-c-brand);
|
||||
}
|
||||
|
||||
.wall-title {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
background: none;
|
||||
-webkit-text-fill-color: initial;
|
||||
}
|
||||
|
||||
/* 最高赞助 */
|
||||
.section {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.top-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
background: linear-gradient(135deg, var(--vp-c-bg) 0%, var(--vp-c-bg-soft) 100%);
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
border-radius: 10px;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.top-badge {
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
background: var(--vp-c-brand);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.top-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.top-name {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.top-msg {
|
||||
font-size: 0.75rem;
|
||||
color: var(--vp-c-text-3);
|
||||
margin-top: 2px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.top-amount {
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
color: var(--vp-c-brand);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* 投喂列表 */
|
||||
.feed-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.feed-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.feed-item:hover {
|
||||
background-color: var(--vp-c-bg);
|
||||
}
|
||||
|
||||
.feed-avatar {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: var(--vp-c-default-soft);
|
||||
color: var(--vp-c-text-2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.feed-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.feed-name {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.feed-meta {
|
||||
font-size: 0.7rem;
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
|
||||
.feed-amount {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
color: var(--vp-c-brand);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* 查看全部 */
|
||||
.show-more {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-top: 12px;
|
||||
padding: 8px;
|
||||
background: transparent;
|
||||
border: 1px dashed var(--vp-c-divider);
|
||||
border-radius: 8px;
|
||||
color: var(--vp-c-text-2);
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.show-more:hover {
|
||||
border-color: var(--vp-c-brand);
|
||||
color: var(--vp-c-brand);
|
||||
}
|
||||
|
||||
/* 赞助入口 */
|
||||
.wall-footer {
|
||||
margin-top: 16px;
|
||||
padding-top: 16px;
|
||||
border-top: 1px solid var(--vp-c-divider);
|
||||
}
|
||||
|
||||
.cta-btn {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
background: var(--vp-c-brand);
|
||||
color: #fff;
|
||||
border-radius: 8px;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.25s;
|
||||
}
|
||||
|
||||
.cta-btn:hover {
|
||||
background: var(--vp-c-brand-dark);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
|
||||
}
|
||||
</style>
|
||||
@@ -93,16 +93,16 @@
|
||||
}
|
||||
|
||||
.VPFeatures .item:nth-child(1) .icon::before {
|
||||
mask-image: url('https://api.iconify.design/mdi:server-network.svg');
|
||||
mask-image: url('/icons/server-network.svg');
|
||||
}
|
||||
.VPFeatures .item:nth-child(2) .icon::before {
|
||||
mask-image: url('https://api.iconify.design/mdi:shield-check-outline.svg');
|
||||
mask-image: url('/icons/shield-check-outline.svg');
|
||||
}
|
||||
.VPFeatures .item:nth-child(3) .icon::before {
|
||||
mask-image: url('https://api.iconify.design/mdi:harddisk.svg');
|
||||
mask-image: url('/icons/harddisk.svg');
|
||||
}
|
||||
.VPFeatures .item:nth-child(4) .icon::before {
|
||||
mask-image: url('https://api.iconify.design/mdi:dots-horizontal.svg');
|
||||
mask-image: url('/icons/dots-horizontal.svg');
|
||||
}
|
||||
|
||||
/* 页面切换动画基础设置 */
|
||||
@@ -192,6 +192,11 @@ html.view-transitioning {
|
||||
}
|
||||
|
||||
/* 兼容不支持 View Transitions 的浏览器 */
|
||||
@keyframes fade-in {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
.vp-doc {
|
||||
animation: fade-in 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
@@ -33,6 +33,22 @@ description: PVE Tools Pro 高级教程,覆盖 GPU 直通、SR-IOV、CPU 调
|
||||
解释为何不建议自动化安装驱动,并给出手工安装与版本匹配建议。
|
||||
- [点击阅读教程](./nvidia-vgpu-driver-notes)
|
||||
|
||||
### 7. VM 备份、迁移与 Cloud-Init
|
||||
涵盖虚拟机备份策略、在线/离线迁移、Cloud-Init 配置与模板制作,保障业务连续性。
|
||||
- [点击阅读教程](./vm-backup-migration-cloudinit)
|
||||
|
||||
### 8. 宿主机网络、防火墙与 IPv6
|
||||
深入理解 Linux 网桥、iptables/nftables 防火墙规则,以及 IPv6 在 PVE 中的配置与实践。
|
||||
- [点击阅读教程](./host-network-firewall-ipv6)
|
||||
|
||||
### 9. 误操作后的数据恢复
|
||||
当误删虚拟机、误格式化存储或配置出错时的应急恢复方案与止损思路。
|
||||
- [点击阅读教程](./data-recovery-after-mistake)
|
||||
|
||||
### 10. 如何连接到 PVE 主机 SSH
|
||||
从 Windows、macOS、Linux、Android、iOS 等平台连接 PVE 主机 SSH 的完整指南。
|
||||
- [点击阅读教程](./how-to-connect-ssh)
|
||||
|
||||
---
|
||||
|
||||
> [!CAUTION]
|
||||
|
||||
BIN
Web/assets/WeChat.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
@@ -5,6 +5,8 @@ description: PVE Tools Pro 常见问题,包括支持版本、安全性、运
|
||||
|
||||
# 常见问题
|
||||
|
||||
> 新用户请先阅读 [使用指南](./guide),了解全部功能请查看 [功能特性](./features),获取最新动态请查看 [更新日志](./update)。
|
||||
|
||||
## Q: 这个脚本安全吗?
|
||||
A: 脚本是完全开源的,您可以随时在 GitHub 上查看源代码。它在执行任何修改前都会尝试备份原配置文件。
|
||||
|
||||
|
||||
@@ -7,6 +7,8 @@ description: 了解 PVE Tools Pro 支持的软件源管理、VM 运维、网络
|
||||
|
||||
PVE Tools Pro 围绕 Proxmox VE 9.x 的高频运维场景做了集中封装,重点覆盖源管理、系统维护、虚拟机生命周期、宿主机网络、防火墙、IPv6 与 GPU / PCI 直通等模块。
|
||||
|
||||
> 快速开始请查看 [使用指南](./guide),遇到问题请查看 [常见问题](./faq),深入学习请浏览 [高级教程](./advanced/)。
|
||||
|
||||
## 1. 软件源与系统维护
|
||||
|
||||
- 支持 Debian 官方源与常用国内镜像切换。
|
||||
|
||||
BIN
Web/home-full.png
Normal file
|
After Width: | Height: | Size: 306 KiB |
@@ -9,9 +9,9 @@
|
||||
"preview": "vitepress preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"vitepress": "^1.6.4",
|
||||
"vue": "^3.5.27"
|
||||
"@types/bun": "~1.3.8",
|
||||
"vitepress": "~1.6.4",
|
||||
"vue": "~3.5.27"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5"
|
||||
|
||||
28
Web/public/_headers
Normal file
@@ -0,0 +1,28 @@
|
||||
# 带 hash 的静态资源 - 长缓存 immutable
|
||||
/assets/*
|
||||
Cache-Control: public, max-age=31536000, immutable
|
||||
|
||||
# HTML 页面 - 每次重新验证
|
||||
/*
|
||||
Cache-Control: public, max-age=0, must-revalidate
|
||||
|
||||
# 静态资源(Logo、图片等) - 1小时缓存
|
||||
/logo*
|
||||
Cache-Control: public, max-age=3600
|
||||
|
||||
/og-image.png
|
||||
Cache-Control: public, max-age=3600
|
||||
|
||||
# 脚本文件(PVE-Tools.sh 等) - 10分钟缓存
|
||||
/PVE-Tools.sh
|
||||
Cache-Control: public, max-age=600
|
||||
|
||||
/VERSION
|
||||
Cache-Control: public, max-age=600
|
||||
|
||||
/UPDATE
|
||||
Cache-Control: public, max-age=600
|
||||
|
||||
# 字体文件 - 长缓存
|
||||
/fonts/*
|
||||
Cache-Control: public, max-age=31536000, immutable
|
||||
1
Web/public/icons/clock-outline.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 20a8 8 0 0 0 8-8a8 8 0 0 0-8-8a8 8 0 0 0-8 8a8 8 0 0 0 8 8m0-18a10 10 0 0 1 10 10a10 10 0 0 1-10 10C6.47 22 2 17.5 2 12A10 10 0 0 1 12 2m.5 5v5.25l4.5 2.67l-.75 1.23L11 13V7z"/></svg>
|
||||
|
After Width: | Height: | Size: 301 B |
1
Web/public/icons/dots-horizontal.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M16 12a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2"/></svg>
|
||||
|
After Width: | Height: | Size: 307 B |
1
Web/public/icons/harddisk.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m6 2a6 6 0 0 0-6 6c0 3.31 2.69 6 6.1 6l-.88-2.23a1.01 1.01 0 0 1 .37-1.37l.86-.5a1.01 1.01 0 0 1 1.37.37l1.92 2.42A5.98 5.98 0 0 0 18 10a6 6 0 0 0-6-6m0 5a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m-5 9a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m5.09-4.73l2.49 6.31l2.59-1.5l-4.22-5.31z"/></svg>
|
||||
|
After Width: | Height: | Size: 505 B |
1
Web/public/icons/rocket-launch-outline.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m13.16 22.19l-1.66-3.84c1.6-.58 3.07-1.35 4.43-2.27l-2.78 6.11m-7.5-9.69l-3.84-1.65l6.11-2.78C7 9.43 6.23 10.91 5.65 12.5M20 4c-2.96-.22-5.2.83-7.55 3.31c-2.36 2.47-3.36 4.5-3.95 6.04l2.17 2.1c2.29-.87 4.33-2.18 6.03-3.89C20 8.27 20.17 5.4 20 4m-9 1.9c2.63-2.8 7-4.82 10.66-3.55c0 0 2.12 4.96-3.55 10.65c-2.2 2.17-4.58 3.5-6.72 4.34c-.24.09-1.15.39-2.13-.46l-2.13-2.13c-.56-.56-.74-1.38-.47-2.13C7.5 10.5 8.41 8.69 11 5.9M6.25 22H4.84l4.09-4.1c.3.21.63.36.97.45zM2 22v-1.41l4.77-4.78l1.43 1.42L3.41 22zm0-2.83v-1.42l3.65-3.65c.09.35.24.68.45.97zM16 6a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4"/></svg>
|
||||
|
After Width: | Height: | Size: 718 B |
1
Web/public/icons/server-network.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M13 19h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-7zM4 3h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1m5 4h1V5H9zm0 8h1v-2H9zM5 5v2h2V5zm0 8v2h2v-2z"/></svg>
|
||||
|
After Width: | Height: | Size: 394 B |
1
Web/public/icons/shield-check-outline.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21 11c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5l9-4l9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m-2-4l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9"/></svg>
|
||||
|
After Width: | Height: | Size: 302 B |
1
Web/public/icons/sparkles.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m19 1l-1.26 2.75L15 5l2.74 1.26L19 9l1.25-2.74L23 5l-2.75-1.25M9 4L6.5 9.5L1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5M19 15l-1.26 2.74L15 19l2.74 1.25L19 23l1.25-2.75L23 19l-2.75-1.26"/></svg>
|
||||
|
After Width: | Height: | Size: 304 B |
1
Web/public/icons/video-card.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M2 7v1.5h1V17h1.5V7zm4 0v9h1v1h7v-1h8V7zm11.5 2a2.5 2.5 0 0 1 2.5 2.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5A2.5 2.5 0 0 1 17.5 9"/></svg>
|
||||
|
After Width: | Height: | Size: 257 B |
@@ -1,137 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="800"
|
||||
height="800"
|
||||
viewBox="0 0 211.66666 211.66666"
|
||||
version="1.1"
|
||||
id="svg924"
|
||||
inkscape:export-filename="/home/daniela/Documents/proxmox/Proxmox/Marketing/Logo/proxmox-logo/Screen/Full Lockup/stacked/proxmox-logo-color-stacked-bgblack.png"
|
||||
inkscape:export-xdpi="360"
|
||||
inkscape:export-ydpi="360"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="proxmox-logo-stacked-inverted-color-bgtrans.svg">
|
||||
<defs
|
||||
id="defs918" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.38489655"
|
||||
inkscape:cx="541.41545"
|
||||
inkscape:cy="189.70435"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1720"
|
||||
inkscape:window-height="1343"
|
||||
inkscape:window-x="1720"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
units="px" />
|
||||
<metadata
|
||||
id="metadata921">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-11.346916,-31.368461)">
|
||||
<g
|
||||
id="g209">
|
||||
<g
|
||||
transform="matrix(0.84666672,0,0,0.84666672,544.05161,-814.30036)"
|
||||
id="g1288"
|
||||
style="fill:#ffffff">
|
||||
<g
|
||||
id="g1286"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.8336px;line-height:125%;font-family:Helion;-inkscape-font-specification:Helion;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
transform="matrix(1.2435137,0,0,1.2435137,-791.06481,553.75862)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1272"
|
||||
d="m 168.85142,500.9595 h -11.85747 c -0.46554,0.0129 -0.85842,0.18085 -1.17864,0.50374 -0.32023,0.32294 -0.48707,0.72335 -0.50052,1.20125 v 16.3783 c 1.27229,-0.0318 2.33145,-0.472 3.17749,-1.32073 0.84604,-0.84873 1.2852,-1.91543 1.3175,-3.2001 h 9.04164 c 1.28573,-0.0317 2.35673,-0.47199 3.21302,-1.32072 0.85624,-0.84873 1.30079,-1.91543 1.33364,-3.2001 v -4.49499 c -0.0328,-1.28573 -0.4774,-2.35673 -1.33364,-3.21301 -0.85629,-0.85625 -1.92729,-1.3008 -3.21302,-1.33364 z m -9.04164,9.60997 v -5.06332 h 7.93081 c 0.0463,-0.0231 0.23141,0.0232 0.55542,0.13885 0.32398,0.11573 0.50912,0.43972 0.55541,0.97198 v 2.81583 c 0.0231,0.0474 -0.0231,0.23681 -0.13885,0.56833 -0.11573,0.33154 -0.43972,0.52098 -0.97198,0.56833 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1274"
|
||||
d="m 194.05931,508.89031 v -3.38416 c -0.0318,-1.28573 -0.47201,-2.35673 -1.32072,-3.21301 -0.84875,-0.85625 -1.91545,-1.3008 -3.2001,-1.33364 h -11.85747 c -0.47684,0.0129 -0.87295,0.18085 -1.18833,0.50374 -0.31538,0.32294 -0.47899,0.72335 -0.49083,1.20125 v 16.3783 c 1.27336,-0.0318 2.33683,-0.472 3.1904,-1.32073 0.85357,-0.84873 1.29705,-1.91543 1.33042,-3.2001 v -1.13666 h 5.14082 l 2.60916,3.71999 c 0.4187,0.60063 0.94398,1.07208 1.57583,1.41437 0.63182,0.34229 1.33793,0.51667 2.11833,0.52313 0.37618,-5.4e-4 0.74107,-0.0447 1.09468,-0.1324 0.35358,-0.0877 0.68618,-0.21582 0.99781,-0.38427 l -3.64249,-5.19249 c 1.05592,-0.22872 1.92133,-0.74647 2.59625,-1.55322 0.67487,-0.80675 1.02362,-1.77011 1.04624,-2.8901 z m -13.53663,0.5425 v -3.92666 h 7.87915 c 0.0474,-0.0231 0.23679,0.0232 0.56833,0.13885 0.33151,0.11573 0.52096,0.43972 0.56833,0.97198 v 1.705 c 0.0237,0.0463 -0.0237,0.23143 -0.14208,0.55541 -0.11842,0.324 -0.44995,0.50914 -0.99458,0.55542 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1276"
|
||||
d="m 210.1751,500.9595 h -9.01581 c -1.28467,0.0328 -2.35137,0.47739 -3.2001,1.33364 -0.84873,0.85628 -1.28897,1.92728 -1.32072,3.21301 v 9.01581 c 0.0317,1.28467 0.47199,2.35137 1.32072,3.2001 0.84873,0.84873 1.91543,1.28897 3.2001,1.32073 h 9.01581 c 1.28465,-0.0318 2.35135,-0.472 3.2001,-1.32073 0.84871,-0.84873 1.28895,-1.91543 1.32072,-3.2001 v -9.01581 c -0.0318,-1.28573 -0.47201,-2.35673 -1.32072,-3.21301 -0.84875,-0.85625 -1.91545,-1.3008 -3.2001,-1.33364 z m 0,12.4258 c 0.0237,0.0474 -0.0237,0.23681 -0.14208,0.56833 -0.11842,0.33153 -0.44995,0.52098 -0.99458,0.56833 h -6.74249 c -0.0474,0.0237 -0.23681,-0.0237 -0.56833,-0.14208 -0.33153,-0.1184 -0.52098,-0.44993 -0.56833,-0.99458 v -6.76832 c -0.0237,-0.0463 0.0237,-0.23141 0.14208,-0.55541 0.1184,-0.32398 0.44993,-0.50912 0.99458,-0.55542 h 6.74249 c 0.0473,-0.0231 0.23679,0.0232 0.56833,0.13885 0.33151,0.11573 0.52096,0.43972 0.56833,0.97198 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1278"
|
||||
d="m 237.4767,502.25116 c -0.39183,-0.39179 -0.84822,-0.69964 -1.36917,-0.92354 -0.52099,-0.22387 -1.08071,-0.33797 -1.67916,-0.34229 -0.6367,0.005 -1.22333,0.1308 -1.75989,0.37781 -0.53659,0.24705 -1.00052,0.58611 -1.39177,1.01719 l -3.90082,4.28832 -3.92666,-4.28832 c -0.4015,-0.44238 -0.86434,-0.78467 -1.38854,-1.02688 -0.5242,-0.24217 -1.1033,-0.36487 -1.73729,-0.36812 -0.59847,0.004 -1.15819,0.11842 -1.67916,0.34229 -0.52097,0.2239 -0.97736,0.53175 -1.36916,0.92354 l 7.05248,7.74998 -7.05248,7.74998 c 0.3918,0.40419 0.84819,0.71957 1.36916,0.94615 0.52097,0.22657 1.08069,0.34175 1.67916,0.34552 0.62538,-0.005 1.20878,-0.13079 1.75021,-0.37782 0.54142,-0.24703 1.00857,-0.58609 1.40145,-1.01718 l 3.90083,-4.28832 3.90082,4.28832 c 0.39125,0.43109 0.85518,0.77015 1.39177,1.01718 0.53656,0.24703 1.12319,0.37297 1.75989,0.37782 0.59845,-0.004 1.15817,-0.11895 1.67916,-0.34552 0.52096,-0.22658 0.97734,-0.54196 1.36917,-0.94615 l -7.05249,-7.74998 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1280"
|
||||
d="m 260.98042,500.9595 h -2.84166 c -0.92947,0.0129 -1.75721,0.2648 -2.48322,0.75562 -0.72604,0.49085 -1.27607,1.14314 -1.6501,1.95687 l 0.0258,-0.0517 -2.66082,5.83832 -2.635,-5.83832 v 0.0517 c -0.36275,-0.81373 -0.90955,-1.46602 -1.64041,-1.95687 -0.73087,-0.49082 -1.56184,-0.74269 -2.49291,-0.75562 h -2.81583 c -0.48922,0.0129 -0.89286,0.18085 -1.21093,0.50374 -0.31808,0.32294 -0.48276,0.72335 -0.49406,1.20125 v 16.3783 c 1.27336,-0.0318 2.33683,-0.472 3.19041,-1.32073 0.85357,-0.84873 1.29704,-1.91543 1.33041,-3.2001 v -8.65414 c 0.002,-0.11785 0.0371,-0.2115 0.10656,-0.28094 0.0694,-0.0694 0.16307,-0.10493 0.28094,-0.10656 0.0673,0.002 0.13293,0.0237 0.19698,0.0646 0.064,0.0409 0.11032,0.0883 0.13885,0.14208 l 5.01166,11.05664 c 0.0947,0.19752 0.23464,0.3579 0.41979,0.48115 0.18512,0.12325 0.38964,0.18675 0.61354,0.19052 0.22226,-0.003 0.42354,-0.0619 0.60385,-0.1776 0.18028,-0.11571 0.32344,-0.27179 0.42948,-0.46823 L 257.4154,505.687 c 0.0393,-0.0538 0.0899,-0.10116 0.15177,-0.14208 0.0619,-0.0409 0.13184,-0.0624 0.2099,-0.0646 0.10547,0.002 0.19158,0.0371 0.25833,0.10656 0.0667,0.0694 0.10116,0.16309 0.10333,0.28094 v 8.65414 c 0.0333,1.28467 0.47682,2.35137 1.33042,3.2001 0.85355,0.84873 1.91702,1.28897 3.19041,1.32073 v -16.3783 c -0.0119,-0.4779 -0.17548,-0.87831 -0.49084,-1.20125 -0.3154,-0.32289 -0.71151,-0.49081 -1.18833,-0.50374 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1282"
|
||||
d="m 278.79561,500.9595 h -9.01581 c -1.28467,0.0328 -2.35137,0.47739 -3.20009,1.33364 -0.84874,0.85628 -1.28898,1.92728 -1.32073,3.21301 v 9.01581 c 0.0317,1.28467 0.47199,2.35137 1.32073,3.2001 0.84872,0.84873 1.91542,1.28897 3.20009,1.32073 h 9.01581 c 1.28466,-0.0318 2.35135,-0.472 3.2001,-1.32073 0.84871,-0.84873 1.28896,-1.91543 1.32073,-3.2001 v -9.01581 c -0.0318,-1.28573 -0.47202,-2.35673 -1.32073,-3.21301 -0.84875,-0.85625 -1.91544,-1.3008 -3.2001,-1.33364 z m 0,12.4258 c 0.0237,0.0474 -0.0237,0.23681 -0.14208,0.56833 -0.11842,0.33153 -0.44994,0.52098 -0.99458,0.56833 h -6.74248 c -0.0474,0.0237 -0.23681,-0.0237 -0.56834,-0.14208 -0.33153,-0.1184 -0.52097,-0.44993 -0.56833,-0.99458 v -6.76832 c -0.0237,-0.0463 0.0237,-0.23141 0.14209,-0.55541 0.11839,-0.32398 0.44992,-0.50912 0.99458,-0.55542 h 6.74248 c 0.0473,-0.0231 0.23679,0.0232 0.56833,0.13885 0.33152,0.11573 0.52096,0.43972 0.56833,0.97198 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1284"
|
||||
d="m 306.0972,502.25116 c -0.39182,-0.39179 -0.84821,-0.69964 -1.36916,-0.92354 -0.52099,-0.22387 -1.08071,-0.33797 -1.67916,-0.34229 -0.6367,0.005 -1.22333,0.1308 -1.75989,0.37781 -0.5366,0.24705 -1.00052,0.58611 -1.39177,1.01719 l -3.90083,4.28832 -3.92665,-4.28832 c -0.4015,-0.44238 -0.86435,-0.78467 -1.38854,-1.02688 -0.52421,-0.24217 -1.1033,-0.36487 -1.73729,-0.36812 -0.59847,0.004 -1.15819,0.11842 -1.67916,0.34229 -0.52097,0.2239 -0.97736,0.53175 -1.36917,0.92354 l 7.05249,7.74998 -7.05249,7.74998 c 0.39181,0.40419 0.8482,0.71957 1.36917,0.94615 0.52097,0.22657 1.08069,0.34175 1.67916,0.34552 0.62538,-0.005 1.20878,-0.13079 1.7502,-0.37782 0.54142,-0.24703 1.00857,-0.58609 1.40146,-1.01718 l 3.90082,-4.28832 3.90083,4.28832 c 0.39125,0.43109 0.85517,0.77015 1.39177,1.01718 0.53656,0.24703 1.12319,0.37297 1.75989,0.37782 0.59845,-0.004 1.15817,-0.11895 1.67916,-0.34552 0.52095,-0.22658 0.97734,-0.54196 1.36916,-0.94615 l -7.05248,-7.74998 z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1290"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.730891"
|
||||
d="m 141.89758,116.88641 25.41237,27.92599 c -2.7927,2.88547 -6.70224,4.65495 -10.98527,4.65495 -4.56076,0 -8.56315,-1.95514 -11.35592,-5.02707 l -14.05575,-15.45172 -10.9846,-12.10215 10.9846,-12.00854 14.05575,-15.452532 c 2.79277,-3.071175 6.79516,-5.027074 11.35592,-5.027074 4.28303,0 8.19257,1.768759 10.98527,4.561525 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1292"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.730891"
|
||||
d="m 92.334245,116.8861 -25.41238,27.92603 c 2.7927,2.88547 6.702237,4.65495 10.985287,4.65495 4.560744,0 8.563138,-1.95514 11.355905,-5.02707 L 103.3188,128.98825 114.30338,116.8861 103.3188,104.87756 89.263057,89.425028 c -2.792767,-3.071215 -6.795161,-5.027074 -11.355905,-5.027074 -4.28305,0 -8.192587,1.768759 -10.985287,4.561526 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1294"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66712"
|
||||
d="m 127.12922,130.73289 -10.02585,-11.04587 -10.0263,11.04587 -23.195348,25.48982 c 2.548811,2.54902 6.118169,4.16327 10.025148,4.16327 4.16359,0 7.64778,-1.69975 10.28111,-4.58817 l 12.91539,-14.10405 12.82882,14.10405 c 2.5493,2.80293 6.20218,4.58817 10.36513,4.58817 3.9091,0 7.47768,-1.61425 10.02652,-4.16327 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1296"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66712"
|
||||
d="M 127.1286,103.03813 117.10275,114.084 107.07645,103.03813 83.881116,77.548321 c 2.548838,-2.548932 6.118156,-4.163226 10.025162,-4.163226 4.163603,0 7.647762,1.699732 10.281082,4.588143 l 12.91539,14.104094 12.82882,-14.104094 c 2.54934,-2.802999 6.20221,-4.588143 10.36513,-4.588143 3.90911,0 7.47772,1.614294 10.02653,4.163226 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 211.667 211.667"><g style="fill:#fff"><g style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:25.8336px;line-height:125%;font-family:Helion;-inkscape-font-specification:Helion;text-align:start;letter-spacing:0;word-spacing:0;writing-mode:lr-tb;text-anchor:start;fill:#fff;fill-opacity:1;stroke:none"><path d="M168.851 500.96h-11.857q-.698.018-1.179.503a1.7 1.7 0 0 0-.5 1.201v16.379q1.908-.048 3.177-1.32 1.269-1.274 1.318-3.201h9.041q1.929-.048 3.213-1.32 1.285-1.275 1.334-3.2v-4.496q-.049-1.929-1.334-3.213-1.284-1.284-3.213-1.334m-9.041 9.61v-5.064h7.93q.07-.035.556.139t.555.972v2.816q.035.071-.138.568-.174.498-.972.568zm34.25-1.679v-3.384q-.049-1.929-1.321-3.213-1.274-1.284-3.2-1.334H177.68q-.715.02-1.188.504a1.72 1.72 0 0 0-.491 1.201v16.379q1.91-.048 3.19-1.32 1.28-1.274 1.33-3.201v-1.137h5.142l2.609 3.72q.628.9 1.575 1.415.948.513 2.119.523.564 0 1.094-.133.531-.13.998-.384l-3.642-5.192q1.584-.344 2.596-1.554t1.046-2.89m-13.537.543v-3.927h7.879q.071-.035.568.139.498.174.568.972v1.705q.036.069-.142.555-.177.487-.994.556zm29.654-8.473h-9.016q-1.926.048-3.2 1.333-1.273 1.284-1.32 3.213v9.016q.047 1.927 1.32 3.2t3.2 1.32h9.016q1.927-.046 3.2-1.32 1.274-1.273 1.32-3.2v-9.016q-.046-1.929-1.32-3.213-1.273-1.284-3.2-1.333m0 12.425q.035.072-.142.569t-.995.568h-6.742q-.071.035-.568-.142-.497-.178-.569-.995v-6.768q-.035-.069.142-.555.178-.486.995-.556h6.742q.071-.035.569.139.496.174.568.972zm27.302-11.134a4.3 4.3 0 0 0-1.37-.923 4.3 4.3 0 0 0-3.439.035q-.804.37-1.391 1.017l-3.901 4.289-3.927-4.289a4.3 4.3 0 0 0-1.388-1.027 4.1 4.1 0 0 0-1.738-.368 4.3 4.3 0 0 0-1.679.343 4.3 4.3 0 0 0-1.369.923l7.053 7.75-7.053 7.75a4.25 4.25 0 0 0 3.048 1.292 4.28 4.28 0 0 0 3.152-1.395l3.9-4.289 3.902 4.289q.587.646 1.391 1.017a4.2 4.2 0 0 0 1.76.378 4.24 4.24 0 0 0 3.049-1.292l-7.053-7.75zm23.503-1.291h-2.841q-1.395.018-2.483.755a4.67 4.67 0 0 0-1.65 1.957l.025-.052-2.66 5.839-2.636-5.839v.052a4.53 4.53 0 0 0-1.64-1.957q-1.096-.736-2.493-.755h-2.816q-.734.018-1.21.503a1.7 1.7 0 0 0-.495 1.201v16.379q1.91-.048 3.19-1.32 1.281-1.274 1.331-3.201v-8.654a.4.4 0 0 1 .107-.281.4.4 0 0 1 .28-.107.4.4 0 0 1 .198.065q.096.06.138.142l5.012 11.057q.143.296.42.48.278.186.613.191.334-.005.604-.177.27-.174.43-.469l5.011-11.082a.6.6 0 0 1 .152-.142.4.4 0 0 1 .21-.065.35.35 0 0 1 .258.107.4.4 0 0 1 .104.28v8.655q.05 1.927 1.33 3.2t3.19 1.32v-16.378a1.72 1.72 0 0 0-.49-1.2 1.66 1.66 0 0 0-1.189-.504m17.816 0h-9.016q-1.928.048-3.2 1.333-1.274 1.284-1.321 3.213v9.016q.048 1.927 1.32 3.2 1.275 1.274 3.2 1.32h9.017q1.926-.046 3.2-1.32 1.273-1.273 1.32-3.2v-9.016q-.047-1.929-1.32-3.213t-3.2-1.333m0 12.425q.035.072-.142.569-.178.496-.995.568h-6.743q-.07.035-.568-.142-.496-.178-.568-.995v-6.768q-.035-.069.142-.555t.994-.556h6.743q.071-.035.568.139.498.174.569.972zm27.301-11.134a4.3 4.3 0 0 0-1.369-.923 4.3 4.3 0 0 0-3.439.035 4.3 4.3 0 0 0-1.392 1.017l-3.9 4.289-3.927-4.289a4.3 4.3 0 0 0-1.389-1.027 4.1 4.1 0 0 0-1.737-.368 4.3 4.3 0 0 0-1.68.343 4.3 4.3 0 0 0-1.368.923l7.052 7.75-7.052 7.75a4.25 4.25 0 0 0 3.048 1.292 4.28 4.28 0 0 0 3.152-1.395l3.9-4.289 3.901 4.289q.587.646 1.392 1.017a4.2 4.2 0 0 0 1.76.378 4.24 4.24 0 0 0 3.048-1.292l-7.052-7.75z" style="fill:#fff;fill-opacity:1" transform="translate(-137.064 -376.82)scale(1.05284)"/></g></g><path d="m141.898 116.886 25.412 27.926a15.26 15.26 0 0 1-10.985 4.655c-4.561 0-8.563-1.955-11.356-5.027l-14.056-15.451-10.985-12.103 10.985-12.008 14.056-15.453c2.793-3.07 6.795-5.027 11.356-5.027 4.283 0 8.192 1.769 10.985 4.562zm-49.564 0-25.412 27.926a15.26 15.26 0 0 0 10.985 4.655c4.56 0 8.563-1.955 11.356-5.027l14.056-15.452 10.984-12.102-10.984-12.008-14.056-15.453c-2.793-3.071-6.795-5.027-11.356-5.027a15.55 15.55 0 0 0-10.985 4.561z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.730891" transform="translate(-11.347 -31.368)"/><path d="m127.13 130.733-10.027-11.046-10.026 11.046-23.195 25.49a14.2 14.2 0 0 0 10.025 4.163c4.163 0 7.648-1.7 10.281-4.588l12.915-14.104 12.83 14.104c2.548 2.803 6.201 4.588 10.364 4.588 3.91 0 7.478-1.614 10.027-4.163zm-.001-27.695-10.026 11.046-10.027-11.046-23.195-25.49a14.2 14.2 0 0 1 10.025-4.163c4.164 0 7.648 1.7 10.281 4.588l12.916 14.104 12.829-14.104c2.549-2.803 6.202-4.588 10.365-4.588 3.909 0 7.477 1.614 10.026 4.163z" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.66712" transform="translate(-11.347 -31.368)"/></svg>
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 4.4 KiB |
@@ -1,208 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1200"
|
||||
height="200"
|
||||
viewBox="0 0 317.49999 52.916669"
|
||||
version="1.1"
|
||||
id="svg2184"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="proxmox-full-lockup-inverted-color-bgtrans.svg"
|
||||
inkscape:export-filename="/home/daniela/Documents/proxmox/Proxmox/Marketing/Logo/proxmox-logo/Screen/Full Lockup/proxmox-full-lockup-color.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title114">Proxmox logo full lockup</title>
|
||||
<defs
|
||||
id="defs2178">
|
||||
<color-profile
|
||||
xlink:href="file:///usr/share/color/icc/colord/sRGB.icc"
|
||||
id="color-profile4"
|
||||
name="sRGB" />
|
||||
<clipPath
|
||||
id="clipPath3102"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
transform="matrix(0.73449161,0.67861776,-0.78497193,0.61953133,0,0)"
|
||||
y="-347.71387"
|
||||
x="-82.999916"
|
||||
height="326.40991"
|
||||
width="436.40189"
|
||||
id="rect3104"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath2198"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
transform="matrix(0.73449161,0.67861776,-0.78497193,0.61953133,0,0)"
|
||||
y="-347.71387"
|
||||
x="-82.999916"
|
||||
height="326.40991"
|
||||
width="436.40189"
|
||||
id="rect2196"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.56935087"
|
||||
inkscape:cx="704.07567"
|
||||
inkscape:cy="810.17757"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1720"
|
||||
inkscape:window-height="1343"
|
||||
inkscape:window-x="1720"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-global="true" />
|
||||
<metadata
|
||||
id="metadata2181">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Proxmox logo full lockup</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Proxmox Server Solutions GmbH</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Proxmox Server Solutions GmbH</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="inverted"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g196-3"
|
||||
style="display:inline"
|
||||
transform="translate(0.75595583,-183.76716)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path35-6"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.367022"
|
||||
d="m 50.122824,210.22593 12.761014,14.02324 c -1.402376,1.44899 -3.36558,2.33756 -5.516341,2.33756 -2.290214,0 -4.300047,-0.9818 -5.702455,-2.52439 l -7.058202,-7.75922 -5.515999,-6.07719 5.515999,-6.03018 7.058202,-7.7596 c 1.402408,-1.54222 3.412241,-2.52438 5.702455,-2.52438 2.150761,0 4.113965,0.88819 5.516341,2.2906 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path37-7"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.367022"
|
||||
d="m 25.23422,210.22578 -12.761014,14.02324 c 1.402376,1.44899 3.36558,2.33756 5.516341,2.33756 2.290214,0 4.300047,-0.9818 5.702455,-2.52441 l 7.058202,-7.75921 5.515984,-6.07718 -5.515984,-6.03018 -7.058202,-7.7596 c -1.402408,-1.54224 -3.412241,-2.52439 -5.702455,-2.52439 -2.150761,0 -4.113965,0.8882 -5.516341,2.2906 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path39-5"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.335"
|
||||
d="m 42.706782,217.17905 -5.034554,-5.54677 -5.034788,5.54677 -11.647712,12.79991 c 1.279904,1.27997 3.072283,2.0906 5.034197,2.0906 2.090782,0 3.840397,-0.85355 5.162739,-2.30398 l 6.485564,-7.08247 6.442084,7.08247 c 1.280153,1.40754 3.114473,2.30398 5.20493,2.30398 1.962985,0 3.754976,-0.81063 5.034896,-2.0906 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path41-3"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.335"
|
||||
d="m 42.706472,203.27192 -5.034555,5.54676 -5.034787,-5.54676 -11.647713,-12.7999 c 1.27992,-1.27997 3.072283,-2.0906 5.034213,-2.0906 2.090783,0 3.840381,0.85354 5.162724,2.30397 l 6.485563,7.08248 6.442085,-7.08248 c 1.280168,-1.40754 3.114488,-2.30397 5.204929,-2.30397 1.962986,0 3.754992,0.81063 5.034896,2.0906 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,89.104657,211.11385)"
|
||||
id="g47-5">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path45-6"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 5.477,0 5.477,5.604 5.477,5.604 V 19.486 C 5.477,24.963 0,24.963 0,24.963 H -39.101 V 0 Z M 27.892,24.963 V 2.802 c 0,-12.355 -10.062,-22.288 -22.415,-22.288 h -44.578 c 0,-12.355 -9.934,-22.289 -22.16,-22.289 v 80.748 c 0,4.585 3.821,8.405 8.279,8.405 H 5.477 c 12.353,0 22.415,-10.062 22.415,-22.415" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,121.10166,209.35166)"
|
||||
id="g51-2">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49-9"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 5.604,0 5.604,5.476 5.604,5.476 v 8.406 C 5.604,19.358 0,19.358 0,19.358 H -38.845 V 0 Z m 9.934,-19.233 17.959,-25.599 c -3.057,-1.656 -6.624,-2.548 -10.317,-2.548 -7.642,0 -14.137,3.694 -18.213,9.553 L -13.5,-19.486 h -25.345 v -5.605 c 0,-12.354 -10.062,-22.289 -22.289,-22.289 v 80.748 c 0,4.585 3.693,8.405 8.279,8.405 H 5.604 c 12.354,0 22.289,-10.061 22.289,-22.415 V 2.674 c 0,-10.825 -7.77,-19.869 -17.959,-21.907" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,154.86134,204.9869)"
|
||||
id="g55-1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path53-2"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 0,5.477 -5.604,5.477 -5.604,5.477 H -38.846 C -44.449,5.477 -44.449,0 -44.449,0 v -33.368 c 0,-5.605 5.603,-5.605 5.603,-5.605 H -5.604 C 0,-38.973 0,-33.368 0,-33.368 Z m 22.288,5.477 v -44.45 C 22.288,-51.327 12.353,-61.262 0,-61.262 h -44.449 c -12.355,0 -22.289,9.935 -22.289,22.289 v 44.45 c 0,12.353 9.934,22.415 22.289,22.415 H 0 c 12.353,0 22.288,-10.062 22.288,-22.415" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,186.2584,210.2329)"
|
||||
id="g59-7">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57-0"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 34.769,-38.208 c -3.821,-3.948 -9.17,-6.369 -15.03,-6.369 -6.24,0 -11.716,2.675 -15.537,6.878 l -19.231,21.141 -19.233,-21.141 c -3.82,-4.203 -9.425,-6.878 -15.538,-6.878 -5.857,0 -11.207,2.421 -15.028,6.369 L -30.058,0 -64.828,38.209 c 3.821,3.821 9.171,6.241 15.028,6.241 6.241,0 11.464,-2.548 15.411,-6.878 L -15.029,16.43 4.202,37.572 c 3.821,4.202 9.297,6.878 15.537,6.878 5.86,0 11.209,-2.42 15.03,-6.241 z" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,236.19589,198.85997)"
|
||||
id="g63-9">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path61-3"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 v -80.748 c -12.226,0 -22.288,9.935 -22.288,22.289 v 42.666 c 0,1.147 -0.765,1.91 -1.784,1.91 -0.765,0 -1.401,-0.509 -1.782,-1.019 l -24.71,-54.637 c -1.019,-1.911 -2.928,-3.185 -5.095,-3.185 -2.164,0 -4.201,1.401 -5.093,3.312 l -24.708,54.51 c -0.256,0.51 -1.019,1.019 -1.657,1.019 -1.147,0 -1.911,-0.763 -1.911,-1.91 v -42.666 c 0,-12.354 -10.061,-22.289 -22.287,-22.289 V 0 c 0,4.585 3.692,8.405 8.406,8.405 h 13.881 c 9.043,0 16.941,-5.475 20.379,-13.372 v 0.254 l 12.99,-28.783 13.118,28.783 -0.126,-0.254 c 3.565,7.897 11.336,13.372 20.379,13.372 H -8.279 C -3.693,8.405 0,4.585 0,0" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,261.18567,204.9869)"
|
||||
id="g67-6">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path65-0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 0,5.477 -5.604,5.477 -5.604,5.477 H -38.845 C -44.448,5.477 -44.448,0 -44.448,0 v -33.368 c 0,-5.605 5.603,-5.605 5.603,-5.605 H -5.604 C 0,-38.973 0,-33.368 0,-33.368 Z m 22.289,5.477 v -44.45 C 22.289,-51.327 12.353,-61.262 0,-61.262 h -44.448 c -12.355,0 -22.288,9.935 -22.288,22.289 v 44.45 c 0,12.353 9.933,22.415 22.288,22.415 H 0 c 12.353,0 22.289,-10.062 22.289,-22.415" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.31442188,0,0,-0.31442188,292.58275,210.2329)"
|
||||
id="g71-6">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path69-2"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 34.769,-38.208 c -3.82,-3.948 -9.17,-6.369 -15.03,-6.369 -6.24,0 -11.716,2.675 -15.537,6.878 l -19.231,21.141 -19.233,-21.141 c -3.82,-4.203 -9.425,-6.878 -15.537,-6.878 -5.858,0 -11.208,2.421 -15.029,6.369 L -30.06,0 -64.828,38.209 c 3.821,3.821 9.171,6.241 15.029,6.241 6.24,0 11.463,-2.548 15.412,-6.878 L -15.029,16.43 4.202,37.572 c 3.821,4.202 9.297,6.878 15.537,6.878 5.86,0 11.21,-2.42 15.03,-6.241 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200" viewBox="0 0 317.5 52.917"><title>Proxmox logo full lockup</title><g style="display:inline"><path d="m50.123 210.226 12.76 14.023a7.66 7.66 0 0 1-5.516 2.338 7.65 7.65 0 0 1-5.702-2.525l-7.058-7.759-5.516-6.077 5.516-6.03 7.058-7.76a7.65 7.65 0 0 1 5.702-2.524 7.8 7.8 0 0 1 5.517 2.29zm-24.889 0-12.76 14.023a7.66 7.66 0 0 0 5.516 2.338c2.29 0 4.3-.982 5.702-2.525l7.058-7.759 5.516-6.077-5.516-6.03-7.058-7.76a7.65 7.65 0 0 0-5.702-2.524 7.8 7.8 0 0 0-5.517 2.29z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.367022" transform="translate(.756 -183.767)"/><path d="m42.707 217.179-5.035-5.547-5.035 5.547-11.647 12.8a7.13 7.13 0 0 0 5.034 2.09c2.09 0 3.84-.853 5.163-2.303l6.485-7.083 6.442 7.083a7 7 0 0 0 5.205 2.304 7.13 7.13 0 0 0 5.035-2.091zm-.001-13.907-5.034 5.547-5.035-5.547-11.648-12.8a7.13 7.13 0 0 1 5.035-2.09c2.09 0 3.84.853 5.162 2.303l6.486 7.083 6.442-7.083a7 7 0 0 1 5.205-2.304 7.13 7.13 0 0 1 5.035 2.091z" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.335" transform="translate(.756 -183.767)"/><g style="fill:#fff;fill-opacity:1"><path d="M0 0c5.477 0 5.477 5.604 5.477 5.604v13.882C5.477 24.963 0 24.963 0 24.963h-39.101V0Zm27.892 24.963V2.802c0-12.355-10.062-22.288-22.415-22.288h-44.578c0-12.355-9.934-22.289-22.16-22.289v80.748c0 4.585 3.821 8.405 8.279 8.405H5.477c12.353 0 22.415-10.062 22.415-22.415" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 89.86 27.347)"/></g><g style="fill:#fff;fill-opacity:1"><path d="M0 0c5.604 0 5.604 5.476 5.604 5.476v8.406C5.604 19.358 0 19.358 0 19.358h-38.845V0Zm9.934-19.233 17.959-25.599c-3.057-1.656-6.624-2.548-10.317-2.548-7.642 0-14.137 3.694-18.213 9.553L-13.5-19.486h-25.345v-5.605c0-12.354-10.062-22.289-22.289-22.289v80.748c0 4.585 3.693 8.405 8.279 8.405H5.604c12.354 0 22.289-10.061 22.289-22.415V2.674c0-10.825-7.77-19.869-17.959-21.907" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 121.858 25.585)"/></g><g style="fill:#fff;fill-opacity:1"><path d="M0 0c0 5.477-5.604 5.477-5.604 5.477h-33.242C-44.449 5.477-44.449 0-44.449 0v-33.368c0-5.605 5.603-5.605 5.603-5.605h33.242C0-38.973 0-33.368 0-33.368Zm22.288 5.477v-44.45A22.233 22.233 0 0 0 0-61.262h-44.449a22.23 22.23 0 0 0-22.289 22.289v44.45c0 12.353 9.934 22.415 22.289 22.415H0c12.353 0 22.288-10.062 22.288-22.415" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 155.617 21.22)"/></g><g style="fill:#000;fill-opacity:1"><path d="m0 0 34.769-38.208a20.87 20.87 0 0 0-15.03-6.369c-6.24 0-11.716 2.675-15.537 6.878l-19.231 21.141-19.233-21.141c-3.82-4.203-9.425-6.878-15.538-6.878a20.87 20.87 0 0 0-15.028 6.369L-30.058 0l-34.77 38.209c3.821 3.821 9.171 6.241 15.028 6.241 6.241 0 11.464-2.548 15.411-6.878l19.36-21.142L4.202 37.572c3.821 4.202 9.297 6.878 15.537 6.878 5.86 0 11.209-2.42 15.03-6.241z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 187.014 26.466)"/></g><g style="fill:#fff;fill-opacity:1"><path d="M0 0v-80.748c-12.226 0-22.288 9.935-22.288 22.289v42.666c0 1.147-.765 1.91-1.784 1.91-.765 0-1.401-.509-1.782-1.019l-24.71-54.637c-1.019-1.911-2.928-3.185-5.095-3.185-2.164 0-4.201 1.401-5.093 3.312l-24.708 54.51c-.256.51-1.019 1.019-1.657 1.019-1.147 0-1.911-.763-1.911-1.91v-42.666c0-12.354-10.061-22.289-22.287-22.289V0c0 4.585 3.692 8.405 8.406 8.405h13.881c9.043 0 16.941-5.475 20.379-13.372v.254l12.99-28.783 13.118 28.783-.126-.254C-39.102 2.93-31.331 8.405-22.288 8.405h14.009C-3.693 8.405 0 4.585 0 0" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 236.952 15.093)"/></g><g style="fill:#fff;fill-opacity:1"><path d="M0 0c0 5.477-5.604 5.477-5.604 5.477h-33.241C-44.448 5.477-44.448 0-44.448 0v-33.368c0-5.605 5.603-5.605 5.603-5.605h33.241C0-38.973 0-33.368 0-33.368Zm22.289 5.477v-44.45A22.233 22.233 0 0 0 0-61.262h-44.448a22.23 22.23 0 0 0-22.288 22.289v44.45c0 12.353 9.933 22.415 22.288 22.415H0c12.353 0 22.289-10.062 22.289-22.415" style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 261.942 21.22)"/></g><g style="fill:#000;fill-opacity:1"><path d="m0 0 34.769-38.208a20.87 20.87 0 0 0-15.03-6.369c-6.24 0-11.716 2.675-15.537 6.878l-19.231 21.141-19.233-21.141c-3.82-4.203-9.425-6.878-15.537-6.878a20.88 20.88 0 0 0-15.029 6.369L-30.06 0l-34.768 38.209c3.821 3.821 9.171 6.241 15.029 6.241 6.24 0 11.463-2.548 15.412-6.878l19.358-21.142L4.202 37.572c3.821 4.202 9.297 6.878 15.537 6.878 5.86 0 11.21-2.42 15.03-6.241z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 293.339 26.466)"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 4.8 KiB |
@@ -1,211 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1200"
|
||||
height="200"
|
||||
viewBox="0 0 317.49999 52.916669"
|
||||
version="1.1"
|
||||
id="svg2184"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="proxmox-full-lockup-color-bgtrans.svg"
|
||||
inkscape:export-filename="/home/daniela/Documents/proxmox/Proxmox/Marketing/Logo/proxmox-logo/Screen/Full Lockup/proxmox-full-lockup-color.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title114">Proxmox logo full lockup</title>
|
||||
<defs
|
||||
id="defs2178">
|
||||
<color-profile
|
||||
xlink:href="file:///usr/share/color/icc/colord/sRGB.icc"
|
||||
id="color-profile3"
|
||||
name="sRGB" />
|
||||
<clipPath
|
||||
id="clipPath3102"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
transform="matrix(0.73449161,0.67861776,-0.78497193,0.61953133,0,0)"
|
||||
y="-347.71387"
|
||||
x="-82.999916"
|
||||
height="326.40991"
|
||||
width="436.40189"
|
||||
id="rect3104"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath2198"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
transform="matrix(0.73449161,0.67861776,-0.78497193,0.61953133,0,0)"
|
||||
y="-347.71387"
|
||||
x="-82.999916"
|
||||
height="326.40991"
|
||||
width="436.40189"
|
||||
id="rect2196"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.84113673"
|
||||
inkscape:cx="470.46324"
|
||||
inkscape:cy="810.17757"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1720"
|
||||
inkscape:window-height="1343"
|
||||
inkscape:window-x="1720"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-global="true" />
|
||||
<metadata
|
||||
id="metadata2181">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Proxmox logo full lockup</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Proxmox Server Solutions GmbH</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Proxmox Server Solutions GmbH</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="color"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-12.473202,-111.45838)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g1786"
|
||||
transform="matrix(1.552246,0,0,1.552246,449.58975,-365.83574)">
|
||||
<g
|
||||
id="g1765">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1051-5"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.236446"
|
||||
d="m -248.8251,324.53161 8.221,9.03416 c -0.90345,0.93348 -2.1682,1.50592 -3.55378,1.50592 -1.47542,0 -2.77021,-0.6325 -3.67368,-1.62628 l -4.54709,-4.99871 -3.55356,-3.91509 3.55356,-3.88481 4.54709,-4.99895 c 0.90347,-0.99354 2.19826,-1.62628 3.67368,-1.62628 1.38558,0 2.65033,0.5722 3.55378,1.47567 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1041-6"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.236446"
|
||||
d="m -264.85903,324.53151 -8.221,9.03416 c 0.90345,0.93348 2.1682,1.50592 3.55378,1.50592 1.47542,0 2.77021,-0.6325 3.67368,-1.62629 l 4.54709,-4.9987 3.55355,-3.91509 -3.55355,-3.88481 -4.54709,-4.99895 c -0.90347,-0.99355 -2.19826,-1.62628 -3.67368,-1.62628 -1.38558,0 -2.65033,0.5722 -3.55378,1.47567 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1043-2"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.215816"
|
||||
d="m -253.60272,329.011 -3.2434,-3.57338 -3.24355,3.57338 -7.50378,8.24606 c 0.82455,0.82459 1.97925,1.34682 3.24317,1.34682 1.34694,0 2.47409,-0.54988 3.32598,-1.48429 l 4.17818,-4.56272 4.15017,4.56272 c 0.82471,0.90678 2.00643,1.48429 3.35316,1.48429 1.26461,0 2.41906,-0.52223 3.24362,-1.34682 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1053-9"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.215816"
|
||||
d="m -253.60292,320.05164 -3.2434,3.57338 -3.24355,-3.57338 -7.50378,-8.24605 c 0.82456,-0.82459 1.97925,-1.34682 3.24318,-1.34682 1.34694,0 2.47408,0.54987 3.32597,1.48428 l 4.17818,4.56273 4.15017,-4.56273 c 0.82472,-0.90678 2.00644,-1.48428 3.35316,-1.48428 1.26461,0 2.41907,0.52223 3.24362,1.34682 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-223.71192,325.10363)"
|
||||
id="g7628">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7630"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 5.477,0 5.477,5.604 5.477,5.604 V 19.486 C 5.477,24.963 0,24.963 0,24.963 H -39.101 V 0 Z M 27.892,24.963 V 2.802 c 0,-12.355 -10.062,-22.288 -22.415,-22.288 h -44.578 c 0,-12.355 -9.934,-22.289 -22.16,-22.289 v 80.748 c 0,4.585 3.821,8.405 8.279,8.405 H 5.477 c 12.353,0 22.415,-10.062 22.415,-22.415" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-203.09856,323.96838)"
|
||||
id="g7632">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7634"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 5.604,0 5.604,5.476 5.604,5.476 v 8.406 C 5.604,19.358 0,19.358 0,19.358 H -38.845 V 0 Z m 9.934,-19.233 17.959,-25.599 c -3.057,-1.656 -6.624,-2.548 -10.317,-2.548 -7.642,0 -14.137,3.694 -18.213,9.553 L -13.5,-19.486 h -25.345 v -5.605 c 0,-12.354 -10.062,-22.289 -22.289,-22.289 v 80.748 c 0,4.585 3.693,8.405 8.279,8.405 H 5.604 c 12.354,0 22.289,-10.061 22.289,-22.415 V 2.674 c 0,-10.825 -7.77,-19.869 -17.959,-21.907" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-181.34964,321.15648)"
|
||||
id="g7636">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7638"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 0,5.477 -5.604,5.477 -5.604,5.477 H -38.846 C -44.449,5.477 -44.449,0 -44.449,0 v -33.368 c 0,-5.605 5.603,-5.605 5.603,-5.605 H -5.604 C 0,-38.973 0,-33.368 0,-33.368 Z m 22.288,5.477 v -44.45 C 22.288,-51.327 12.353,-61.262 0,-61.262 h -44.449 c -12.355,0 -22.289,9.935 -22.289,22.289 v 44.45 c 0,12.353 9.934,22.415 22.289,22.415 H 0 c 12.353,0 22.288,-10.062 22.288,-22.415" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-161.12278,324.5361)"
|
||||
id="g7640-1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7642"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 34.769,-38.208 c -3.821,-3.948 -9.17,-6.369 -15.03,-6.369 -6.24,0 -11.716,2.675 -15.537,6.878 l -19.231,21.141 -19.233,-21.141 c -3.82,-4.203 -9.425,-6.878 -15.538,-6.878 -5.857,0 -11.207,2.421 -15.028,6.369 L -30.058,0 -64.828,38.209 c 3.821,3.821 9.171,6.241 15.028,6.241 6.241,0 11.464,-2.548 15.411,-6.878 L -15.029,16.43 4.202,37.572 c 3.821,4.202 9.297,6.878 15.537,6.878 5.86,0 11.209,-2.42 15.03,-6.241 z" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-128.95166,317.20934)"
|
||||
id="g7644">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7646"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 v -80.748 c -12.226,0 -22.288,9.935 -22.288,22.289 v 42.666 c 0,1.147 -0.765,1.91 -1.784,1.91 -0.765,0 -1.401,-0.509 -1.782,-1.019 l -24.71,-54.637 c -1.019,-1.911 -2.928,-3.185 -5.095,-3.185 -2.164,0 -4.201,1.401 -5.093,3.312 l -24.708,54.51 c -0.256,0.51 -1.019,1.019 -1.657,1.019 -1.147,0 -1.911,-0.763 -1.911,-1.91 v -42.666 c 0,-12.354 -10.061,-22.289 -22.287,-22.289 V 0 c 0,4.585 3.692,8.405 8.406,8.405 h 13.881 c 9.043,0 16.941,-5.475 20.379,-13.372 v 0.254 l 12.99,-28.783 13.118,28.783 -0.126,-0.254 c 3.565,7.897 11.336,13.372 20.379,13.372 H -8.279 C -3.693,8.405 0,4.585 0,0" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-112.85255,321.15648)"
|
||||
id="g7648">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7650"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 0,5.477 -5.604,5.477 -5.604,5.477 H -38.845 C -44.448,5.477 -44.448,0 -44.448,0 v -33.368 c 0,-5.605 5.603,-5.605 5.603,-5.605 H -5.604 C 0,-38.973 0,-33.368 0,-33.368 Z m 22.289,5.477 v -44.45 C 22.289,-51.327 12.353,-61.262 0,-61.262 h -44.448 c -12.355,0 -22.288,9.935 -22.288,22.289 v 44.45 c 0,12.353 9.933,22.415 22.288,22.415 H 0 c 12.353,0 22.289,-10.062 22.289,-22.415" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.20255931,0,0,-0.20255931,-92.625682,324.5361)"
|
||||
id="g7652">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7654"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 34.769,-38.208 c -3.82,-3.948 -9.17,-6.369 -15.03,-6.369 -6.24,0 -11.716,2.675 -15.537,6.878 l -19.231,21.141 -19.233,-21.141 c -3.82,-4.203 -9.425,-6.878 -15.537,-6.878 -5.858,0 -11.208,2.421 -15.029,6.369 L -30.06,0 -64.828,38.209 c 3.821,3.821 9.171,6.241 15.029,6.241 6.24,0 11.463,-2.548 15.412,-6.878 L -15.029,16.43 4.202,37.572 c 3.821,4.202 9.297,6.878 15.537,6.878 5.86,0 11.21,-2.42 15.03,-6.241 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200" viewBox="0 0 317.5 52.917"><title>Proxmox logo full lockup</title><g style="display:inline"><path d="m-248.825 324.532 8.22 9.034a4.93 4.93 0 0 1-3.553 1.506 4.93 4.93 0 0 1-3.674-1.627l-4.547-4.998-3.553-3.915 3.553-3.885 4.547-5a4.93 4.93 0 0 1 3.674-1.625c1.386 0 2.65.572 3.554 1.475zm-16.034 0-8.221 9.034a4.93 4.93 0 0 0 3.554 1.506 4.93 4.93 0 0 0 3.673-1.627l4.548-4.998 3.553-3.915-3.553-3.885-4.548-5a4.93 4.93 0 0 0-3.673-1.626c-1.386 0-2.65.573-3.554 1.476z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.236446" transform="translate(437.117 -477.294)scale(1.55225)"/><path d="m-253.603 329.011-3.243-3.573-3.244 3.573-7.503 8.246a4.6 4.6 0 0 0 3.243 1.347c1.347 0 2.474-.55 3.326-1.484l4.178-4.563 4.15 4.563a4.5 4.5 0 0 0 3.353 1.484 4.6 4.6 0 0 0 3.244-1.347zm0-8.959-3.243 3.573-3.244-3.573-7.504-8.246a4.6 4.6 0 0 1 3.244-1.347c1.346 0 2.474.55 3.325 1.484l4.179 4.563 4.15-4.563a4.5 4.5 0 0 1 3.353-1.484 4.6 4.6 0 0 1 3.244 1.347z" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.215816" transform="translate(437.117 -477.294)scale(1.55225)"/><g style="fill:#000;fill-opacity:1"><path d="M0 0c5.477 0 5.477 5.604 5.477 5.604v13.882C5.477 24.963 0 24.963 0 24.963h-39.101V0Zm27.892 24.963V2.802c0-12.355-10.062-22.288-22.415-22.288h-44.578c0-12.355-9.934-22.289-22.16-22.289v80.748c0 4.585 3.821 8.405 8.279 8.405H5.477c12.353 0 22.415-10.062 22.415-22.415" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 89.86 27.347)"/></g><g style="fill:#000;fill-opacity:1"><path d="M0 0c5.604 0 5.604 5.476 5.604 5.476v8.406C5.604 19.358 0 19.358 0 19.358h-38.845V0Zm9.934-19.233 17.959-25.599c-3.057-1.656-6.624-2.548-10.317-2.548-7.642 0-14.137 3.694-18.213 9.553L-13.5-19.486h-25.345v-5.605c0-12.354-10.062-22.289-22.289-22.289v80.748c0 4.585 3.693 8.405 8.279 8.405H5.604c12.354 0 22.289-10.061 22.289-22.415V2.674c0-10.825-7.77-19.869-17.959-21.907" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 121.858 25.585)"/></g><g style="fill:#000;fill-opacity:1"><path d="M0 0c0 5.477-5.604 5.477-5.604 5.477h-33.242C-44.449 5.477-44.449 0-44.449 0v-33.368c0-5.605 5.603-5.605 5.603-5.605h33.242C0-38.973 0-33.368 0-33.368Zm22.288 5.477v-44.45A22.233 22.233 0 0 0 0-61.262h-44.449a22.23 22.23 0 0 0-22.289 22.289v44.45c0 12.353 9.934 22.415 22.289 22.415H0c12.353 0 22.288-10.062 22.288-22.415" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 155.617 21.22)"/></g><g style="fill:#000;fill-opacity:1"><path d="m0 0 34.769-38.208a20.87 20.87 0 0 0-15.03-6.369c-6.24 0-11.716 2.675-15.537 6.878l-19.231 21.141-19.233-21.141c-3.82-4.203-9.425-6.878-15.538-6.878a20.87 20.87 0 0 0-15.028 6.369L-30.058 0l-34.77 38.209c3.821 3.821 9.171 6.241 15.028 6.241 6.241 0 11.464-2.548 15.411-6.878l19.36-21.142L4.202 37.572c3.821 4.202 9.297 6.878 15.537 6.878 5.86 0 11.209-2.42 15.03-6.241z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 187.014 26.466)"/></g><g style="fill:#000;fill-opacity:1"><path d="M0 0v-80.748c-12.226 0-22.288 9.935-22.288 22.289v42.666c0 1.147-.765 1.91-1.784 1.91-.765 0-1.401-.509-1.782-1.019l-24.71-54.637c-1.019-1.911-2.928-3.185-5.095-3.185-2.164 0-4.201 1.401-5.093 3.312l-24.708 54.51c-.256.51-1.019 1.019-1.657 1.019-1.147 0-1.911-.763-1.911-1.91v-42.666c0-12.354-10.061-22.289-22.287-22.289V0c0 4.585 3.692 8.405 8.406 8.405h13.881c9.043 0 16.941-5.475 20.379-13.372v.254l12.99-28.783 13.118 28.783-.126-.254C-39.102 2.93-31.331 8.405-22.288 8.405h14.009C-3.693 8.405 0 4.585 0 0" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 236.952 15.093)"/></g><g style="fill:#000;fill-opacity:1"><path d="M0 0c0 5.477-5.604 5.477-5.604 5.477h-33.241C-44.448 5.477-44.448 0-44.448 0v-33.368c0-5.605 5.603-5.605 5.603-5.605h33.241C0-38.973 0-33.368 0-33.368Zm22.289 5.477v-44.45A22.233 22.233 0 0 0 0-61.262h-44.448a22.23 22.23 0 0 0-22.288 22.289v44.45c0 12.353 9.933 22.415 22.288 22.415H0c12.353 0 22.289-10.062 22.289-22.415" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 261.942 21.22)"/></g><g style="fill:#000;fill-opacity:1"><path d="m0 0 34.769-38.208a20.87 20.87 0 0 0-15.03-6.369c-6.24 0-11.716 2.675-15.537 6.878l-19.231 21.141-19.233-21.141c-3.82-4.203-9.425-6.878-15.537-6.878a20.88 20.88 0 0 0-15.029 6.369L-30.06 0l-34.768 38.209c3.821 3.821 9.171 6.241 15.029 6.241 6.24 0 11.463-2.548 15.412-6.878l19.358-21.142L4.202 37.572c3.821 4.202 9.297 6.878 15.537 6.878 5.86 0 11.21-2.42 15.03-6.241z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(.31442 0 0 -.31442 293.339 26.466)"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 4.8 KiB |
@@ -1,141 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="800"
|
||||
height="800"
|
||||
viewBox="0 0 211.66666 211.66666"
|
||||
version="1.1"
|
||||
id="svg924"
|
||||
inkscape:export-filename="/home/daniela/Documents/proxmox/Proxmox/Marketing/Logo/Zipfiles_to_send/proxmox-logo-pack/Proxmox_logos_full_lockup_PNG/proxmox-logo-stacked-color-bgtrans.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="proxmox-logo-stacked-color-bgtrans.svg">
|
||||
<defs
|
||||
id="defs918" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.56863113"
|
||||
inkscape:cx="195.84872"
|
||||
inkscape:cy="189.70435"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1720"
|
||||
inkscape:window-height="1343"
|
||||
inkscape:window-x="1720"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
units="px" />
|
||||
<metadata
|
||||
id="metadata921">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-11.346916,-31.368461)">
|
||||
<g
|
||||
id="g1898"
|
||||
transform="matrix(1.3463334,0,0,1.3463334,375.33156,-1215.5059)">
|
||||
<g
|
||||
transform="matrix(0.62886854,0,0,0.62886854,125.31818,297.99865)"
|
||||
id="g1288"
|
||||
style="fill:#000000">
|
||||
<g
|
||||
id="g1286"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.8336px;line-height:125%;font-family:Helion;-inkscape-font-specification:Helion;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
transform="matrix(1.2435137,0,0,1.2435137,-791.06481,553.75862)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1272"
|
||||
d="m 168.85142,500.9595 h -11.85747 c -0.46554,0.0129 -0.85842,0.18085 -1.17864,0.50374 -0.32023,0.32294 -0.48707,0.72335 -0.50052,1.20125 v 16.3783 c 1.27229,-0.0318 2.33145,-0.472 3.17749,-1.32073 0.84604,-0.84873 1.2852,-1.91543 1.3175,-3.2001 h 9.04164 c 1.28573,-0.0317 2.35673,-0.47199 3.21302,-1.32072 0.85624,-0.84873 1.30079,-1.91543 1.33364,-3.2001 v -4.49499 c -0.0328,-1.28573 -0.4774,-2.35673 -1.33364,-3.21301 -0.85629,-0.85625 -1.92729,-1.3008 -3.21302,-1.33364 z m -9.04164,9.60997 v -5.06332 h 7.93081 c 0.0463,-0.0231 0.23141,0.0232 0.55542,0.13885 0.32398,0.11573 0.50912,0.43972 0.55541,0.97198 v 2.81583 c 0.0231,0.0474 -0.0231,0.23681 -0.13885,0.56833 -0.11573,0.33154 -0.43972,0.52098 -0.97198,0.56833 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1274"
|
||||
d="m 194.05931,508.89031 v -3.38416 c -0.0318,-1.28573 -0.47201,-2.35673 -1.32072,-3.21301 -0.84875,-0.85625 -1.91545,-1.3008 -3.2001,-1.33364 h -11.85747 c -0.47684,0.0129 -0.87295,0.18085 -1.18833,0.50374 -0.31538,0.32294 -0.47899,0.72335 -0.49083,1.20125 v 16.3783 c 1.27336,-0.0318 2.33683,-0.472 3.1904,-1.32073 0.85357,-0.84873 1.29705,-1.91543 1.33042,-3.2001 v -1.13666 h 5.14082 l 2.60916,3.71999 c 0.4187,0.60063 0.94398,1.07208 1.57583,1.41437 0.63182,0.34229 1.33793,0.51667 2.11833,0.52313 0.37618,-5.4e-4 0.74107,-0.0447 1.09468,-0.1324 0.35358,-0.0877 0.68618,-0.21582 0.99781,-0.38427 l -3.64249,-5.19249 c 1.05592,-0.22872 1.92133,-0.74647 2.59625,-1.55322 0.67487,-0.80675 1.02362,-1.77011 1.04624,-2.8901 z m -13.53663,0.5425 v -3.92666 h 7.87915 c 0.0474,-0.0231 0.23679,0.0232 0.56833,0.13885 0.33151,0.11573 0.52096,0.43972 0.56833,0.97198 v 1.705 c 0.0237,0.0463 -0.0237,0.23143 -0.14208,0.55541 -0.11842,0.324 -0.44995,0.50914 -0.99458,0.55542 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1276"
|
||||
d="m 210.1751,500.9595 h -9.01581 c -1.28467,0.0328 -2.35137,0.47739 -3.2001,1.33364 -0.84873,0.85628 -1.28897,1.92728 -1.32072,3.21301 v 9.01581 c 0.0317,1.28467 0.47199,2.35137 1.32072,3.2001 0.84873,0.84873 1.91543,1.28897 3.2001,1.32073 h 9.01581 c 1.28465,-0.0318 2.35135,-0.472 3.2001,-1.32073 0.84871,-0.84873 1.28895,-1.91543 1.32072,-3.2001 v -9.01581 c -0.0318,-1.28573 -0.47201,-2.35673 -1.32072,-3.21301 -0.84875,-0.85625 -1.91545,-1.3008 -3.2001,-1.33364 z m 0,12.4258 c 0.0237,0.0474 -0.0237,0.23681 -0.14208,0.56833 -0.11842,0.33153 -0.44995,0.52098 -0.99458,0.56833 h -6.74249 c -0.0474,0.0237 -0.23681,-0.0237 -0.56833,-0.14208 -0.33153,-0.1184 -0.52098,-0.44993 -0.56833,-0.99458 v -6.76832 c -0.0237,-0.0463 0.0237,-0.23141 0.14208,-0.55541 0.1184,-0.32398 0.44993,-0.50912 0.99458,-0.55542 h 6.74249 c 0.0473,-0.0231 0.23679,0.0232 0.56833,0.13885 0.33151,0.11573 0.52096,0.43972 0.56833,0.97198 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1278"
|
||||
d="m 237.4767,502.25116 c -0.39183,-0.39179 -0.84822,-0.69964 -1.36917,-0.92354 -0.52099,-0.22387 -1.08071,-0.33797 -1.67916,-0.34229 -0.6367,0.005 -1.22333,0.1308 -1.75989,0.37781 -0.53659,0.24705 -1.00052,0.58611 -1.39177,1.01719 l -3.90082,4.28832 -3.92666,-4.28832 c -0.4015,-0.44238 -0.86434,-0.78467 -1.38854,-1.02688 -0.5242,-0.24217 -1.1033,-0.36487 -1.73729,-0.36812 -0.59847,0.004 -1.15819,0.11842 -1.67916,0.34229 -0.52097,0.2239 -0.97736,0.53175 -1.36916,0.92354 l 7.05248,7.74998 -7.05248,7.74998 c 0.3918,0.40419 0.84819,0.71957 1.36916,0.94615 0.52097,0.22657 1.08069,0.34175 1.67916,0.34552 0.62538,-0.005 1.20878,-0.13079 1.75021,-0.37782 0.54142,-0.24703 1.00857,-0.58609 1.40145,-1.01718 l 3.90083,-4.28832 3.90082,4.28832 c 0.39125,0.43109 0.85518,0.77015 1.39177,1.01718 0.53656,0.24703 1.12319,0.37297 1.75989,0.37782 0.59845,-0.004 1.15817,-0.11895 1.67916,-0.34552 0.52096,-0.22658 0.97734,-0.54196 1.36917,-0.94615 l -7.05249,-7.74998 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1280"
|
||||
d="m 260.98042,500.9595 h -2.84166 c -0.92947,0.0129 -1.75721,0.2648 -2.48322,0.75562 -0.72604,0.49085 -1.27607,1.14314 -1.6501,1.95687 l 0.0258,-0.0517 -2.66082,5.83832 -2.635,-5.83832 v 0.0517 c -0.36275,-0.81373 -0.90955,-1.46602 -1.64041,-1.95687 -0.73087,-0.49082 -1.56184,-0.74269 -2.49291,-0.75562 h -2.81583 c -0.48922,0.0129 -0.89286,0.18085 -1.21093,0.50374 -0.31808,0.32294 -0.48276,0.72335 -0.49406,1.20125 v 16.3783 c 1.27336,-0.0318 2.33683,-0.472 3.19041,-1.32073 0.85357,-0.84873 1.29704,-1.91543 1.33041,-3.2001 v -8.65414 c 0.002,-0.11785 0.0371,-0.2115 0.10656,-0.28094 0.0694,-0.0694 0.16307,-0.10493 0.28094,-0.10656 0.0673,0.002 0.13293,0.0237 0.19698,0.0646 0.064,0.0409 0.11032,0.0883 0.13885,0.14208 l 5.01166,11.05664 c 0.0947,0.19752 0.23464,0.3579 0.41979,0.48115 0.18512,0.12325 0.38964,0.18675 0.61354,0.19052 0.22226,-0.003 0.42354,-0.0619 0.60385,-0.1776 0.18028,-0.11571 0.32344,-0.27179 0.42948,-0.46823 L 257.4154,505.687 c 0.0393,-0.0538 0.0899,-0.10116 0.15177,-0.14208 0.0619,-0.0409 0.13184,-0.0624 0.2099,-0.0646 0.10547,0.002 0.19158,0.0371 0.25833,0.10656 0.0667,0.0694 0.10116,0.16309 0.10333,0.28094 v 8.65414 c 0.0333,1.28467 0.47682,2.35137 1.33042,3.2001 0.85355,0.84873 1.91702,1.28897 3.19041,1.32073 v -16.3783 c -0.0119,-0.4779 -0.17548,-0.87831 -0.49084,-1.20125 -0.3154,-0.32289 -0.71151,-0.49081 -1.18833,-0.50374 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1282"
|
||||
d="m 278.79561,500.9595 h -9.01581 c -1.28467,0.0328 -2.35137,0.47739 -3.20009,1.33364 -0.84874,0.85628 -1.28898,1.92728 -1.32073,3.21301 v 9.01581 c 0.0317,1.28467 0.47199,2.35137 1.32073,3.2001 0.84872,0.84873 1.91542,1.28897 3.20009,1.32073 h 9.01581 c 1.28466,-0.0318 2.35135,-0.472 3.2001,-1.32073 0.84871,-0.84873 1.28896,-1.91543 1.32073,-3.2001 v -9.01581 c -0.0318,-1.28573 -0.47202,-2.35673 -1.32073,-3.21301 -0.84875,-0.85625 -1.91544,-1.3008 -3.2001,-1.33364 z m 0,12.4258 c 0.0237,0.0474 -0.0237,0.23681 -0.14208,0.56833 -0.11842,0.33153 -0.44994,0.52098 -0.99458,0.56833 h -6.74248 c -0.0474,0.0237 -0.23681,-0.0237 -0.56834,-0.14208 -0.33153,-0.1184 -0.52097,-0.44993 -0.56833,-0.99458 v -6.76832 c -0.0237,-0.0463 0.0237,-0.23141 0.14209,-0.55541 0.11839,-0.32398 0.44992,-0.50912 0.99458,-0.55542 h 6.74248 c 0.0473,-0.0231 0.23679,0.0232 0.56833,0.13885 0.33152,0.11573 0.52096,0.43972 0.56833,0.97198 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1284"
|
||||
d="m 306.0972,502.25116 c -0.39182,-0.39179 -0.84821,-0.69964 -1.36916,-0.92354 -0.52099,-0.22387 -1.08071,-0.33797 -1.67916,-0.34229 -0.6367,0.005 -1.22333,0.1308 -1.75989,0.37781 -0.5366,0.24705 -1.00052,0.58611 -1.39177,1.01719 l -3.90083,4.28832 -3.92665,-4.28832 c -0.4015,-0.44238 -0.86435,-0.78467 -1.38854,-1.02688 -0.52421,-0.24217 -1.1033,-0.36487 -1.73729,-0.36812 -0.59847,0.004 -1.15819,0.11842 -1.67916,0.34229 -0.52097,0.2239 -0.97736,0.53175 -1.36917,0.92354 l 7.05249,7.74998 -7.05249,7.74998 c 0.39181,0.40419 0.8482,0.71957 1.36917,0.94615 0.52097,0.22657 1.08069,0.34175 1.67916,0.34552 0.62538,-0.005 1.20878,-0.13079 1.7502,-0.37782 0.54142,-0.24703 1.00857,-0.58609 1.40146,-1.01718 l 3.90082,-4.28832 3.90083,4.28832 c 0.39125,0.43109 0.85517,0.77015 1.39177,1.01718 0.53656,0.24703 1.12319,0.37297 1.75989,0.37782 0.59845,-0.004 1.15817,-0.11895 1.67916,-0.34552 0.52095,-0.22658 0.97734,-0.54196 1.36916,-0.94615 l -7.05248,-7.74998 z"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g1882">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1290"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.542875"
|
||||
d="m -173.38497,989.64514 18.87524,20.74226 c -2.0743,2.1432 -4.97814,3.4575 -8.1594,3.4575 -3.38754,0 -6.36035,-1.4522 -8.4347,-3.7339 l -10.44002,-11.47689 -8.1589,-8.98897 8.1589,-8.91944 10.44002,-11.47749 c 2.07435,-2.28114 5.04716,-3.7339 8.4347,-3.7339 3.18126,0 6.0851,1.31376 8.1594,3.38811 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1292"
|
||||
style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.542875"
|
||||
d="m -210.19854,989.64491 -18.87525,20.74229 c 2.0743,2.1432 4.97814,3.4575 8.15941,3.4575 3.38753,0 6.36034,-1.4522 8.43469,-3.7339 l 10.44002,-11.47692 8.15888,-8.98897 -8.15888,-8.91944 -10.44002,-11.47749 c -2.07435,-2.28117 -5.04716,-3.7339 -8.43469,-3.7339 -3.18127,0 -6.08511,1.31376 -8.15941,3.38811 z"
|
||||
sodipodi:nodetypes="ccscccccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1294"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.495509"
|
||||
d="m -184.35429,999.92973 -7.44678,-8.20441 -7.44712,8.20441 -17.22853,18.93277 c 1.89315,1.8933 4.54432,3.0923 7.44626,3.0923 3.09254,0 5.68045,-1.2625 7.63638,-3.4079 l 9.59301,-10.4759 9.52871,10.4759 c 1.89351,2.0819 4.60672,3.4079 7.69878,3.4079 2.90352,0 5.55411,-1.199 7.44728,-3.0923 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1296"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.495509"
|
||||
d="m -184.35475,979.35922 -7.44678,8.20441 -7.44712,-8.20441 -17.22852,-18.93276 c 1.89317,-1.89324 4.54431,-3.09227 7.44627,-3.09227 3.09255,0 5.68044,1.26249 7.63636,3.40788 l 9.59301,10.47593 9.52871,-10.47593 c 1.89354,-2.08195 4.60674,-3.40788 7.69878,-3.40788 2.90352,0 5.55414,1.19903 7.44729,3.09227 z"
|
||||
sodipodi:nodetypes="ccccscccscc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 211.667 211.667"><g style="fill:#000"><g style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:25.8336px;line-height:125%;font-family:Helion;-inkscape-font-specification:Helion;text-align:start;letter-spacing:0;word-spacing:0;writing-mode:lr-tb;text-anchor:start;fill:#000;fill-opacity:1;stroke:none"><path d="M168.851 500.96h-11.857q-.698.018-1.179.503a1.7 1.7 0 0 0-.5 1.201v16.379q1.908-.048 3.177-1.32 1.269-1.274 1.318-3.201h9.041q1.929-.048 3.213-1.32 1.285-1.275 1.334-3.2v-4.496q-.049-1.929-1.334-3.213-1.284-1.284-3.213-1.334m-9.041 9.61v-5.064h7.93q.07-.035.556.139t.555.972v2.816q.035.071-.138.568-.174.498-.972.568zm34.25-1.679v-3.384q-.049-1.929-1.321-3.213-1.274-1.284-3.2-1.334H177.68q-.715.02-1.188.504a1.72 1.72 0 0 0-.491 1.201v16.379q1.91-.048 3.19-1.32 1.28-1.274 1.33-3.201v-1.137h5.142l2.609 3.72q.628.9 1.575 1.415.948.513 2.119.523.564 0 1.094-.133.531-.13.998-.384l-3.642-5.192q1.584-.344 2.596-1.554t1.046-2.89m-13.537.543v-3.927h7.879q.071-.035.568.139.498.174.568.972v1.705q.036.069-.142.555-.177.487-.994.556zm29.654-8.473h-9.016q-1.926.048-3.2 1.333-1.273 1.284-1.32 3.213v9.016q.047 1.927 1.32 3.2t3.2 1.32h9.016q1.927-.046 3.2-1.32 1.274-1.273 1.32-3.2v-9.016q-.046-1.929-1.32-3.213-1.273-1.284-3.2-1.333m0 12.425q.035.072-.142.569t-.995.568h-6.742q-.071.035-.568-.142-.497-.178-.569-.995v-6.768q-.035-.069.142-.555.178-.486.995-.556h6.742q.071-.035.569.139.496.174.568.972zm27.302-11.134a4.3 4.3 0 0 0-1.37-.923 4.3 4.3 0 0 0-3.439.035q-.804.37-1.391 1.017l-3.901 4.289-3.927-4.289a4.3 4.3 0 0 0-1.388-1.027 4.1 4.1 0 0 0-1.738-.368 4.3 4.3 0 0 0-1.679.343 4.3 4.3 0 0 0-1.369.923l7.053 7.75-7.053 7.75a4.25 4.25 0 0 0 3.048 1.292 4.28 4.28 0 0 0 3.152-1.395l3.9-4.289 3.902 4.289q.587.646 1.391 1.017a4.2 4.2 0 0 0 1.76.378 4.24 4.24 0 0 0 3.049-1.292l-7.053-7.75zm23.503-1.291h-2.841q-1.395.018-2.483.755a4.67 4.67 0 0 0-1.65 1.957l.025-.052-2.66 5.839-2.636-5.839v.052a4.53 4.53 0 0 0-1.64-1.957q-1.096-.736-2.493-.755h-2.816q-.734.018-1.21.503a1.7 1.7 0 0 0-.495 1.201v16.379q1.91-.048 3.19-1.32 1.281-1.274 1.331-3.201v-8.654a.4.4 0 0 1 .107-.281.4.4 0 0 1 .28-.107.4.4 0 0 1 .198.065q.096.06.138.142l5.012 11.057q.143.296.42.48.278.186.613.191.334-.005.604-.177.27-.174.43-.469l5.011-11.082a.6.6 0 0 1 .152-.142.4.4 0 0 1 .21-.065.35.35 0 0 1 .258.107.4.4 0 0 1 .104.28v8.655q.05 1.927 1.33 3.2t3.19 1.32v-16.378a1.72 1.72 0 0 0-.49-1.2 1.66 1.66 0 0 0-1.189-.504m17.816 0h-9.016q-1.928.048-3.2 1.333-1.274 1.284-1.321 3.213v9.016q.048 1.927 1.32 3.2 1.275 1.274 3.2 1.32h9.017q1.926-.046 3.2-1.32 1.273-1.273 1.32-3.2v-9.016q-.047-1.929-1.32-3.213t-3.2-1.333m0 12.425q.035.072-.142.569-.178.496-.995.568h-6.743q-.07.035-.568-.142-.496-.178-.568-.995v-6.768q-.035-.069.142-.555t.994-.556h6.743q.071-.035.568.139.498.174.569.972zm27.301-11.134a4.3 4.3 0 0 0-1.369-.923 4.3 4.3 0 0 0-3.439.035 4.3 4.3 0 0 0-1.392 1.017l-3.9 4.289-3.927-4.289a4.3 4.3 0 0 0-1.389-1.027 4.1 4.1 0 0 0-1.737-.368 4.3 4.3 0 0 0-1.68.343 4.3 4.3 0 0 0-1.368.923l7.052 7.75-7.052 7.75a4.25 4.25 0 0 0 3.048 1.292 4.28 4.28 0 0 0 3.152-1.395l3.9-4.289 3.901 4.289q.587.646 1.392 1.017a4.2 4.2 0 0 0 1.76.378 4.24 4.24 0 0 0 3.048-1.292l-7.052-7.75z" style="fill:#000;fill-opacity:1" transform="translate(-137.064 -376.82)scale(1.05284)"/></g></g><path d="m-173.385 989.645 18.875 20.742a11.33 11.33 0 0 1-8.16 3.458 11.32 11.32 0 0 1-8.434-3.734l-10.44-11.477-8.159-8.989 8.16-8.92 10.44-11.477a11.32 11.32 0 0 1 8.434-3.734c3.181 0 6.085 1.314 8.16 3.388zm-36.814 0-18.875 20.742a11.33 11.33 0 0 0 8.16 3.458 11.32 11.32 0 0 0 8.434-3.734l10.44-11.477 8.16-8.99-8.16-8.919-10.44-11.477a11.32 11.32 0 0 0-8.434-3.734 11.55 11.55 0 0 0-8.16 3.388z" style="fill:#e57000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.542875" transform="translate(363.985 -1246.874)scale(1.34633)"/><path d="m-184.354 999.93-7.447-8.205-7.447 8.205-17.229 18.933a10.55 10.55 0 0 0 7.447 3.092c3.092 0 5.68-1.263 7.636-3.408l9.593-10.476 9.529 10.476a10.33 10.33 0 0 0 7.698 3.408c2.904 0 5.555-1.2 7.448-3.093zm-.001-20.57-7.447 8.204-7.447-8.205-17.228-18.933a10.55 10.55 0 0 1 7.446-3.092c3.093 0 5.68 1.263 7.636 3.408l9.593 10.476 9.53-10.476a10.33 10.33 0 0 1 7.698-3.408c2.903 0 5.554 1.2 7.447 3.092z" style="fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.495509" transform="translate(363.985 -1246.874)scale(1.34633)"/></svg>
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 44 KiB |
38
Web/sponsor-data.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"top_sponsors": [
|
||||
{
|
||||
"name": "得得",
|
||||
"amount": 50.00,
|
||||
"channel": "微信",
|
||||
"date": "2026-05-01",
|
||||
"message": "无备注"
|
||||
}
|
||||
],
|
||||
"recent_sponsors": [
|
||||
{
|
||||
"name": "美髯",
|
||||
"amount": 20.00,
|
||||
"channel": "微信",
|
||||
"date": "2026-04-29"
|
||||
},
|
||||
{
|
||||
"name": "QQing",
|
||||
"amount": 15.00,
|
||||
"channel": "微信",
|
||||
"date": "2026-05-02"
|
||||
},
|
||||
{
|
||||
"name": "汪亮",
|
||||
"amount": 5.00,
|
||||
"channel": "微信",
|
||||
"date": "2026-05-11"
|
||||
}
|
||||
],
|
||||
"stats": {
|
||||
"total_amount": 90.00,
|
||||
"total_count": 4,
|
||||
"since": "2025-12-30"
|
||||
},
|
||||
"sponsor_link": "https://afdian.com/a/cyrenenight",
|
||||
"qq_group": "1031976463"
|
||||
}
|
||||
@@ -10,9 +10,7 @@ description: 赞助我,加入我们的 QQ 群,与其他用户分享经验、
|
||||
|
||||
## 🎯 唯一指定的赞助渠道
|
||||
|
||||
👉 **[点击此处跳转至爱发电](https://afdian.com/a/cyrenenight)** 👈
|
||||
|
||||
*(支持通过微信以及支付宝来直接进行扫码)*
|
||||

|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ description: 服务条款(Terms of Service / TOS)
|
||||
|
||||
## 5. 社区内容免责
|
||||
- 授权方不对社区中用户生成的内容(包括他人提供的建议、脚本片段、外部链接)作任何明示或默示的保证。
|
||||
- 你应**自行判断、验证并承担采纳他人建议的风险**。与软件使用相关的免责与责任限制,详见 ULA。
|
||||
- 你应**自行判断、验证并承担采纳他人建议的风险**。与软件使用相关的免责与责任限制,详见 [ULA](./ula)。
|
||||
|
||||
## 6. 违规处置
|
||||
我们保留自行判断并采取必要措施的权利,包括但不限于删除内容、锁定讨论、拒绝合并 PR、限制参与等。
|
||||
|
||||
@@ -4,8 +4,11 @@ description: 最终用户许可与附加责任限制协议(ULA)
|
||||
---
|
||||
|
||||
# 最终用户许可与附加责任限制协议(ULA)
|
||||
**项目:PVE Tools Pro**
|
||||
**版本:3.0 (Definitive Legal Revision)**
|
||||
|
||||
> 本协议与 [服务条款(TOS)](./tos) 共同构成项目的完整使用条款。
|
||||
|
||||
**项目:PVE Tools Pro**
|
||||
**版本:3.0 (Definitive Legal Revision)**
|
||||
**生效日期:2026-04-06**
|
||||
|
||||
**版权声明**:Copyright © 2026 Ciriu Networks
|
||||
|
||||
BIN
home-full.png
Normal file
|
After Width: | Height: | Size: 305 KiB |