Initial commit: ap_ds Code Repository System v1.0.0

This commit is contained in:
dvs
2026-08-28 11:23:52 +08:00
commit 74a93c63f2
23 changed files with 5811 additions and 0 deletions
+77
View File
@@ -0,0 +1,77 @@
<!-- 英文 SEO 标签 -->
<meta name="description" content="Official feedback channel for ap_ds. Submit bug reports, feature requests, or general inquiries via form. Includes FAQ: supported formats (MP3/FLAC/OGG/WAV), DAP playback logs. Direct email replies from maintainer.">
<meta name="keywords" content="ap_ds feedback, bug report Python audio, feature request, ask question, DvsXT contact, MP3 FLAC OGG WAV support, Python audio library help">
<meta property="og:title" content="ap_ds Feedback – Ask Questions & Report Issues">
<meta property="og:description" content="Direct line to ap_ds maintainer. Submit feedback, get answers via email. Read FAQ before posting.">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="ap_ds Feedback Form">
<!-- 中文 SEO 标签 -->
<meta name="description" lang="zh-CN" content="ap_ds 官方反馈通道。提交 Bug 报告、功能建议或一般咨询。附常见问题:支持的音频格式(MP3/FLAC/OGG/WAV)、DAP 播放记录获取方法。维护者通过邮件直接回复。">
<meta name="keywords" lang="zh-CN" content="ap_ds 反馈, 提交Bug, 功能建议, 提问, DvsXT 联系, MP3 FLAC OGG WAV支持, Python音频库帮助">
<meta property="og:title" lang="zh-CN" content="ap_ds 反馈 – 提问与建议">
<meta property="og:description" lang="zh-CN" content="直连 ap_ds 维护者。提交反馈,邮件获取回复。提交前可查阅常见问题。">{% extends "base.html" %}
{% block content %}{% block title %}ap_ds Feedback – Submit Questions, Bug Reports & Feature Requests{% endblock %}
<div class="repo-container" style="max-width: 800px;">
<div class="repo-card">
<div class="repo-card__header">
<h2 class="repo-card__title">💬 提问与建议</h2>
<p class="repo-text-secondary repo-text-sm repo-mt-2">
欢迎向我们提出任何问题或建议,我们会认真对待每一条反馈。
</p>
</div>
<div class="repo-card__body">
{% if error %}
<div class="repo-message repo-message--error" style="position: static; transform: none; margin-bottom: 1rem;">
{{ error }}
</div>
{% endif %}
{% if success %}
<div class="repo-message repo-message--success" style="position: static; transform: none; margin-bottom: 1rem;">
{{ success }}
</div>
{% endif %}
<form method="post">
<div class="repo-mb-4">
<label class="repo-text-sm repo-font-medium repo-mb-2 repo-block">邮箱地址</label>
<input type="email" name="email" class="repo-input" required placeholder="your@email.com">
<p class="repo-text-xs repo-text-tertiary repo-mt-1">我们会将回复发送到此邮箱</p>
</div>
<div class="repo-mb-4">
<label class="repo-text-sm repo-font-medium repo-mb-2 repo-block">反馈内容</label>
<textarea name="content" class="repo-textarea repo-input" rows="8" required placeholder="请详细描述您的问题或建议..."></textarea>
</div>
<div class="repo-flex repo-gap-3">
<button type="submit" class="repo-btn repo-btn--primary">提交反馈</button>
<button type="reset" class="repo-btn repo-btn--secondary">清空</button>
</div>
</form>
</div>
</div>
<div class="repo-card repo-mt-6">
<div class="repo-card__body">
<h3 class="repo-font-semibold repo-mb-3">常见问题</h3>
<div class="repo-space-y-3">
<div>
<div class="repo-font-medium">Q: ap_ds 支持哪些音频格式?</div>
<p class="repo-text-secondary repo-text-sm">A: 支持 MP3、FLAC、OGG、WAV 四种主流格式。</p>
</div>
<div>
<div class="repo-font-medium">Q: 遇到 SSL 证书错误怎么办?</div>
<p class="repo-text-secondary repo-text-sm">A: ap_ds 内置了多层下载策略,会自动处理 SSL 问题。如仍遇到问题,请手动下载 SDL2 库。</p>
</div>
<div>
<div class="repo-font-medium">Q: 如何获取 DAP 播放记录?</div>
<p class="repo-text-secondary repo-text-sm">A: 使用 get_dap_recordings() 方法获取,或使用 save_dap_to_json() 保存为文件。</p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}