Skip to content

Commit ddf788e

Browse files
committed
docs: galgame toolset resource doc
1 parent 161ec43 commit ddf788e

File tree

10 files changed

+105
-12
lines changed

10 files changed

+105
-12
lines changed

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@
325325
"sama",
326326
"sayafx",
327327
"schemaname",
328+
"Scripter",
328329
"scrollbars",
329330
"scule",
330331
"Seiheki",
@@ -376,9 +377,11 @@
376377
"Tenpure",
377378
"Tenshi",
378379
"Terminalia",
380+
"Tesseract",
379381
"Tetsudou",
380382
"Textblock",
381383
"texthook",
384+
"Textractor",
382385
"tgnav",
383386
"tieba",
384387
"Tobu",
@@ -426,6 +429,7 @@
426429
"VN's",
427430
"VNDB",
428431
"vndbid",
432+
"Vnite",
429433
"vnode",
430434
"vueup",
431435
"vueuse",
@@ -436,6 +440,7 @@
436440
"weiyun",
437441
"Wenders",
438442
"xaxis",
443+
"xdelta",
439444
"xiayuge",
440445
"xifanacg",
441446
"xiuren",

components/doc/detail/BackgroundImage.vue

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ const props = defineProps<{
66

77
<template>
88
<Teleport to="#teleports">
9-
<KunImage
10-
:custom="true"
11-
class="fixed top-0 left-0 h-full w-full object-cover brightness-[var(--kun-background-brightness)]"
12-
:src="props.src"
13-
/>
9+
<div class="bg-primary-50 fixed top-0 left-0 h-full w-full">
10+
<div class="bg-primary-50 fixed top-0 left-0 h-full w-full opacity-30">
11+
<KunImage
12+
:custom="true"
13+
class="h-full w-full object-cover"
14+
:src="props.src"
15+
/>
16+
</div>
17+
</div>
1418
</Teleport>
1519
</template>

components/home/Carousel.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
import { useMouseInElement } from '@vueuse/core'
33
44
const { data: pinnedPosts } = await useAsyncData(() => {
5-
return queryCollection('content').where('pin', '=', true).all()
5+
return queryCollection('content')
6+
.where('pin', '=', true)
7+
.order('modifiedTime', 'DESC')
8+
.all()
69
})
710
811
const currentSlide = ref(0)

components/toolset/resource/Container.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ const handleUploadSuccess = (value: ToolsetUploadCompleteResponse) => {
3838
<div class="max-w-2xl space-y-3">
3939
<h3 class="mb-3 text-lg font-semibold">发布资源</h3>
4040

41-
<KunLink to="/doc">发布 Galgame 工具下载资源规定</KunLink>
41+
<KunLink to="/doc/notice/create-galgame-toolset">
42+
发布 Galgame 工具下载资源规定
43+
</KunLink>
4244

4345
<div class="flex flex-col gap-1">
4446
<p class="text-default-700 text-sm">

constants/toolset.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export const KUN_GALGAME_TOOLSET_TYPE_MAP: Record<string, string> = {
77
translator: '翻译相关',
88
extractor: '解包工具',
99
converter: '资源转换工具',
10-
engine: '引擎相关工具',
1110
debug: '开发者工具',
1211
launcher: '游戏管理工具',
1312
script: '自动化脚本',
@@ -20,7 +19,6 @@ export const kunGalgameToolsetTypeOptions: KunSelectOption[] = [
2019
{ value: 'translator', label: '翻译相关' },
2120
{ value: 'extractor', label: '解包工具' },
2221
{ value: 'converter', label: '资源转换工具' },
23-
{ value: 'engine', label: '引擎相关工具' },
2422
{ value: 'debug', label: '开发者工具' },
2523
{ value: 'launcher', label: '游戏管理工具' },
2624
{ value: 'script', label: '自动化脚本' },

content/doc/galgame/galgame-resource-website.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Galgame 资源网站大全'
33
banner: '/content/galgame/galgame-resource-website/banner.avif'
44
description: '本指南汇总了多个优质 Galgame 资源网站,按推荐等级分为 SSS、T0 到 T3 多个级别。文章首推 “Galgame 网站 Wiki” 作为最全面的资源索引平台。T0 级别包括 Nyaa,是最全面的 Galgame 资源站。T1 级别推荐 Anime-Sharing(AS 论坛)和 绯月论坛(KF),前者资源丰富,后者为中文 Galgame 交流的核心。T2 级别涵盖网盘下载站,如 zi0.cc。特殊站点包括 Moyu.moe(补丁下载)和 Telegram 群组(如黄油联盟 bot),提供自动化搜索服务。此外,Kungal.com 是开源、无广告的独特站点。'
55
publishedTime: 2024-05-03
6-
modifiedTime: 2025-07-21
6+
modifiedTime: 2025-09-28
77
category: galgame
88
authorUid: 2
99
authorName: ''
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
title: 'Galgame 工具下载资源页面, 上线!'
3+
banner: '/content/notice/create-galgame-toolset/banner.avif'
4+
description: '本页面旨在提供安全、便捷的 Galgame 工具下载与分享平台。用户可获取或上传模拟器、翻译工具、解包/转换工具、开发者工具、启动器、自动化脚本及相关文档等资源。发布前请确保资源合法、不含游戏本体、已查毒并归类准确。平台鼓励合理使用工具、提升游戏体验,同时通过萌萌点机制激励优质分享,让每位用户都能安全、高效地探索 Galgame 世界。'
5+
publishedTime: 2025-09-27
6+
modifiedTime: 2025-09-27
7+
category: notice
8+
authorUid: 2
9+
authorName: ''
10+
authorAvatar: 'https://image.kungal.com/avatar/user_2/avatar.webp'
11+
authorHomepage: 'https://github.com/KUN1007'
12+
pin: true
13+
---
14+
15+
## 为什么有这个功能
16+
17+
在现在的 Galgame 环境下, Galgame 资源随手就可以找到, 我们许多时候缺少的不是 Galgame 资源, 而是如何使用好这些 Galgame 资源, 如何选择正确的工具来完善自己的体验
18+
19+
世界上有种类繁多的, 方便快捷的工具可以供使用, 我们始终以促进所有人了解基本的计算机常识为目的, 因此我们编写了这个页面
20+
21+
在这里, 任何人都可以在这里方便快捷的获取到世界上绝大部分的 Galgame 工具下载资源, 任何用户也可以自由的上传自己发现、自己制作的 Galgame 工具资源
22+
23+
我们希望所有的人都有良好的计算机使用常识, 请大家利用好网站的这个功能, 将好用的 Galgame 工具加以转播, 为世界变得更加便捷做出自己的贡献
24+
25+
## 工具分类说明
26+
27+
本页面用于存放 **Galgame 常用辅助工具**,请在发布时选择合适的分类:
28+
29+
### 1. 模拟器相关 - 模拟器 / 兼容层(Emulator)
30+
- **用途**: 运行不同平台的 Galgame,解决兼容性问题
31+
- **示例**: KRKR 模拟器、ONScripter、Wine / Proton、Locale Emulator
32+
33+
### 2. 翻译相关 - 文本钩子 / 翻译(Text Hooker)
34+
- **用途**: 抓取游戏中的文字,便于翻译或实时阅读
35+
- **示例**: LunaTranslator、Textractor、Visual Novel Reader (VNR)
36+
37+
### 3. 解包工具 - 资源提取 / 解包(Extractor)
38+
- **用途**: 解包游戏资源(图片、音频、脚本等),辅助汉化或二次开发
39+
- **示例**: GARbro、arc_unpacker、KrkrExtract
40+
41+
### 4. 资源转换工具 - 资源转换(Converter)
42+
- **用途**: 转换音频、图片、视频或字体格式,支持汉化和移植
43+
- **示例**: FFmpeg、图像批处理工具
44+
45+
### 5. 开发者工具 - 调试 / 开发者工具(Debug)
46+
- **用途**: 调试游戏脚本、查看运行日志、定位兼容性问题
47+
- **示例**: Ren’Py 调试工具、KiriKiri/KAG 工具
48+
49+
### 6. 游戏管理工具 - 启动器 / 游戏管理(Launcher)
50+
- **用途**: 集中管理和启动游戏,或在 Windows/Linux/Mac 上运行 Windows Galgame
51+
- **示例**: PotatoVN、Vnite、Bottles 等
52+
53+
### 7. 自动化脚本 - 自动化脚本 / 宏(Automation)
54+
- **用途**: 提供批处理、快捷操作或自动化功能
55+
- **示例**: AutoHotkey 脚本库、快捷键宏
56+
57+
### 8. 文档相关 - 文档 / 指南 / 社区资源(Docs & Guides)
58+
- **用途**: 提供翻译教程、工具使用指南、社区维基资源
59+
- **示例**: VNDB、Galgame 网站 Wiki、GitHub Galgame 话题
60+
61+
### 9. 其它 - 其它工具(Others)
62+
- **用途**: 未归入以上分类的工具,或特殊功能工具
63+
- **示例**: 自定义工具、歌颂莲的美好小工具
64+
65+
## 上传规定
66+
67+
1. **禁止在此页面上传游戏资源,违规直接永久封禁账号**
68+
2. 第一次发布资源前请对自己的设备查毒,以免大量用户感染病毒
69+
3. 请注意工具资源的所有权,作者明确禁止转载的资源请勿上传
70+
4. 发布一个工具资源您将获得 **3 萌萌点**,删除一个工具将会扣除 **3 萌萌点**
71+
5. 每名用户每天有 **(100 + 您的萌萌点数) MB**的上传额度,每天会重置
72+
6. 每名用户的最大上传文件大小为 **2GB**
73+
7. 上传速度完全取决于您的网络情况,网络不佳请使用代理
74+
75+
## 第一次发布请注意
76+
77+
- 确认资源 **不属于游戏本体**
78+
- 已进行杀毒扫描
79+
- 资源的 **版权和转载权限** 合法合规
80+
- 分类选择正确
81+
- 提供清晰的资源说明(用途、适用引擎、平台、版本)
82+
- 建议附带校验信息(SHA256 / MD5)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kun-galgame-nuxt3",
3-
"version": "4.4.7",
3+
"version": "4.4.8",
44
"packageManager": "[email protected]",
55
"private": true,
66
"scripts": {
55 KB
Binary file not shown.

store/types/toolset/toolset.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export interface ToolsetStoreTemp {
77
| 'translator'
88
| 'extractor'
99
| 'converter'
10-
| 'engine'
1110
| 'debug'
1211
| 'launcher'
1312
| 'script'

0 commit comments

Comments
 (0)