Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
srvpro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
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
srvpro
Commits
1a54902c
Commit
1a54902c
authored
Feb 19, 2018
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update data path
parent
0367dd27
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
12 deletions
+12
-12
data/constants.json
data/constants.json
+0
-0
data/i18n.json
data/i18n.json
+0
-0
data/proto_structs.json
data/proto_structs.json
+0
-0
data/structs.json
data/structs.json
+0
-0
data/typedefs.json
data/typedefs.json
+0
-0
ygopro-deck-stats.js
ygopro-deck-stats.js
+1
-1
ygopro-pre.js
ygopro-pre.js
+1
-1
ygopro.coffee
ygopro.coffee
+5
-5
ygopro.js
ygopro.js
+5
-5
No files found.
constants.json
→
data/
constants.json
View file @
1a54902c
File moved
i18n.json
→
data/
i18n.json
View file @
1a54902c
File moved
proto_structs.json
→
data/
proto_structs.json
View file @
1a54902c
File moved
structs.json
→
data/
structs.json
View file @
1a54902c
File moved
typedefs.json
→
data/
typedefs.json
View file @
1a54902c
File moved
ygopro-deck-stats.js
View file @
1a54902c
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
var
sqlite3
=
require
(
'
sqlite3
'
).
verbose
();
var
sqlite3
=
require
(
'
sqlite3
'
).
verbose
();
var
fs
=
require
(
'
fs
'
);
var
fs
=
require
(
'
fs
'
);
var
config
=
require
(
'
./config.deckstats.json
'
);
//{ "deckpath": "../decks", "dbfile": "cards.cdb" }
var
config
=
require
(
'
./config.deckstats.json
'
);
//{ "deckpath": "../decks", "dbfile": "cards.cdb" }
var
constants
=
require
(
'
./constants.json
'
);
var
constants
=
require
(
'
./
data/
constants.json
'
);
var
ALL_MAIN_CARDS
=
{};
var
ALL_MAIN_CARDS
=
{};
var
ALL_SIDE_CARDS
=
{};
var
ALL_SIDE_CARDS
=
{};
...
...
ygopro-pre.js
View file @
1a54902c
...
@@ -16,7 +16,7 @@ var url = require('url');
...
@@ -16,7 +16,7 @@ var url = require('url');
var
moment
=
require
(
'
moment
'
);
var
moment
=
require
(
'
moment
'
);
moment
.
locale
(
'
zh-cn
'
);
moment
.
locale
(
'
zh-cn
'
);
var
constants
=
require
(
'
./constants.json
'
);
var
constants
=
require
(
'
./
data/
constants.json
'
);
var
nconf
=
require
(
'
nconf
'
);
var
nconf
=
require
(
'
nconf
'
);
nconf
.
file
(
'
./config.user.json
'
);
nconf
.
file
(
'
./config.user.json
'
);
...
...
ygopro.coffee
View file @
1a54902c
...
@@ -4,13 +4,13 @@ _.mixin(_.str.exports())
...
@@ -4,13 +4,13 @@ _.mixin(_.str.exports())
Struct
=
require
(
'./struct.js'
).
Struct
Struct
=
require
(
'./struct.js'
).
Struct
i18ns
=
require
'./i18n.json'
i18ns
=
require
'./
data/
i18n.json'
#常量/类型声明
#常量/类型声明
structs_declaration
=
require
'./structs.json'
#结构体声明
structs_declaration
=
require
'./
data/
structs.json'
#结构体声明
typedefs
=
require
'./typedefs.json'
#类型声明
typedefs
=
require
'./
data/
typedefs.json'
#类型声明
@
proto_structs
=
require
'./proto_structs.json'
#消息与结构体的对应,未完成,对着duelclient.cpp加
@
proto_structs
=
require
'./
data/
proto_structs.json'
#消息与结构体的对应,未完成,对着duelclient.cpp加
@
constants
=
require
'./constants.json'
#network.h里定义的常量
@
constants
=
require
'./
data/
constants.json'
#network.h里定义的常量
#结构体定义
#结构体定义
@
structs
=
{}
@
structs
=
{}
...
...
ygopro.js
View file @
1a54902c
...
@@ -10,15 +10,15 @@
...
@@ -10,15 +10,15 @@
Struct
=
require
(
'
./struct.js
'
).
Struct
;
Struct
=
require
(
'
./struct.js
'
).
Struct
;
i18ns
=
require
(
'
./i18n.json
'
);
i18ns
=
require
(
'
./
data/
i18n.json
'
);
structs_declaration
=
require
(
'
./structs.json
'
);
structs_declaration
=
require
(
'
./
data/
structs.json
'
);
typedefs
=
require
(
'
./typedefs.json
'
);
typedefs
=
require
(
'
./
data/
typedefs.json
'
);
this
.
proto_structs
=
require
(
'
./proto_structs.json
'
);
this
.
proto_structs
=
require
(
'
./
data/
proto_structs.json
'
);
this
.
constants
=
require
(
'
./constants.json
'
);
this
.
constants
=
require
(
'
./
data/
constants.json
'
);
this
.
structs
=
{};
this
.
structs
=
{};
...
...
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