feat(config): 更新游戏配置信息

- 删除俄语标题字段- 修改游戏标题为“编程农场”
- 更新游戏描述和版本信息
- 更改启动路径和执行文件名
- 调整标题样式类名实现悬停模糊效果- 替换视频壁纸资源路径
This commit is contained in:
Chaos
2025-11-14 07:15:32 +08:00
parent 6b6c61fd08
commit e78cd62561
5 changed files with 9 additions and 11 deletions

View File

@@ -10,7 +10,7 @@
</script> </script>
<header class="h-8 z-50 w-full backdrop-blur-2xl absolute shadow-xl top-0 window-controls flex gap-10 px-3 items-center" data-tauri-drag-region> <header class="h-8 z-50 w-full hover:backdrop-blur-2xl transition-all duration-300 ease-in-out absolute top-0 window-controls flex gap-10 px-3 items-center" data-tauri-drag-region>
<div class="flex-1" data-tauri-drag-region></div> <div class="flex-1" data-tauri-drag-region></div>

View File

@@ -1,5 +1,5 @@
<script lang="ts"> <script lang="ts">
import video from '$lib/assets/video/c9df6498_517c_4fee_a39d_72b43f3425fd.mp4'; import video from '$lib/assets/video/bg.mp4';
</script> </script>
<div class="app-wallpaper absolute top-0 -z-10" > <div class="app-wallpaper absolute top-0 -z-10" >

View File

@@ -1,10 +1,9 @@
export const GAME_CONFIG = { export const GAME_CONFIG = {
title: '逃离鸭科夫', title: '编程农场',
title_rus: 'Побег из Дакова', title_en: 'The Farmer Was Replaced',
title_en: 'Escape From Duckov', version: '1.0',
version: '1.1.6', description: "编程并不断优化你的无人机,实现农场自动化。安坐一旁,看它为你打理一切;收集资源,解锁更尖端的科技,成为全世界效率第一的农场主。畅享游戏快乐,同时不断提高解决问题和编写代码的能力。",
description: "「逃离鸭科夫」是一款鸭子题材PVE俯视角撤离射击游戏。你要在鸭科夫的世界里搜寻物资建造藏身处升级装备从一无所有到做大做强面对虎视眈眈的敌鸭想方设法生存下去——或者逃离。", pathname: '\\The Farmer Was Replaced',
pathname: '\\Duckov', launch: 'TheFarmerWasReplaced.exe',
launch: 'Duckov.exe', shortcut_name: "编程农场",
shortcut_name: "逃离鸭科夫",
}; };

View File

@@ -17,7 +17,6 @@
<span class="justify-items-center"> <span class="justify-items-center">
<span>{GAME_CONFIG.title}</span> <span>{GAME_CONFIG.title}</span>
<span>{GAME_CONFIG.title_en}</span> <span>{GAME_CONFIG.title_en}</span>
<span>{GAME_CONFIG.title_rus}</span>
</span> </span>
</span> </span>
</p> </p>