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
1
Merge Requests
1
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
03ae1209
Commit
03ae1209
authored
Aug 18, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into server-develop
parents
6d529246
816857b4
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
10 deletions
+11
-10
.github/workflows/build.yml
.github/workflows/build.yml
+4
-4
.gitlab-ci.yml
.gitlab-ci.yml
+3
-2
cards.cdb
cards.cdb
+0
-0
gframe/deck_manager.cpp
gframe/deck_manager.cpp
+1
-1
gframe/game.cpp
gframe/game.cpp
+1
-1
ocgcore
ocgcore
+1
-1
script
script
+1
-1
No files found.
.github/workflows/build.yml
View file @
03ae1209
...
...
@@ -437,8 +437,8 @@ jobs:
-
name
:
Copy premake files
run
:
|
cp -r premake/* .
cp -r resource/* .
cp -
p
r premake/* .
cp -
p
r resource/* .
-
name
:
Use premake to generate make files (apt packages)
if
:
matrix.static-link !=
true
...
...
@@ -664,8 +664,8 @@ jobs:
-
name
:
Copy premake files
run
:
|
cp -r premake/* .
cp -r resource/* .
cp -
p
r premake/* .
cp -
p
r resource/* .
-
name
:
Use premake to generate make files (Homebrew packages)
if
:
matrix.static-link !=
true
...
...
.gitlab-ci.yml
View file @
03ae1209
...
...
@@ -93,8 +93,9 @@ mat_windows:
._exec_build
:
stage
:
build
#variables:
# NO_LUA_SAFE: '1' # on client no lua safe
variables
:
# NO_LUA_SAFE: '1' # on client no lua safe
GIT_STRATEGY
:
clone
#cache:
# key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
# paths:
...
...
cards.cdb
View file @
03ae1209
No preview for this file type
gframe/deck_manager.cpp
View file @
03ae1209
...
...
@@ -353,7 +353,7 @@ bool DeckManager::SaveDeck(const Deck& deck, const wchar_t* file) {
return
false
;
std
::
stringstream
deckStream
;
SaveDeck
(
deck
,
deckStream
);
std
::
f
write
(
deckStream
.
str
().
c_str
(),
1
,
deckStream
.
str
().
length
(),
fp
);
std
::
f
puts
(
deckStream
.
str
().
c_str
(),
fp
);
std
::
fclose
(
fp
);
return
true
;
}
...
...
gframe/game.cpp
View file @
03ae1209
...
...
@@ -273,7 +273,7 @@ bool Game::Initialize() {
SetWindowsIcon
();
//main menu
wchar_t
strbuf
[
256
];
myswprintf
(
strbuf
,
L"KoishiPro %X.0%X.%X M
anjushage
"
,
(
PRO_VERSION
&
0xf000U
)
>>
12
,
(
PRO_VERSION
&
0x0ff0U
)
>>
4
,
PRO_VERSION
&
0x000fU
);
myswprintf
(
strbuf
,
L"KoishiPro %X.0%X.%X M
emes
"
,
(
PRO_VERSION
&
0xf000U
)
>>
12
,
(
PRO_VERSION
&
0x0ff0U
)
>>
4
,
PRO_VERSION
&
0x000fU
);
wMainMenu
=
env
->
addWindow
(
irr
::
core
::
rect
<
irr
::
s32
>
(
370
,
200
,
650
,
415
),
false
,
strbuf
);
wMainMenu
->
getCloseButton
()
->
setVisible
(
false
);
btnLanMode
=
env
->
addButton
(
irr
::
core
::
rect
<
irr
::
s32
>
(
10
,
30
,
270
,
60
),
wMainMenu
,
BUTTON_LAN_MODE
,
dataManager
.
GetSysString
(
1200
));
...
...
ocgcore
@
ce8c6540
Subproject commit
d3deef2919e1d05c8e42303fb3aedbf256c91f3f
Subproject commit
ce8c654094247120ee83ed7f753d19d20539220b
script
@
cdd2dcca
Subproject commit
8fe1fd5e7562823492a1f13606d8390b30306f3a
Subproject commit
cdd2dcca643c7c48aa253461bb2d5752e01d7a48
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