Skip to content

Commit

Permalink
Released version 1.8.80
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsschmidt1337 committed Jun 22, 2024
1 parent 35aa7ce commit 36fd504
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 22 Jun 2024
With the release of 1.8.80 you are able to...
- ...do simple math in the text editor (e.g. (-3+5)*2 and hit enter).
- ...do simple math in floating point number input fields.
- ...benefit from auto-rounding for the results of scripted expressions (e.g. 1.99999998 becomes 2).
- ...benefit from better rounding in general (e.g. for PathTruder results).
- ...try a new 3D grid (Ctrl+Shift+G).
- ...try LDPartEditor on ARM Macs.

The following critical issue is fixed:
1. Undoing at the end of the file led to wrong line number.


# 10 Jun 2024
With the release of 1.8.79 you are able to...
- ...inline a selection without any comments (ctrl+click on inline button).
Expand Down
8 changes: 4 additions & 4 deletions src/org/nschmidt/ldparteditor/enumtype/DatKeyword.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ public enum DatKeyword {

static {
keywords.add("!:"); //$NON-NLS-1$
keywords.add("!AVATAR");//$NON-NLS-1$
keywords.add("CATEGORY");//$NON-NLS-1$
keywords.add("DESCRIPTION");//$NON-NLS-1$
keywords.add("PART");//$NON-NLS-1$
keywords.add("!AVATAR"); //$NON-NLS-1$
keywords.add("CATEGORY"); //$NON-NLS-1$
keywords.add("DESCRIPTION"); //$NON-NLS-1$
keywords.add("PART"); //$NON-NLS-1$
keywords.add("!CATEGORY"); //$NON-NLS-1$
keywords.add("!CMDLINE"); //$NON-NLS-1$
keywords.add("!COLOUR"); //$NON-NLS-1$
Expand Down

0 comments on commit 36fd504

Please sign in to comment.