-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
33 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -184,7 +184,7 @@ | |
<value>2</value> | ||
</data> | ||
<data name="label1.Text" xml:space="preserve"> | ||
<value>© 2015-2023 [email protected]</value> | ||
<value>© 2015-2024 [email protected]</value> | ||
</data> | ||
<data name="label1.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing"> | ||
<value>TopCenter</value> | ||
|
@@ -216,6 +216,9 @@ | |
<data name="linkLabel1.Text" xml:space="preserve"> | ||
<value>Visit GRBL-Plotter on GitHub</value> | ||
</data> | ||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<value>17, 17</value> | ||
</metadata> | ||
<data name="linkLabel1.ToolTip" xml:space="preserve"> | ||
<value>Open brower and visit 'https://github.com/svenhb/GRBL-Plotter'</value> | ||
</data> | ||
|
@@ -390,6 +393,9 @@ | |
<data name=">>linkLabel3.ZOrder" xml:space="preserve"> | ||
<value>0</value> | ||
</data> | ||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||
<value>True</value> | ||
</metadata> | ||
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing"> | ||
<value>6, 13</value> | ||
</data> | ||
|
@@ -3426,10 +3432,4 @@ | |
<data name=">>$this.Type" xml:space="preserve"> | ||
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | ||
</data> | ||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<value>17, 17</value> | ||
</metadata> | ||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||
<value>True</value> | ||
</metadata> | ||
</root> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* GRBL-Plotter. Another GCode sender for GRBL. | ||
This file is part of the GRBL-Plotter application. | ||
Copyright (C) 2015-2023 Sven Hasemann contact: [email protected] | ||
Copyright (C) 2015-2024 Sven Hasemann contact: [email protected] | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -30,6 +30,7 @@ You should have received a copy of the GNU General Public License | |
* 2022-11-24 line 99 InsertVariable check length | ||
* 2023-03-04 l:68 f:Datapath add path for "data" | ||
* 2023-03-04 l:68 f:Datapath add path for "filter" | ||
* 2024-01-20 l:484 f: struct ImgPoint change from float to double | ||
*/ | ||
|
||
using GrblPlotter.Resources; | ||
|
@@ -50,7 +51,7 @@ public enum LogEnables { None = 0, Level1 = 1, Level2 = 2, Level3 = 4, Level4 = | |
|
||
public static class MyApplication | ||
{ | ||
private static readonly string VersionAddOn = ".c"; | ||
private static readonly string VersionAddOn = ""; | ||
|
||
public static string GetVersion() | ||
{ return System.Windows.Forms.Application.ProductVersion.ToString() + VersionAddOn; } | ||
|
@@ -483,10 +484,10 @@ public static explicit operator XyArcPoint(XyPoint tmp) | |
|
||
internal struct ImgPoint | ||
{ | ||
public float X; | ||
public float Y; | ||
public double X; | ||
public double Y; | ||
public int brightnes; | ||
public ImgPoint(float x, float y, int z) | ||
public ImgPoint(double x, double y, int z) | ||
{ X = x; Y = y; brightnes = z; } | ||
// public ImgPoint(float x, float y) | ||
// { X = x; Y = y; brightnes = -1; } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters