Commit f53f380e authored by keyongyu's avatar keyongyu

2.2.3.3

parent dedd2c08
...@@ -184,9 +184,6 @@ private void InitializeComponent() ...@@ -184,9 +184,6 @@ private void InitializeComponent()
// //
// fctb // 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[] { this.fctb.AutoCompleteBracketsList = new char[] {
'(', '(',
')', ')',
...@@ -209,6 +206,7 @@ private void InitializeComponent() ...@@ -209,6 +206,7 @@ private void InitializeComponent()
this.fctb.CommentPrefix = "--"; this.fctb.CommentPrefix = "--";
this.fctb.Cursor = System.Windows.Forms.Cursors.IBeam; 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.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.Font = new System.Drawing.Font("Consolas", 14.25F);
this.fctb.ForeColor = System.Drawing.Color.GhostWhite; this.fctb.ForeColor = System.Drawing.Color.GhostWhite;
this.fctb.IndentBackColor = System.Drawing.SystemColors.WindowFrame; this.fctb.IndentBackColor = System.Drawing.SystemColors.WindowFrame;
...@@ -224,7 +222,7 @@ private void InitializeComponent() ...@@ -224,7 +222,7 @@ private void InitializeComponent()
this.fctb.RightBracket = ')'; this.fctb.RightBracket = ')';
this.fctb.RightBracket2 = '}'; this.fctb.RightBracket2 = '}';
this.fctb.SelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); 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, 369); this.fctb.Size = new System.Drawing.Size(695, 390);
this.fctb.TabIndex = 0; this.fctb.TabIndex = 0;
this.fctb.WordWrap = true; this.fctb.WordWrap = true;
this.fctb.Zoom = 100; this.fctb.Zoom = 100;
...@@ -261,9 +259,9 @@ private void InitializeComponent() ...@@ -261,9 +259,9 @@ private void InitializeComponent()
// //
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(695, 415); 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.fctb);
this.Controls.Add(this.tb_input);
this.Controls.Add(this.documentMap1);
this.Controls.Add(this.menuStrip1); this.Controls.Add(this.menuStrip1);
this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.MainMenuStrip = this.menuStrip1; this.MainMenuStrip = this.menuStrip1;
......
...@@ -85,6 +85,8 @@ void InitForm() ...@@ -85,6 +85,8 @@ void InitForm()
if(float.TryParse(ConfigurationManager.AppSettings["fontsize"] if(float.TryParse(ConfigurationManager.AppSettings["fontsize"]
, out fontsize)) , out fontsize))
fctb.Font=new Font(fontname,fontsize); fctb.Font=new Font(fontname,fontsize);
if(ConfigurationManager.AppSettings["IME"].ToLower()=="true")
fctb.ImeMode=ImeMode.On;
} }
...@@ -119,8 +121,6 @@ void HideMenu() ...@@ -119,8 +121,6 @@ void HideMenu()
{ {
if(this.MdiParent ==null) if(this.MdiParent ==null)
return; return;
fctb.Location=new Point(0,0);
fctb.Height -= 14;
menuStrip1.Visible=false; menuStrip1.Visible=false;
menuitem_file.Visible=false; menuitem_file.Visible=false;
menuitem_file.Enabled=false; menuitem_file.Enabled=false;
......
...@@ -28,4 +28,4 @@ ...@@ -28,4 +28,4 @@
// //
// You can specify all the values or you can use the default the Revision and // You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below: // Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("2.2.3.2")] [assembly: AssemblyVersion("2.2.3.3")]
...@@ -22,7 +22,11 @@ ...@@ -22,7 +22,11 @@
<add key="image_other" value="25,54,128,128" /> <add key="image_other" value="25,54,128,128" />
<add key="image_xyz" value="24,51,128,128" /> <add key="image_xyz" value="24,51,128,128" />
<add key="image_pendulum" value="14,46,149,120" /> <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="fontname" value="Consolas" />
<add key="fontsize" value="14.5" /> <add key="fontsize" value="14.5" />
</appSettings> </appSettings>
......
[DataEditorX]2.2.3.2[DataEditorX] [DataEditorX]2.2.3.3[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL] [URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★使用前,请关联lua的打开方式,例如记事本,notepad++,等。 ★使用前,请关联lua的打开方式,例如记事本,notepad++,等。
...@@ -71,6 +71,8 @@ DataEditorX.exe.config ...@@ -71,6 +71,8 @@ DataEditorX.exe.config
描述不详细的bug,我修复不了。(都不知道是bug是什么) 描述不详细的bug,我修复不了。(都不知道是bug是什么)
★更新历史 ★更新历史
2.2.3.3
修复lua编辑器的控件遮挡问题
2.2.3.2 2.2.3.2
lua编辑器, lua编辑器,
设置卡片库,鼠标悬停在密码时,提示卡片信息 设置卡片库,鼠标悬停在密码时,提示卡片信息
......
No preview for this file type
...@@ -22,7 +22,11 @@ ...@@ -22,7 +22,11 @@
<add key="image_other" value="25,54,128,128" /> <add key="image_other" value="25,54,128,128" />
<add key="image_xyz" value="24,51,128,128" /> <add key="image_xyz" value="24,51,128,128" />
<add key="image_pendulum" value="14,46,149,120" /> <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="fontname" value="Consolas" />
<add key="fontsize" value="14.5" /> <add key="fontsize" value="14.5" />
</appSettings> </appSettings>
......
...@@ -4,16 +4,16 @@ F:\games\ygopro\script\c32864.lua ...@@ -4,16 +4,16 @@ F:\games\ygopro\script\c32864.lua
E:\github\DataEditorX\DataEditorX\chinese\constant.lua E:\github\DataEditorX\DataEditorX\chinese\constant.lua
F:\games\ygocore\script\constant.lua F:\games\ygocore\script\constant.lua
F:\games\ygocore\script\utility.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\c191749.lua
F:\games\ygopro\script\c102380.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\ygocore\script\c131182.lua
F:\games\ygopro\script\c126218.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\c168917.lua
F:\games\ygopro\script\c123709.lua
F:\games\ygocore\script\c135598.lua F:\games\ygocore\script\c135598.lua
F:\games\ygocore\script\c114932.lua F:\games\ygocore\script\c900787.lua
\ No newline at end of file F:\games\ygocore\script\c126218.lua
\ No newline at end of file
[DataEditorX]2.2.3.2[DataEditorX] [DataEditorX]2.2.3.3[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL] [URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★使用前,请关联lua的打开方式,例如记事本,notepad++,等。 ★使用前,请关联lua的打开方式,例如记事本,notepad++,等。
...@@ -71,6 +71,8 @@ DataEditorX.exe.config ...@@ -71,6 +71,8 @@ DataEditorX.exe.config
描述不详细的bug,我修复不了。(都不知道是bug是什么) 描述不详细的bug,我修复不了。(都不知道是bug是什么)
★更新历史 ★更新历史
2.2.3.3
修复lua编辑器的控件遮挡问题
2.2.3.2 2.2.3.2
lua编辑器, lua编辑器,
设置卡片库,鼠标悬停在密码时,提示卡片信息 设置卡片库,鼠标悬停在密码时,提示卡片信息
......
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment