@@ -8,6 +8,8 @@ New items in core:
8
8
* New command-line option --quit-on-error to make Maxima quit upon first
9
9
runtime error
10
10
* New command-line option --very-very-quiet to silence Maxima
11
+ * New command-line option --suppress-input-echo to suppress input echo
12
+ when running noninteractively
11
13
* New global variable batch_answers_from_file
12
14
* New Unicode display2d and global variable display2d_unicode
13
15
* A new function random-name in plot.lisp that generates a random string
@@ -32,14 +34,19 @@ Changes in core:
32
34
* In src/plot.lisp, clipping is no longer done when plot_format is xmaxima
33
35
* The default y-range for plots is determined only by points within x-range
34
36
* Function chinese renamed to solve_congruences
37
+ * Function 'system': capture output (e.g. with_stdout) from executed command
35
38
36
39
Changes in share:
37
40
-----------------
41
+ * openr_binary: work around bug in Allegro CL by omitting :ELEMENT-TYPE argument.
42
+ * readline: trim carriage return from end of string, if any.
38
43
39
44
Changes in Xmaxima:
40
45
-------------------
41
46
* Line clipping in plot2d and plotdf
42
47
* Better integration algorithm for plotdf
48
+ * new options tstep and algorithm for plotdf
49
+ * plot linewidths and arrow lengths change when a plot window is resized
43
50
44
51
Changes in the Windows installer:
45
52
---------------------------------
@@ -62,8 +69,10 @@ Bug fixes for numbered bugs:
62
69
* \#2905: Assigning variable twice yields different results
63
70
* \#3054: limit(exp(exp(2*log(x**5 + x)*log(log(x)))) / exp(exp(10*log(x)*log(log(x)))), x, inf)
64
71
* \#3191: parsing problem: thru 3 for i in [a,b]
72
+ * \#3579: Overly eager simplification in trigreduce
65
73
* \#3755: Insecure tmpdir usage
66
74
* \#3803: Xmaxima should reopen the browser when needed
75
+ * \#3981: Trigreduce doesn't return principal value of atan(tan(...))
67
76
* \#4117: Unexpected Behaviour of run_viewer and gnu_term dumb
68
77
* \#4154: Some info nodes have bad headers (and no "Up"s)
69
78
* \#4160: LISP error when integrating
@@ -74,6 +83,7 @@ Bug fixes for numbered bugs:
74
83
* \#4191: limits of gamma_incomplete
75
84
* \#4195: cmucl 21e intermittent lisp error in limit
76
85
* \#4200: simplim%limit ignoring special variables
86
+ * \#4208: Error with complex numbers - example with trigreduce
77
87
* \#4210: tlimit consults global assumptions for limit variable
78
88
* \#4214: read_xpm not autoloading and not documented as requiring load("draw")
79
89
* \#4215: limit(sqrt(-1+%i*x),x,0,minus)
@@ -103,6 +113,7 @@ Bug fixes for numbered bugs:
103
113
* \#4388: tex() output under simp:false, incorrect placement of `+`
104
114
* \#4408: letsimp doesn't simplify before returning result
105
115
* \#4417: letsimp treats minus expressions as -1 times something
116
+ * \#4418: arctan and trigreduce error
106
117
* \#4424: draw2d doesnt accept fill_density in order to create opaque shapes
107
118
* \#4426: Remove repeated function resm1
108
119
* \#4427: Turn number to cell in
[email protected]
@@ -120,12 +131,16 @@ Bug fixes for numbered bugs:
120
131
121
132
Unnumbered bugs fixed:
122
133
---------------------
123
- * Correct failing test in share/contrib/diffequations/tests
124
- * plotdf sliders hidden (reported on the mailing list on 2023/11/26)
125
134
* mailing list 2023-11-25: Possibilities for basic image processing
135
+ * mailing list 2023-11-26: plotdf sliders hidden
126
136
* mailing list 2023-09-25: Casting SPELs
127
- * recover option xfun of plotdf which was no longer working (2024-03-16)
128
137
* mailing list 2024-12-24: Typographic Error (xmaxima)
138
+ * mailing list 2025-03-04: trigsolve requires to_poly_solve to work
139
+ * correct failing test in share/contrib/diffequations/tests
140
+ * recovers option xfun of plotdf which was no longer working
141
+ * fixes narrows option of plotdf (narrows should remain after window resizing)
142
+ * unreported bug: Clisp error when standard input is not writeable
143
+ * unreported bug: Function 'system': fix problems encountered when testing on Windows
129
144
130
145
Documentation:
131
146
--------------
@@ -137,3 +152,5 @@ Documentation:
137
152
Build system:
138
153
-------------
139
154
* Install Maxima icons in an 'icons' subdirectory rather than 'pixmaps'
155
+ * maxima.asd: load defsystem.lisp in order to load share packages which use it.
156
+ * Various compatibility fixes for Allegro CL and LispWorks
0 commit comments