mirror of
https://github.com/Cola-Echo/memory-manager-concurrent.git
synced 2026-06-14 00:05:49 +00:00
feat: 支持 Lore-char 命名的总结世界书识别
- isSummaryBook 函数新增对 Lore-char/lore-char 的检测 - 修复启用记忆搜索助手时进度条重复显示总结世界书任务的问题 - 更新错误提示信息,说明支持的命名规则 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
57
games/clumsyBird/index.css
Normal file
57
games/clumsyBird/index.css
Normal file
@@ -0,0 +1,57 @@
|
||||
body {
|
||||
background-color: #0099cc;
|
||||
color: #fff;
|
||||
|
||||
/* Allow mouse dragging. */
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
/* disable touch panning/zooming */
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
|
||||
/* Allow canvas to hit the edges of the browser viewport. */
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#screen canvas {
|
||||
margin: auto;
|
||||
/* Hide the gap for font descenders. */
|
||||
display: block;
|
||||
|
||||
/* disable scaling interpolation */
|
||||
image-rendering: optimizeSpeed;
|
||||
image-rendering: -moz-crisp-edges;
|
||||
image-rendering: -o-crisp-edges;
|
||||
image-rendering: -webkit-optimize-contrast;
|
||||
image-rendering: optimize-contrast;
|
||||
-ms-interpolation-mode: nearest-neighbor;
|
||||
}
|
||||
|
||||
#share {
|
||||
margin: 10px auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#share .fb-share-button iframe {
|
||||
margin-top: -4px;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'gamefont';
|
||||
src: url('data/css/gamefont.eot');
|
||||
src: url('data/css/gamefont.eot?#iefix') format('embedded-opentype'),
|
||||
url('data/css/gamefont.woff') format('woff'),
|
||||
url('data/css/gamefont.ttf') format('truetype'),
|
||||
url('data/css/gamefont.svg#gamefont') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.google {
|
||||
position: absolute;
|
||||
left:23%;
|
||||
}
|
||||
Reference in New Issue
Block a user