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
REIKAI
ygopro
Commits
5a7e4a46
Commit
5a7e4a46
authored
Oct 11, 2019
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into another
parents
bd95da1a
1dfb97d0
Changes
8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
205 additions
and
19 deletions
+205
-19
.travis.yml
.travis.yml
+1
-1
appveyor.yml
appveyor.yml
+1
-1
cards.cdb
cards.cdb
+0
-0
gframe/game.cpp
gframe/game.cpp
+1
-1
lflist.conf
lflist.conf
+198
-12
ocgcore
ocgcore
+1
-1
premake/gframe/ygopro.rc
premake/gframe/ygopro.rc
+2
-2
script
script
+1
-1
No files found.
.travis.yml
View file @
5a7e4a46
...
@@ -79,7 +79,7 @@ before_deploy:
...
@@ -79,7 +79,7 @@ before_deploy:
7z a -mx9 -xr!.git* KoishiPro-$TRAVIS_OS_NAME-$TRAVIS_TAG.zip ygopro.app;
7z a -mx9 -xr!.git* KoishiPro-$TRAVIS_OS_NAME-$TRAVIS_TAG.zip ygopro.app;
fi
fi
-
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/
HuangYuNa
n/ygopro222-images/archive/master.zip
-
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/
purerosefalle
n/ygopro222-images/archive/master.zip
-
7z x -y ygopro222-images-master.zip > /dev/null
-
7z x -y ygopro222-images-master.zip > /dev/null
-
mv -f ygopro222-images-master pics
-
mv -f ygopro222-images-master pics
...
...
appveyor.yml
View file @
5a7e4a46
...
@@ -55,7 +55,7 @@ after_build:
...
@@ -55,7 +55,7 @@ after_build:
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/purerosefallen/windbot/releases/download/latest/WindBot.7z ; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/purerosefallen/windbot/releases/download/latest/WindBot.7z ; exit 0"
-
7z x -y WindBot.7z
-
7z x -y WindBot.7z
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/
HuangYuNa
n/ygopro222-images/archive/master.zip ; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/
purerosefalle
n/ygopro222-images/archive/master.zip ; exit 0"
-
7z x -y ygopro222-images-master.zip
-
7z x -y ygopro222-images-master.zip
-
mv -f ygopro222-images-master pics
-
mv -f ygopro222-images-master pics
...
...
cards.cdb
View file @
5a7e4a46
No preview for this file type
gframe/game.cpp
View file @
5a7e4a46
...
@@ -116,7 +116,7 @@ bool Game::Initialize() {
...
@@ -116,7 +116,7 @@ bool Game::Initialize() {
SetWindowsIcon
();
SetWindowsIcon
();
//main menu
//main menu
wchar_t
strbuf
[
256
];
wchar_t
strbuf
[
256
];
myswprintf
(
strbuf
,
L"KoishiPro Another %X.0%X.%X
Scarlet
"
,
PRO_VERSION
>>
12
,
(
PRO_VERSION
>>
4
)
&
0xff
,
PRO_VERSION
&
0xf
);
myswprintf
(
strbuf
,
L"KoishiPro Another %X.0%X.%X
Nemesis
"
,
PRO_VERSION
>>
12
,
(
PRO_VERSION
>>
4
)
&
0xff
,
PRO_VERSION
&
0xf
);
wMainMenu
=
env
->
addWindow
(
rect
<
s32
>
(
370
,
200
,
650
,
415
),
false
,
strbuf
);
wMainMenu
=
env
->
addWindow
(
rect
<
s32
>
(
370
,
200
,
650
,
415
),
false
,
strbuf
);
wMainMenu
->
getCloseButton
()
->
setVisible
(
false
);
wMainMenu
->
getCloseButton
()
->
setVisible
(
false
);
btnLanMode
=
env
->
addButton
(
rect
<
s32
>
(
10
,
30
,
270
,
60
),
wMainMenu
,
BUTTON_LAN_MODE
,
dataManager
.
GetSysString
(
1200
));
btnLanMode
=
env
->
addButton
(
rect
<
s32
>
(
10
,
30
,
270
,
60
),
wMainMenu
,
BUTTON_LAN_MODE
,
dataManager
.
GetSysString
(
1200
));
...
...
lflist.conf
View file @
5a7e4a46
This diff is collapsed.
Click to expand it.
ocgcore
@
da0cd22b
Subproject commit
e18df9cd2f2af54026d0a48a607d0db83b54310c
Subproject commit
da0cd22bbb58d6a871a3f8517eaf91b0bd4fbff5
premake/gframe/ygopro.rc
View file @
5a7e4a46
...
@@ -16,8 +16,8 @@ VALUE "InternalName", "KoishiPro Another"
...
@@ -16,8 +16,8 @@ VALUE "InternalName", "KoishiPro Another"
VALUE "LegalCopyright", "Copyright (C) 2019 Nanahira"
VALUE "LegalCopyright", "Copyright (C) 2019 Nanahira"
VALUE "OriginalFilename", "ygopro_another.exe"
VALUE "OriginalFilename", "ygopro_another.exe"
VALUE "ProductName", "KoishiPro Another"
VALUE "ProductName", "KoishiPro Another"
VALUE "FileVersion", "
Scarlet
"
VALUE "FileVersion", "
Nemesis
"
VALUE "ProductVersion", "
Scarlet
"
VALUE "ProductVersion", "
Nemesis
"
END
END
END
END
BLOCK "VarFileInfo"
BLOCK "VarFileInfo"
...
...
script
@
feb9ce79
Subproject commit f
6d075baab757900f16210b77e47149319c4fc4e
Subproject commit f
eb9ce79cb5d52ae6ec047d467befec49329d601
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