Skip to content

Commit 3cc05d5

Browse files
committed
Bump version
1 parent 5f0be34 commit 3cc05d5

File tree

5 files changed

+77
-4
lines changed

5 files changed

+77
-4
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = GCodeWorkShop
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2024.10
41+
PROJECT_NUMBER = 2025.02
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

NEWS.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
2025-02-08 v2025-02
2+
--------------------
3+
4+
### Bug fixes
5+
6+
* Fixed build crash when using Qt version 5.6.
7+
* Fixed cursor movement when pressing "replace and find next" button.
8+
* Added undo/redo for text replacement operations.
9+
10+
### New features
11+
12+
Added settings that affect opening and saving files:
13+
14+
* File encoding choices. Some CNC systems allow to use non-Latin characters in
15+
comments, which are located in the second half of the
16+
[code page](https://en.wikipedia.org/wiki/Code_page#Windows_code_pages).
17+
Choosing the encoding allows you to display such characters correctly. The
18+
system encoding is used by default.
19+
* Remove characters from the second half of the codepage when opening files.
20+
This option is disabled by default.
21+
* Removing control characters when opening files. Older NC systems, when
22+
transmitting through the serial port, could add additional control characters
23+
that the editor cannot display correctly. The option allows you to delete
24+
control characters other than carriage and newline characters. This option
25+
is enabled by default.
26+
* Deleting additional blank lines. Some CNC may insert blank lines after each
27+
program line when writing to removable media. The option allows you to
28+
recognize and delete such additional blank lines. This option is enabled by
29+
default.
30+
31+
The new settings are available on the "Open/Save" tab in the configuration
32+
dialog box.
33+
34+
35+
2024-10-21 v2024-10
36+
--------------------
37+
38+
### Bug fixes
39+
40+
* Fixed a file saving bug where reducing an editable program did not reduce the
41+
file on disk.
42+
* Fixed calculation of required disk space for .deb packages.
43+
44+
45+
2024-09-27 v2024-09
46+
--------------------
47+
48+
### Bug fixes
49+
50+
* Fixed program crash when trying to compare files containing tab characters.
51+
* Fixed minor bugs.
52+
53+
### Updates
54+
55+
* German translations have been updated, thanks to Michael Numberger.
56+
57+
### New features
58+
59+
* Using GitHub Actions, binary builds for Debian, Ubuntu and Windows are
60+
available on the release page.
61+
62+
63+
64+
2024-05-30 v2024-05
65+
--------------------
66+
67+
Fork renamed to avoid confusion.
68+
69+
### New features
70+
71+
* Opening a file by dragging and dropping.
72+
* Prohibit clipboard browsing when application window is inactive.
73+
* Installer for Windows.

gcodefileserver/gcodefileserver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ void GCodeFileServer::about()
585585
tr("The <b>GCodeFileServer</b> is part of GCodeWorkShop."
586586
"<P>Version: %1"
587587
"<P>Copyright (C) 1998 - 2015 by <a href=\"mailto:artkoz78@gmail.com\">Artur Kozioł</a>"
588-
"<br>Copyright (C) 2020 - 2024 by <a href='mailto:nicegorov@yandex.ru'>Nick Egorrov</a>"
588+
"<br>Copyright (C) 2020 - 2025 by <a href='mailto:nicegorov@yandex.ru'>Nick Egorrov</a>"
589589
"<P>GCodeFileServer contains pieces of code from other Open Source projects."
590590
"<P><i>GCodeFileServer is free software; you can redistribute it and/or modify"
591591
"it under the terms of the GNU General Public License as published by"

gcodeshared/include/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#define VERSION_H
2222

2323
#ifndef GCODEWORKSHOP_VERSION
24-
#define GCODEWORKSHOP_VERSION "2024.10"
24+
#define GCODEWORKSHOP_VERSION "2025.02"
2525
#endif
2626

2727
#endif // VERSION_H

gcodeworkshop/src/gcodeworkshop.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ void GCodeWorkShop::about()
12601260
"<br>This is a fork of <a href='https://github.com/artur3/EdytorNC'>EdytorNC</a>."
12611261
"<P>Version: %1"
12621262
"<P>Copyright (C) 1998 - 2018 by <a href=\"mailto:artkoz78@gmail.com\">Artur Kozioł</a>"
1263-
"<br>Copyright (C) 2020 - 2024 by <a href='mailto:nicegorov@yandex.ru'>Nick Egorrov</a>"
1263+
"<br>Copyright (C) 2020 - 2025 by <a href='mailto:nicegorov@yandex.ru'>Nick Egorrov</a>"
12641264
"<h2>Sources and updates</h2>"
12651265
"<p>Source code and new releases are available at the following addresses:"
12661266
"<ul>"

0 commit comments

Comments
 (0)