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
f53f380e
Commit
f53f380e
authored
Oct 25, 2014
by
keyongyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.2.3.3
parent
dedd2c08
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
30 additions
and
20 deletions
+30
-20
DataEditorX/CodeEditForm.Designer.cs
DataEditorX/CodeEditForm.Designer.cs
+4
-6
DataEditorX/CodeEditForm.cs
DataEditorX/CodeEditForm.cs
+2
-2
DataEditorX/Properties/AssemblyInfo.cs
DataEditorX/Properties/AssemblyInfo.cs
+1
-1
DataEditorX/app.config
DataEditorX/app.config
+5
-1
DataEditorX/readme.txt
DataEditorX/readme.txt
+3
-1
win32/DataEditorX.exe
win32/DataEditorX.exe
+0
-0
win32/DataEditorX.exe.config
win32/DataEditorX.exe.config
+5
-1
win32/chinese/history.txt
win32/chinese/history.txt
+7
-7
win32/readme.txt
win32/readme.txt
+3
-1
win32/win32.zip
win32/win32.zip
+0
-0
No files found.
DataEditorX/CodeEditForm.Designer.cs
View file @
f53f380e
...
...
@@ -184,9 +184,6 @@ private void InitializeComponent()
//
// fctb
//
this
.
fctb
.
Anchor
=
((
System
.
Windows
.
Forms
.
AnchorStyles
)((((
System
.
Windows
.
Forms
.
AnchorStyles
.
Top
|
System
.
Windows
.
Forms
.
AnchorStyles
.
Bottom
)
|
System
.
Windows
.
Forms
.
AnchorStyles
.
Left
)
|
System
.
Windows
.
Forms
.
AnchorStyles
.
Right
)));
this
.
fctb
.
AutoCompleteBracketsList
=
new
char
[]
{
'('
,
')'
,
...
...
@@ -209,6 +206,7 @@ private void InitializeComponent()
this
.
fctb
.
CommentPrefix
=
"--"
;
this
.
fctb
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
fctb
.
DisabledColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
100
)))),
((
int
)(((
byte
)(
180
)))),
((
int
)(((
byte
)(
180
)))),
((
int
)(((
byte
)(
180
)))));
this
.
fctb
.
Dock
=
System
.
Windows
.
Forms
.
DockStyle
.
Fill
;
this
.
fctb
.
Font
=
new
System
.
Drawing
.
Font
(
"Consolas"
,
14.25F
);
this
.
fctb
.
ForeColor
=
System
.
Drawing
.
Color
.
GhostWhite
;
this
.
fctb
.
IndentBackColor
=
System
.
Drawing
.
SystemColors
.
WindowFrame
;
...
...
@@ -224,7 +222,7 @@ private void InitializeComponent()
this
.
fctb
.
RightBracket
=
')'
;
this
.
fctb
.
RightBracket2
=
'}'
;
this
.
fctb
.
SelectionColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
60
)))),
((
int
)(((
byte
)(
0
)))),
((
int
)(((
byte
)(
0
)))),
((
int
)(((
byte
)(
255
)))));
this
.
fctb
.
Size
=
new
System
.
Drawing
.
Size
(
695
,
3
69
);
this
.
fctb
.
Size
=
new
System
.
Drawing
.
Size
(
695
,
3
90
);
this
.
fctb
.
TabIndex
=
0
;
this
.
fctb
.
WordWrap
=
true
;
this
.
fctb
.
Zoom
=
100
;
...
...
@@ -261,9 +259,9 @@ private void InitializeComponent()
//
this
.
AutoScaleMode
=
System
.
Windows
.
Forms
.
AutoScaleMode
.
None
;
this
.
ClientSize
=
new
System
.
Drawing
.
Size
(
695
,
415
);
this
.
Controls
.
Add
(
this
.
documentMap1
);
this
.
Controls
.
Add
(
this
.
tb_input
);
this
.
Controls
.
Add
(
this
.
fctb
);
this
.
Controls
.
Add
(
this
.
tb_input
);
this
.
Controls
.
Add
(
this
.
documentMap1
);
this
.
Controls
.
Add
(
this
.
menuStrip1
);
this
.
Font
=
new
System
.
Drawing
.
Font
(
"宋体"
,
9F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Point
,
((
byte
)(
134
)));
this
.
MainMenuStrip
=
this
.
menuStrip1
;
...
...
DataEditorX/CodeEditForm.cs
View file @
f53f380e
...
...
@@ -85,6 +85,8 @@ void InitForm()
if
(
float
.
TryParse
(
ConfigurationManager
.
AppSettings
[
"fontsize"
]
,
out
fontsize
))
fctb
.
Font
=
new
Font
(
fontname
,
fontsize
);
if
(
ConfigurationManager
.
AppSettings
[
"IME"
].
ToLower
()==
"true"
)
fctb
.
ImeMode
=
ImeMode
.
On
;
}
...
...
@@ -119,8 +121,6 @@ void HideMenu()
{
if
(
this
.
MdiParent
==
null
)
return
;
fctb
.
Location
=
new
Point
(
0
,
0
);
fctb
.
Height
-=
14
;
menuStrip1
.
Visible
=
false
;
menuitem_file
.
Visible
=
false
;
menuitem_file
.
Enabled
=
false
;
...
...
DataEditorX/Properties/AssemblyInfo.cs
View file @
f53f380e
...
...
@@ -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.3.
2
"
)]
[
assembly
:
AssemblyVersion
(
"2.2.3.
3
"
)]
DataEditorX/app.config
View file @
f53f380e
...
...
@@ -22,7 +22,11 @@
<
add
key
=
"image_other"
value
=
"25,54,128,128"
/>
<
add
key
=
"image_xyz"
value
=
"24,51,128,128"
/>
<
add
key
=
"image_pendulum"
value
=
"14,46,149,120"
/>
<!--
CodeEdiotr
-->
<!--
CodeEdiotr
IME
=
true
使用輸入法,正常顯示文字,反應變慢
IME
=
false
English
-->
<
add
key
=
"IME"
value
=
"false"
/>
<
add
key
=
"fontname"
value
=
"Consolas"
/>
<
add
key
=
"fontsize"
value
=
"14.5"
/>
</
appSettings
>
...
...
DataEditorX/readme.txt
View file @
f53f380e
[DataEditorX]2.2.3.
2
[DataEditorX]
[DataEditorX]2.2.3.
3
[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★使用前,请关联lua的打开方式,例如记事本,notepad++,等。
...
...
@@ -71,6 +71,8 @@ DataEditorX.exe.config
描述不详细的bug,我修复不了。(都不知道是bug是什么)
★更新历史
2.2.3.3
修复lua编辑器的控件遮挡问题
2.2.3.2
lua编辑器,
设置卡片库,鼠标悬停在密码时,提示卡片信息
...
...
win32/DataEditorX.exe
View file @
f53f380e
No preview for this file type
win32/DataEditorX.exe.config
View file @
f53f380e
...
...
@@ -22,7 +22,11 @@
<
add
key
=
"image_other"
value
=
"25,54,128,128"
/>
<
add
key
=
"image_xyz"
value
=
"24,51,128,128"
/>
<
add
key
=
"image_pendulum"
value
=
"14,46,149,120"
/>
<!--
CodeEdiotr
-->
<!--
CodeEdiotr
IME
=
true
使用輸入法,正常顯示文字,反應變慢
IME
=
false
English
-->
<
add
key
=
"IME"
value
=
"false"
/>
<
add
key
=
"fontname"
value
=
"Consolas"
/>
<
add
key
=
"fontsize"
value
=
"14.5"
/>
</
appSettings
>
...
...
win32/chinese/history.txt
View file @
f53f380e
...
...
@@ -4,16 +4,16 @@ 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\single\[sample]BerserkDragon.lua
F:\games\ygocore\script\c99995595.lua
F:\games\ygopro\cards.cdb
F:\games\ygocore\script\c126218.lua
F:\games\ygopro\script\c191749.lua
F:\games\ygopro\script\c102380.lua
F:\games\ygocore\script\c900787.lua
F:\games\ygopro\script\c123709.lua
F:\games\ygocore\script\c131182.lua
F:\games\ygopro\script\c126218.lua
F:\games\ygocore\script\c114932.lua
F:\games\ygocore\script\c99995595.lua
F:\games\ygocore\single\[sample]BerserkDragon.lua
F:\games\ygopro\cards.cdb
F:\games\ygopro\script\c168917.lua
F:\games\ygopro\script\c123709.lua
F:\games\ygocore\script\c135598.lua
F:\games\ygocore\script\c114932.lua
\ No newline at end of file
F:\games\ygocore\script\c900787.lua
F:\games\ygocore\script\c126218.lua
\ No newline at end of file
win32/readme.txt
View file @
f53f380e
[DataEditorX]2.2.3.
2
[DataEditorX]
[DataEditorX]2.2.3.
3
[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★使用前,请关联lua的打开方式,例如记事本,notepad++,等。
...
...
@@ -71,6 +71,8 @@ DataEditorX.exe.config
描述不详细的bug,我修复不了。(都不知道是bug是什么)
★更新历史
2.2.3.3
修复lua编辑器的控件遮挡问题
2.2.3.2
lua编辑器,
设置卡片库,鼠标悬停在密码时,提示卡片信息
...
...
win32/win32.zip
View file @
f53f380e
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