Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
DataEditorX
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
聖園ミカ
DataEditorX
Commits
f629a0c7
Commit
f629a0c7
authored
Apr 07, 2017
by
keyongyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.4.2.4
parent
ca7c981b
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
15 additions
and
8 deletions
+15
-8
.gitignore
.gitignore
+1
-0
DataEditorX/Common/ZipStorer.cs
DataEditorX/Common/ZipStorer.cs
+1
-1
DataEditorX/Core/TaskHelper.cs
DataEditorX/Core/TaskHelper.cs
+3
-3
DataEditorX/DataEditForm.cs
DataEditorX/DataEditForm.cs
+3
-1
DataEditorX/Properties/AssemblyInfo.cs
DataEditorX/Properties/AssemblyInfo.cs
+1
-1
DataEditorX/changed.txt
DataEditorX/changed.txt
+2
-0
DataEditorX/readme.txt
DataEditorX/readme.txt
+1
-1
win32/DataEditorX.exe
win32/DataEditorX.exe
+0
-0
win32/changed.txt
win32/changed.txt
+2
-0
win32/readme.txt
win32/readme.txt
+1
-1
win32/win32.zip
win32/win32.zip
+0
-0
No files found.
.gitignore
View file @
f629a0c7
...
...
@@ -229,3 +229,4 @@ pip-log.txt
#Mr Developer
.mr.developer.cfg
/win32/*.cdb
/win32/data/history.txt
DataEditorX/Common/ZipStorer.cs
View file @
f629a0c7
...
...
@@ -61,7 +61,7 @@ public override string ToString()
#
region
Public
fields
/// <summary>True if UTF8 encoding for filename and comments, false if default (CP 437)</summary>
public
bool
EncodeUTF8
=
fals
e
;
public
bool
EncodeUTF8
=
tru
e
;
/// <summary>Force deflate algotithm even if it inflates the stored file. Off by default.</summary>
public
bool
ForceDeflating
=
false
;
#
endregion
...
...
DataEditorX/Core/TaskHelper.cs
View file @
f629a0c7
...
...
@@ -334,7 +334,7 @@ public Card[] ReadMSE(string mseset, bool repalceOld)
#
endregion
#
region
导出数据
public
void
ExportData
(
string
path
,
string
zipname
)
public
void
ExportData
(
string
path
,
string
zipname
,
string
_cdbfile
)
{
int
i
=
0
;
Card
[]
cards
=
cardlist
;
...
...
@@ -358,7 +358,7 @@ public void ExportData(string path, string zipname)
File
.
Delete
(
zipname
);
using
(
ZipStorer
zips
=
ZipStorer
.
Create
(
zipname
,
""
))
{
zips
.
AddFile
(
cdbfile
,
name
+
".cdb"
,
""
);
zips
.
AddFile
(
cdbfile
,
Path
.
GetFileNameWithoutExtension
(
_cdbfile
)
+
".cdb"
,
""
);
if
(
File
.
Exists
(
readme
))
zips
.
AddFile
(
readme
,
"readme_"
+
name
+
".txt"
,
""
);
if
(
File
.
Exists
(
deckydk
))
...
...
@@ -393,7 +393,7 @@ public void Run()
case
MyTask
.
ExportData
:
if
(
mArgs
!=
null
&&
mArgs
.
Length
>=
2
)
{
ExportData
(
mArgs
[
0
],
mArgs
[
1
]);
ExportData
(
mArgs
[
0
],
mArgs
[
1
]
,
mArgs
[
2
]
);
}
break
;
case
MyTask
.
CheckUpdate
:
...
...
DataEditorX/DataEditForm.cs
View file @
f629a0c7
...
...
@@ -1339,7 +1339,9 @@ void Menuitem_exportdataClick(object sender, EventArgs e)
{
tasker
.
SetTask
(
MyTask
.
ExportData
,
GetCardList
(
false
),
ygopath
.
gamepath
,
dlg
.
FileName
);
ygopath
.
gamepath
,
dlg
.
FileName
,
GetOpenFile
());
Run
(
LanguageHelper
.
GetMsg
(
LMSG
.
ExportData
));
}
}
...
...
DataEditorX/Properties/AssemblyInfo.cs
View file @
f629a0c7
...
...
@@ -28,4 +28,4 @@
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"2.4.2.
3
"
)]
[
assembly
:
AssemblyVersion
(
"2.4.2.
4
"
)]
DataEditorX/changed.txt
View file @
f629a0c7
★更新历史
2.4.2.4
导出数据,中文名字乱码
2.4.2.3
添加连接类型
添加电子界族
...
...
DataEditorX/readme.txt
View file @
f629a0c7
[DataEditorX]2.4.2.
3
[DataEditorX]
[DataEditorX]2.4.2.
4
[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★运行环境(Environment)
...
...
win32/DataEditorX.exe
View file @
f629a0c7
No preview for this file type
win32/changed.txt
View file @
f629a0c7
★更新历史
2.4.2.4
导出数据,中文名字乱码
2.4.2.3
添加连接类型
添加电子界族
...
...
win32/readme.txt
View file @
f629a0c7
[DataEditorX]2.4.2.
3
[DataEditorX]
[DataEditorX]2.4.2.
4
[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★运行环境(Environment)
...
...
win32/win32.zip
View file @
f629a0c7
No preview for this file type
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