Skip to content

Commit f6d3a4f

Browse files
updated a few files before the release takes place.
1 parent 3b2d4bf commit f6d3a4f

File tree

5 files changed

+25
-9
lines changed

5 files changed

+25
-9
lines changed

NEWS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# wxMaxima 19.12.0 - Stable:
2+
3+
This release provides many under-the-hood changes partially caused by
4+
switching to C++11 and partially by cppcheck finding bugs and constructs
5+
that can cause bugs later.
6+
7+
* wxMaxima now uses C++11 that makes the code more readable and helps
8+
finding bugs
9+
* If found wxMaxima now asks cppcheck to find bugs
10+
* Increased the speed of the program again
11+
* Opening the config dialogue since 19.11.0 unchecked "offer known answers"
12+
* For Cmake>=3.10.0 the build system now asks cppcheck to find bugs.
13+
* Changing the worksheet style was partially broken.
14+
* A big number of additional bug fixes in various places
15+
* A config option that forces displaying all multiplication signs.
16+
117
# Transition to C++11
218

319
The next wxMaxima release will make use of C++11 features: I *hope* that C++

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: wxmaxima
2-
version: 19.11.1~git
2+
version: 19.12.0~git
33
summary: A nightly build of wxMaxima, a gui for Maxima, a full-featured CAS.
44
description: wxMaxima is a quite full-featured graphical user interface for maxima.
55
confinement: strict

test/automatic_test_files/autosave.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AutoSaveAsTempFile=1
2-
tipNum=10
2+
tipNum=11
33
defaultExt=wxm
44
lastPath=/home/gunter/src/wxmaxima/test/automatic_test_files
55
[AUI]
@@ -16,7 +16,7 @@ perspective=layout2|name=console;caption=;state=508;dir=5;layer=0;row=2;pos=0;pr
1616
x=292
1717
y=53
1818
w=1152
19-
h=1027
19+
h=1064
2020
Maximized=0
2121
Iconized=0
2222
decor_l=0

test/automatic_test_files/noautosave.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AutoSaveAsTempFile=0
2-
tipNum=10
2+
tipNum=11
33
defaultExt=wxm
44
lastPath=/home/gunter/src/wxmaxima/test/automatic_test_files
55
[AUI]
@@ -16,7 +16,7 @@ perspective=layout2|name=console;caption=;state=508;dir=5;layer=0;row=2;pos=0;pr
1616
x=292
1717
y=53
1818
w=1152
19-
h=1027
19+
h=1064
2020
Maximized=0
2121
Iconized=0
2222
decor_l=0

test/automatic_test_files/testbench_automatic_rememberingAnswers.wxm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ askinteger(n);
66
kill(y)$kill(n)$
77
/* [wxMaxima: input end ] */
88
/* [wxMaxima: question start ] */
9-
<mth><st>Is </st><v>y</v><st> an </st><v>integer</v><st>?</st></mth>
9+
<mth><st>Is </st><v>n</v><st> an </st><v>integer</v><st>?</st></mth>
1010
/* [wxMaxima: question end ] */
1111
/* [wxMaxima: answer start ] */
12-
y;
12+
n;
1313
/* [wxMaxima: answer end ] */
1414
/* [wxMaxima: question start ] */
15-
<mth><st>Is </st><v>n</v><st> an </st><v>integer</v><st>?</st></mth>
15+
<mth><st>Is </st><v>y</v><st> an </st><v>integer</v><st>?</st></mth>
1616
/* [wxMaxima: question end ] */
1717
/* [wxMaxima: answer start ] */
18-
n;
18+
y;
1919
/* [wxMaxima: answer end ] */
2020
/* [wxMaxima: autoanswer ] */
2121

0 commit comments

Comments
 (0)