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
65399193
Commit
65399193
authored
Oct 26, 2014
by
keyongyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.2.4.1
parent
f4145c82
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
38 additions
and
26 deletions
+38
-26
DataEditorX/Common/FastColoredTextBoxEx.cs
DataEditorX/Common/FastColoredTextBoxEx.cs
+4
-0
DataEditorX/Core/Card.cs
DataEditorX/Core/Card.cs
+3
-3
DataEditorX/Core/DataBase.cs
DataEditorX/Core/DataBase.cs
+3
-3
DataEditorX/Language/LMsg.cs
DataEditorX/Language/LMsg.cs
+1
-1
DataEditorX/MainForm.cs
DataEditorX/MainForm.cs
+8
-2
DataEditorX/Properties/AssemblyInfo.cs
DataEditorX/Properties/AssemblyInfo.cs
+1
-1
DataEditorX/chinese/message.txt
DataEditorX/chinese/message.txt
+1
-1
DataEditorX/english/message.txt
DataEditorX/english/message.txt
+1
-1
DataEditorX/readme.txt
DataEditorX/readme.txt
+4
-2
win32/DataEditorX.exe
win32/DataEditorX.exe
+0
-0
win32/chinese/history.txt
win32/chinese/history.txt
+6
-8
win32/chinese/message.txt
win32/chinese/message.txt
+1
-1
win32/english/message.txt
win32/english/message.txt
+1
-1
win32/readme.txt
win32/readme.txt
+4
-2
win32/win32.zip
win32/win32.zip
+0
-0
No files found.
DataEditorX/Common/FastColoredTextBoxEx.cs
View file @
65399193
...
...
@@ -19,12 +19,16 @@ namespace FastColoredTextBoxNS
public
class
FastColoredTextBoxEx
:
FastColoredTextBox
{
Point
lastMouseCoord
;
public
FastColoredTextBoxEx
()
:
base
()
{
}
public
new
event
EventHandler
<
ToolTipNeededEventArgs
>
ToolTipNeeded
;
protected
override
void
OnMouseMove
(
MouseEventArgs
e
)
{
base
.
OnMouseMove
(
e
);
lastMouseCoord
=
e
.
Location
;
}
protected
override
void
OnToolTip
()
{
if
(
ToolTip
==
null
)
...
...
DataEditorX/Core/Card.cs
View file @
65399193
...
...
@@ -104,11 +104,11 @@ string levelString()
string
redesc
()
{
return
desc
.
Replace
(
","
,
",\n"
)
//
.Replace(",",",\n")
.
Replace
(
"。"
,
"。\n"
)
.
Replace
(
"?"
,
"?\n"
)
.
Replace
(
","
,
",\n"
)
.
Replace
(
"."
,
".\n"
)
//
.Replace(",",",\n")
//
.Replace(".",".\n")
.
Replace
(
"?"
,
"?\n"
);
}
public
bool
EqualsData
(
Card
other
)
...
...
DataEditorX/Core/DataBase.cs
View file @
65399193
...
...
@@ -365,11 +365,11 @@ public static string GetSelectSQL(Card c)
if
(
c
.
ot
>
0
)
sb
.
Append
(
" and datas.ot = "
+
c
.
ot
.
ToString
());
if
(
c
.
attribute
>
0
)
sb
.
Append
(
" and datas.attribute
& "
+
c
.
attribute
.
ToString
()+
"
= "
+
c
.
attribute
.
ToString
());
sb
.
Append
(
" and datas.attribute = "
+
c
.
attribute
.
ToString
());
if
(
c
.
level
>
0
)
sb
.
Append
(
" and
datas.level & "
+
toInt
(
c
.
level
)+
"
= "
+
toInt
(
c
.
level
));
sb
.
Append
(
" and
(datas.level & 255)
= "
+
toInt
(
c
.
level
));
if
(
c
.
race
>
0
)
sb
.
Append
(
" and datas.race
& "
+
toInt
(
c
.
race
)+
"
= "
+
toInt
(
c
.
race
));
sb
.
Append
(
" and datas.race = "
+
toInt
(
c
.
race
));
if
(
c
.
type
>
0
)
sb
.
Append
(
" and datas.type & "
+
toInt
(
c
.
type
)+
" = "
+
toInt
(
c
.
type
));
if
(
c
.
category
>
0
)
...
...
DataEditorX/Language/LMsg.cs
View file @
65399193
...
...
@@ -81,7 +81,7 @@ public enum LMSG : uint
CheckText
,
CompareOK
,
OpenFile
,
OpenFile
Filter
,
Script
Filter
,
NewFile
,
SaveFileOK
,
IfSaveScript
,
...
...
DataEditorX/MainForm.cs
View file @
65399193
...
...
@@ -352,7 +352,10 @@ void Menuitem_openClick(object sender, EventArgs e)
using
(
OpenFileDialog
dlg
=
new
OpenFileDialog
())
{
dlg
.
Title
=
LANG
.
GetMsg
(
LMSG
.
OpenFile
);
dlg
.
Filter
=
LANG
.
GetMsg
(
LMSG
.
OpenFileFilter
);
if
(
GetActive
()
!=
null
)
dlg
.
Filter
=
LANG
.
GetMsg
(
LMSG
.
CdbType
);
else
dlg
.
Filter
=
LANG
.
GetMsg
(
LMSG
.
ScriptFilter
);
if
(
dlg
.
ShowDialog
()==
DialogResult
.
OK
)
{
string
file
=
dlg
.
FileName
;
...
...
@@ -374,7 +377,10 @@ void Menuitem_newClick(object sender, EventArgs e)
using
(
SaveFileDialog
dlg
=
new
SaveFileDialog
())
{
dlg
.
Title
=
LANG
.
GetMsg
(
LMSG
.
NewFile
);
dlg
.
Filter
=
LANG
.
GetMsg
(
LMSG
.
OpenFileFilter
);
if
(
GetActive
()
!=
null
)
dlg
.
Filter
=
LANG
.
GetMsg
(
LMSG
.
CdbType
);
else
dlg
.
Filter
=
LANG
.
GetMsg
(
LMSG
.
ScriptFilter
);
if
(
dlg
.
ShowDialog
()==
DialogResult
.
OK
)
{
string
file
=
dlg
.
FileName
;
...
...
DataEditorX/Properties/AssemblyInfo.cs
View file @
65399193
...
...
@@ -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.2.4.
0
"
)]
[
assembly
:
AssemblyVersion
(
"2.2.4.
1
"
)]
DataEditorX/chinese/message.txt
View file @
65399193
...
...
@@ -65,7 +65,7 @@
0x40 是否对比卡片信息?
0x41 对比完成
0x42 打开文件
0x43
数据库文件(*.cdb)|*.cdb|
脚本文件(*.lua)|*.lua|所有文件(*.*)|*.*
0x43 脚本文件(*.lua)|*.lua|所有文件(*.*)|*.*
0x44 新建文件
0x45 保存完成
0x46 是否保存脚本?
\ No newline at end of file
DataEditorX/english/message.txt
View file @
65399193
...
...
@@ -65,7 +65,7 @@
0x40 Compare Cards With Text?
0x41 Cards is Compared.
0x42 Open File
0x43
DataBase(*.cdb)|*.cdb|
Script(*.lua)|*.lua|all files(*.*)|*.*
0x43 Script(*.lua)|*.lua|all files(*.*)|*.*
0x44 New File
0x45 Save OK
0x46 If Save Script?
\ No newline at end of file
DataEditorX/readme.txt
View file @
65399193
[DataEditorX]2.2.4.
0
[DataEditorX]
[DataEditorX]2.2.4.
1
[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★使用前,请关联lua的打开方式,例如记事本,notepad++,等。
...
...
@@ -41,7 +41,7 @@ mse-config 设置pendulum文本和普通文本的正则正则表达式,用来
请确保DataEditorX的文件夹名固定不变,然后右键随意一个cdb文件,打开方式--浏览--DataEditorX.exe。确定。
以后双击cdb文件即可打开DataEditorX。
★lua编辑器
函数搜索
★lua编辑器
在下面的文本框输入关键字,按Enter
Ctrl+鼠标左键 跳转到函数定义
Ctrl+鼠标滑轮 缩放文字
...
...
@@ -73,6 +73,8 @@ Email:247321453@qq.com
描述不详细的bug,我修复不了。(都不知道是bug是什么)
★更新历史
2.2.4.1
修复部分条件搜索
2.2.4.0
lua编辑器,Ctrl+鼠标左键 跳转到函数定义
2.2.3.4
...
...
win32/DataEditorX.exe
View file @
65399193
No preview for this file type
win32/chinese/history.txt
View file @
65399193
# history
F:\games\ygocore\cards (2).cdb
F:\games\ygopro\script\c32864.lua
E:\github\DataEditorX\DataEditorX\chinese\constant.lua
F:\games\ygocore\script\constant.lua
F:\games\ygocore\script\utility.lua
F:\games\ygocore\script\c99995595.lua
F:\games\ygocore\script\c135598.lua
F:\games\ygocore\single\[sample]BerserkDragon.lua
F:\games\ygopro\script\c102380.lua
F:\c14513016.lua
F:\games\ygocore\script\c131182.lua
F:\games\ygopro\script\c123709.lua
F:\games\ygocore\script\c900787.lua
F:\games\ygopro\script\c126218.lua
F:\games\ygopro\script\c191749.lua
F:\Propro的翻译\EN的cards.cdb
F:\games\ygopro\cards.cdb
F:\games\ygopro\script\c168917.lua
F:\games\ygopro\script\c191749.lua
F:\games\ygocore\script\c135598.lua
F:\games\ygocore\script\c126218.lua
E:\github\DataEditorX\DataEditorX\chinese\constant.lua
F:\games\ygocore\script\c900787.lua
F:\games\ygocore\script\c114932.lua
F:\games\ygocore\script\c126218.lua
\ No newline at end of file
F:\games\ygopro\cards.cdb
\ No newline at end of file
win32/chinese/message.txt
View file @
65399193
...
...
@@ -65,7 +65,7 @@
0x40 是否对比卡片信息?
0x41 对比完成
0x42 打开文件
0x43
数据库文件(*.cdb)|*.cdb|
脚本文件(*.lua)|*.lua|所有文件(*.*)|*.*
0x43 脚本文件(*.lua)|*.lua|所有文件(*.*)|*.*
0x44 新建文件
0x45 保存完成
0x46 是否保存脚本?
\ No newline at end of file
win32/english/message.txt
View file @
65399193
...
...
@@ -65,7 +65,7 @@
0x40 Compare Cards With Text?
0x41 Cards is Compared.
0x42 Open File
0x43
DataBase(*.cdb)|*.cdb|
Script(*.lua)|*.lua|all files(*.*)|*.*
0x43 Script(*.lua)|*.lua|all files(*.*)|*.*
0x44 New File
0x45 Save OK
0x46 If Save Script?
\ No newline at end of file
win32/readme.txt
View file @
65399193
[DataEditorX]2.2.4.
0
[DataEditorX]
[DataEditorX]2.2.4.
1
[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★使用前,请关联lua的打开方式,例如记事本,notepad++,等。
...
...
@@ -41,7 +41,7 @@ mse-config 设置pendulum文本和普通文本的正则正则表达式,用来
请确保DataEditorX的文件夹名固定不变,然后右键随意一个cdb文件,打开方式--浏览--DataEditorX.exe。确定。
以后双击cdb文件即可打开DataEditorX。
★lua编辑器
函数搜索
★lua编辑器
在下面的文本框输入关键字,按Enter
Ctrl+鼠标左键 跳转到函数定义
Ctrl+鼠标滑轮 缩放文字
...
...
@@ -73,6 +73,8 @@ Email:247321453@qq.com
描述不详细的bug,我修复不了。(都不知道是bug是什么)
★更新历史
2.2.4.1
修复部分条件搜索
2.2.4.0
lua编辑器,Ctrl+鼠标左键 跳转到函数定义
2.2.3.4
...
...
win32/win32.zip
View file @
65399193
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