Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
arkypita committed Jun 17, 2024
1 parent 7c0c6ce commit f2aee1e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LaserGRBL/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
// utilizzando l'asterisco (*) come descritto di seguito:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion ("7.6.2")]
[assembly: AssemblyVersion ("7.7.0")]
[assembly: NeutralResourcesLanguage("en")]
14 changes: 7 additions & 7 deletions LaserGRBL/UserControls/GrblPanel3D.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ public GrblPanel3D()
{
InitializeComponent();
OpCounter = 0;
FrameTime = new Base.Mathematics.MobileDAverageCalculator(30);
SleepTime = new Base.Mathematics.MobileDAverageCalculator(30);
RefreshRate = new Base.Mathematics.MobileDAverageCalculator(30);
FrameTime = new Base.Mathematics.MobileDAverageCalculator(10);
SleepTime = new Base.Mathematics.MobileDAverageCalculator(10);
RefreshRate = new Base.Mathematics.MobileDAverageCalculator(10);
mLastWPos = GPoint.Zero;
mLastMPos = GPoint.Zero;
forcez = Settings.GetObject("Enale Z Jog Control", false);
Expand Down Expand Up @@ -325,10 +325,10 @@ private void DrawScene()
mBmp.Bitmap = newBmp;

FrameTime.EnqueueNewSample(crono.ElapsedTime.TotalMilliseconds);
int best_sleep = BestSleep(FrameTime.CurrentValue, 10, 100, 10, 50);
SleepTime.EnqueueNewSample(best_sleep);
Thread.Sleep(best_sleep);

crono.Start();
Thread.Sleep(BestSleep(FrameTime.CurrentValue, 10, 100, 15, 50));
SleepTime.EnqueueNewSample(crono.ElapsedTime.TotalMilliseconds);

// call control invalidate
Invalidate();
Expand Down
2 changes: 1 addition & 1 deletion setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "LaserGRBL"
#define MyAppVersion "7.6.1"
#define MyAppVersion "7.7.0"
#define MyAppVersionName "Rhydon"
#define MyAppPublisher "LaserGRBL"
#define MyAppURL "https://lasergrbl.com"
Expand Down

0 comments on commit f2aee1e

Please sign in to comment.