Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
ygopro
Commits
1efea08c
Commit
1efea08c
authored
Jun 18, 2022
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'server' into full-view
parents
be6f88d4
df589131
Pipeline
#13899
passed with stages
in 2 minutes and 29 seconds
Changes
10
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
422 additions
and
33 deletions
+422
-33
.ci/assets-locale.sh
.ci/assets-locale.sh
+1
-1
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
appveyor.yml
appveyor.yml
+4
-4
cards.cdb
cards.cdb
+0
-0
gframe/game.cpp
gframe/game.cpp
+1
-1
gframe/premake5.lua
gframe/premake5.lua
+4
-0
lflist.conf
lflist.conf
+392
-20
ocgcore
ocgcore
+1
-1
script
script
+1
-1
strings.conf
strings.conf
+17
-4
No files found.
.ci/assets-locale.sh
View file @
1efea08c
...
...
@@ -3,7 +3,7 @@ set -x
set
-o
errexit
# ygopro-database
apt update
&&
apt
-y
install
wget git libarchive-tools
git clone
--depth
=
1 https://code.mycard.moe/
mycard
/ygopro-database
git clone
--depth
=
1 https://code.mycard.moe/
nanahira
/ygopro-database
cp
-rf
./ygopro-database/locales/
$TARGET_LOCALE
/
*
.
# ygopro-images
mkdir
pics
...
...
.gitlab-ci.yml
View file @
1efea08c
...
...
@@ -80,7 +80,7 @@ mat_windows:
._exec_build
:
stage
:
build
#variables:
#
YGOPRO_
NO_LUA_SAFE: '1' # on client no lua safe
# NO_LUA_SAFE: '1' # on client no lua safe
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths
:
...
...
appveyor.yml
View file @
1efea08c
...
...
@@ -17,7 +17,7 @@ install:
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.3.6.tar.gz ; exit 0"
-
tar xf lua-5.3.6.tar.gz
-
move lua-5.3.6
\src
lua
-
move lua-5.3.6 lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/2020/sqlite-amalgamation-3310100.zip ; exit 0"
-
7z x -y sqlite-amalgamation-3310100.zip
...
...
@@ -39,9 +39,9 @@ after_build:
-
ps
:
move bin\release\ygopro.exe .
# nodejs
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://nodejs.org/dist/v1
4.15.0/node-v14.15.0
-win-x64.7z ; exit 0"
-
7z x -y node-v1
4.15.0
-win-x64.7z
-
mv node-v1
4.15.0
-win-x64 node
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://nodejs.org/dist/v1
6.9.1/node-v16.9.1
-win-x64.7z ; exit 0"
-
7z x -y node-v1
6.9.1
-win-x64.7z
-
mv node-v1
6.9.1
-win-x64 node
# srvpro
-
git clone https://github.com/purerosefallen/ygopro-server
...
...
cards.cdb
View file @
1efea08c
No preview for this file type
gframe/game.cpp
View file @
1efea08c
...
...
@@ -214,7 +214,7 @@ bool Game::Initialize() {
SetWindowsIcon
();
//main menu
wchar_t
strbuf
[
256
];
myswprintf
(
strbuf
,
L"KoishiPro %X.0%X.%X
Setsuna
"
,
PRO_VERSION
>>
12
,
(
PRO_VERSION
>>
4
)
&
0xff
,
PRO_VERSION
&
0xf
);
myswprintf
(
strbuf
,
L"KoishiPro %X.0%X.%X
Thirdeye
"
,
PRO_VERSION
>>
12
,
(
PRO_VERSION
>>
4
)
&
0xff
,
PRO_VERSION
&
0xf
);
wMainMenu
=
env
->
addWindow
(
rect
<
s32
>
(
370
,
200
,
650
,
415
),
false
,
strbuf
);
wMainMenu
->
getCloseButton
()
->
setVisible
(
false
);
btnLanMode
=
env
->
addButton
(
rect
<
s32
>
(
10
,
30
,
270
,
60
),
wMainMenu
,
BUTTON_LAN_MODE
,
dataManager
.
GetSysString
(
1200
));
...
...
gframe/premake5.lua
View file @
1efea08c
...
...
@@ -30,6 +30,10 @@ end
links
{
"ikpmp3"
}
end
if
BUILD_IKPMP3
then
links
{
"ikpmp3"
}
end
if
BUILD_EVENT
then
includedirs
{
"../event/include"
}
else
...
...
lflist.conf
View file @
1efea08c
This diff is collapsed.
Click to expand it.
ocgcore
@
141fa84f
Subproject commit
d71e1ea4fa0564fc49736aa9e7c19afd99210499
Subproject commit
141fa84f23157216f03bf60969eb6557a17799ab
script
@
fc9d56a2
Subproject commit
8e1536d0dd8f08f0cfec0ed723aa1c999f11cac7
Subproject commit
fc9d56a2595aa662c218c5c4feb7b43d477553f2
strings.conf
View file @
1efea08c
...
...
@@ -76,8 +76,8 @@
!
system
218
是否使用[%
ls
]的效果代替支付基本分?
!
system
219
是否使用[%
ls
]的效果代替取除超量素材?
!
system
220
是否使用[%
ls
]的效果代替取除指示物?
!
system
221
是否在[%
ls
]发动[%
ls
]的诱发效果?
!
system
222
是否要发动诱发效果?
!
system
221
是否在[%
ls
]发动[%
ls
]的诱发
类
效果?
!
system
222
是否要发动诱发
类
效果?
!
system
223
稍后将询问其他可以发动的效果。
!
system
224
已用正规方法特殊召唤
!
system
225
叠放于[%
ls
](%
d
)下
...
...
@@ -652,6 +652,9 @@
!
counter
0
x5f
拼图指示物
!
counter
0
x60
指示物(北极天熊辐射)
!
counter
0
x61
指示物(命运的囚人)
!
counter
0
x62
指示物(逐渐削减的生命)
!
counter
0
x1063
幻觉指示物
!
counter
0
x64
G
石人指示物
#setnames, using tab for comment
!
setname
0
x1
正义盟军
A
・
O
・
J
!
setname
0
x2
次世代 ジェネクス
...
...
@@ -727,6 +730,7 @@
!
setname
0
x34
宝玉 宝玉
!
setname
0
x1034
宝玉兽 宝玉獣
!
setname
0
x2034
究极宝玉神 究極宝玉神
!
setname
0
x5034
高等宝玉兽
A
宝玉獣
!
setname
0
x35
魔轰神 魔轟神
!
setname
0
x36
机甲 マシンナーズ
!
setname
0
x37
霞之谷 霞の谷
...
...
@@ -1113,7 +1117,7 @@
!
setname
0
x15d
烙印
!
setname
0
x15e
降阶魔法
RDM
!
setname
0
x15f
战吼 ウォークライ
!
setname
0
x160
物
质炉 マテリアクトル
!
setname
0
x160
原
质炉 マテリアクトル
!
setname
0
x161
溟界
!
setname
0
x162
七音服 ドレミコード
!
setname
0
x163
北极天熊 ベアルクティ
...
...
@@ -1140,10 +1144,19 @@
!
setname
0
x177
海龙神 リバイアサン
!
setname
0
x178
潜海 シー・ステルス
!
setname
0
x179
兽带斗神 セリオンズ
!
setname
0
x17a
肆世坏
スケアクロー
!
setname
0
x17a
恐吓爪牙族
スケアクロー
!
setname
0
x17b
野蛮人 バーバリアン
!
setname
0
x17c
漫读使灵
Libromancer
!
setname
0
x17d
群豪 ヴァリアンツ
!
setname
0
x17e
拉比林斯迷宫 ラビュリンス
!
setname
0
x117e
拉比林斯迷宫欢迎 ウェルカム・ラビュリンス
!
setname
0
x17f
神碑
!
setname
0
x180
卫星闪灵 スプライト
!
setname
0
x181
珠泪哀歌族 ティアラメンツ
!
setname
0
x182
春化精
!
setname
0
x183
悠悠 もけもけ
!
setname
0
x184
翼侠 ウィングマン
#setname 0x185 涂鸦 らくがき
!
setname
0
x1185
涂鸦兽 らくがきじゅう
!
setname
0
x2185
涂鸦本 らくがきちょう
!
setname
0
x186
G
石人
G
ゴーレム
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment