Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-2pick
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
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
MyCard
ygopro-2pick
Commits
dfee96e2
Commit
dfee96e2
authored
Aug 12, 2018
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
f3d8af41
8eca6cb3
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
62 additions
and
34 deletions
+62
-34
.travis.yml
.travis.yml
+2
-2
appveyor.yml
appveyor.yml
+12
-12
gframe/event_handler.cpp
gframe/event_handler.cpp
+4
-4
ocgcore
ocgcore
+1
-1
premake/freetype/premake4.lua
premake/freetype/premake4.lua
+38
-10
premake/gframe/ygopro.rc
premake/gframe/ygopro.rc
+4
-4
script
script
+1
-1
No files found.
.travis.yml
View file @
dfee96e2
...
...
@@ -26,8 +26,8 @@ before_install:
brew install freetype libevent sqlite p7zip dylibbundler > /dev/null;
fi
-
curl --location --retry 5 http://www.lua.org/ftp/lua-5.3.
4
.tar.gz | tar zfx -
-
cd lua-5.3.
4
-
curl --location --retry 5 http://www.lua.org/ftp/lua-5.3.
5
.tar.gz | tar zfx -
-
cd lua-5.3.
5
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
sudo make macosx test install > /dev/null;
fi
...
...
appveyor.yml
View file @
dfee96e2
...
...
@@ -17,9 +17,9 @@ install:
-
move libevent-2.0.22-stable event
-
xcopy /E event\WIN32-Code event\include
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name http://downloads.sourceforge.net/freetype/freetype-2.
8
.1.tar.bz2 ; exit 0"
-
tar xf freetype-2.
8
.1.tar.bz2
-
move freetype-2.
8
.1 freetype
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name http://downloads.sourceforge.net/freetype/freetype-2.
9
.1.tar.bz2 ; exit 0"
-
tar xf freetype-2.
9
.1.tar.bz2
-
move freetype-2.
9
.1 freetype
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name http://downloads.sourceforge.net/irrlicht/irrlicht-1.8.4.zip ; exit 0"
-
7z x -y irrlicht-1.8.4.zip
...
...
@@ -27,13 +27,13 @@ install:
-
move irrlicht-1.8.4\source\Irrlicht irrlicht\src
-
move irrlicht-1.8.4\include irrlicht\include
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.3.
4
.tar.gz ; exit 0"
-
tar xf lua-5.3.
4
.tar.gz
-
move lua-5.3.
4
\src lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.3.
5
.tar.gz ; exit 0"
-
tar xf lua-5.3.
5
.tar.gz
-
move lua-5.3.
5
\src lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/201
7/sqlite-amalgamation-321
0000.zip ; exit 0"
-
7z x -y sqlite-amalgamation-32
1
0000.zip
-
move sqlite-amalgamation-32
1
0000 sqlite3
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/201
8/sqlite-amalgamation-324
0000.zip ; exit 0"
-
7z x -y sqlite-amalgamation-32
4
0000.zip
-
move sqlite-amalgamation-32
4
0000 sqlite3
-
git clone --depth=1 https://%access_token%@github.com/purerosefallen/irrklang
-
mv -f irrklang/plugins/ikpmp3 .
...
...
@@ -101,7 +101,7 @@ artifacts:
cache
:
-
premake-5.0.0-alpha12-windows.zip
-
libevent-2.0.22-stable.tar.gz
-
freetype-2.
8
.1.tar.bz2
-
freetype-2.
9
.1.tar.bz2
-
irrlicht-1.8.4.zip
-
lua-5.3.
4
.tar.gz
-
sqlite-amalgamation-32
1
0000.zip
-
lua-5.3.
5
.tar.gz
-
sqlite-amalgamation-32
4
0000.zip
gframe/event_handler.cpp
View file @
dfee96e2
...
...
@@ -1800,22 +1800,22 @@ bool ClientField::OnCommonEvent(const irr::SEvent& event) {
break
;
}
case
BUTTON_WINDOW_RESIZE_S
:
{
mainGame
->
SetWindowsScale
(
0.8
);
mainGame
->
SetWindowsScale
(
0.8
f
);
return
true
;
break
;
}
case
BUTTON_WINDOW_RESIZE_M
:
{
mainGame
->
SetWindowsScale
(
1
);
mainGame
->
SetWindowsScale
(
1
.0
f
);
return
true
;
break
;
}
case
BUTTON_WINDOW_RESIZE_L
:
{
mainGame
->
SetWindowsScale
(
1.25
);
mainGame
->
SetWindowsScale
(
1.25
f
);
return
true
;
break
;
}
case
BUTTON_WINDOW_RESIZE_XL
:
{
mainGame
->
SetWindowsScale
(
1.5
);
mainGame
->
SetWindowsScale
(
1.5
f
);
return
true
;
break
;
}
...
...
ocgcore
@
28f7de0f
Subproject commit
6db38fa7638e8722429e4680bb2100d216871e2
e
Subproject commit
28f7de0fe89493e1061bfb34f503e6e5d154ab3
e
premake/freetype/premake4.lua
View file @
dfee96e2
...
...
@@ -4,16 +4,44 @@ project "freetype"
includedirs
{
"include"
}
defines
{
"FT2_BUILD_LIBRARY"
}
files
{
"src/autofit/autofit.c"
,
"src/bdf/bdf.c"
,
"src/cff/cff.c"
,
"src/base/ftbase.c"
,
"src/base/ftbitmap.c"
,
"src/cache/ftcache.c"
,
"src/base/ftfstype.c"
,
"src/base/ftgasp.c"
,
"src/base/ftglyph.c"
,
"src/gzip/ftgzip.c"
,
"src/base/ftinit.c"
,
"src/lzw/ftlzw.c"
,
"src/base/ftstroke.c"
,
"src/base/ftsystem.c"
,
"src/smooth/smooth.c"
,
"src/base/ftbbox.c"
,
"src/base/ftfntfmt.c"
,
"src/base/ftmm.c"
,
"src/base/ftpfr.c"
,
"src/base/ftsynth.c"
,
"src/base/fttype1.c"
,
"src/base/ftwinfnt.c"
,
"src/base/ftlcdfil.c"
,
"src/base/ftgxval.c"
,
"src/base/ftotval.c"
,
"src/base/ftpatent.c"
,
"src/pcf/pcf.c"
,
"src/pfr/pfr.c"
,
"src/psaux/psaux.c"
,
"src/pshinter/pshinter.c"
,
"src/psnames/psmodule.c"
,
"src/raster/raster.c"
,
"src/sfnt/sfnt.c"
,
"src/truetype/truetype.c"
,
"src/type1/type1.c"
,
"src/cid/type1cid.c"
,
"src/type42/type42.c"
,
"src/winfonts/winfnt.c"
}
files
{
"src/autofit/autofit.c"
,
"src/base/ftbase.c"
,
"src/base/ftbbox.c"
,
"src/base/ftbdf.c"
,
"src/base/ftbitmap.c"
,
"src/base/ftcid.c"
,
"src/base/ftfstype.c"
,
"src/base/ftgasp.c"
,
"src/base/ftglyph.c"
,
"src/base/ftgxval.c"
,
"src/base/ftinit.c"
,
"src/base/ftmm.c"
,
"src/base/ftotval.c"
,
"src/base/ftpatent.c"
,
"src/base/ftpfr.c"
,
"src/base/ftstroke.c"
,
"src/base/ftsynth.c"
,
"src/base/ftsystem.c"
,
"src/base/fttype1.c"
,
"src/base/ftwinfnt.c"
,
"src/bdf/bdf.c"
,
"src/cache/ftcache.c"
,
"src/cff/cff.c"
,
"src/cid/type1cid.c"
,
"src/gzip/ftgzip.c"
,
"src/lzw/ftlzw.c"
,
"src/pcf/pcf.c"
,
"src/pfr/pfr.c"
,
"src/psaux/psaux.c"
,
"src/pshinter/pshinter.c"
,
"src/psnames/psmodule.c"
,
"src/raster/raster.c"
,
"src/sfnt/sfnt.c"
,
"src/smooth/smooth.c"
,
"src/truetype/truetype.c"
,
"src/type1/type1.c"
,
"src/type42/type42.c"
,
"src/winfonts/winfnt.c"
}
configuration
"windows"
files
{
"builds/windows/ftdebug.c"
}
premake/gframe/ygopro.rc
View file @
dfee96e2
1 ICON "ygopro.ico"
1 VERSIONINFO
FILEVERSION 1, 0, 34,
4
PRODUCTVERSION 1, 0, 34,
4
FILEVERSION 1, 0, 34,
5
PRODUCTVERSION 1, 0, 34,
5
FILEOS 0x4
FILETYPE 0x1
...
...
@@ -16,8 +16,8 @@ VALUE "InternalName", "KoishiPro"
VALUE "LegalCopyright", "Copyright (C) 2018 Nanahira"
VALUE "OriginalFilename", "ygopro.exe"
VALUE "ProductName", "KoishiPro"
VALUE "FileVersion", "1.034.
4
.Koishi"
VALUE "ProductVersion", "1.034.
4
.Koishi"
VALUE "FileVersion", "1.034.
5
.Koishi"
VALUE "ProductVersion", "1.034.
5
.Koishi"
END
END
BLOCK "VarFileInfo"
...
...
script
@
2b79cea8
Subproject commit
ea1c4fe515a0822b92086af5473cda869f2e8e83
Subproject commit
2b79cea84b76eedc8ae87d6952cccd51eac32860
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