1 Changes between version 5.5.0-beta-1 and 5.5.0-beta-2
2 =====================================================
4 GUI Refactoring and Improvements
5 ================================
7 * New uicontrols styles:
8 - tab: component which enables the user to switch between sets of uicontrols by
10 The children components are "frame" uicontrols.
11 Two dedicated properties have been added to configure this component:
12 - title_position: Position of the tabs
13 - title_scroll: Indicates if tabs must all be displayed at a time or
14 managed with scroll features.
15 - layer: Component which enables the user to make parts of a GUI visible/invisible
17 - spinner: Component which enables the user to select/edit a value between bounds
20 * New uicontrols properties:
21 - borders: Used to set some decoration properties on "frame" uicontrols.
22 These decorations can be created and initialized with the createBorders
23 and the createFontBorder functions.
24 - scrollable: Used to add scrolling capabilities on "frame" uicontrols.
25 - groupname: Used to group "radiobutton" and "checkbox" uicontrols for an easier
27 - icon: Add an icon to "pushbutton" and "labels" uicontrols.
29 * New uimenu properties:
30 - icon: add an icon on the left of the label menu.
32 * "listbox" and "popupmenu" style uicontrols can now manage color boxes, icons, background and
33 foreground colors when the "String" property is set to a matrix matching the format:
34 ["#color1", "Item1", "#background1", "#foreground1"; "#color2", "Item2", ..., ...]
35 ["icon1", "Item1", "#background1", "#foreground1"; "icon2", "Item2", ..., ...]
36 with "#color1", "#background1" and "#foreground1" in HTML format #XXXXXX.
37 Then the component will display a colored box or icon on the left of the associated string,
38 and different background/foreground colors for items.
40 * New management of uicontrols positioning:
41 In previous versions, uicontrols position was managed in an absolute way through
42 their "Position" property and the "Resizefcn" property of their parent figure.
43 Using the new layout management in figures and "frame" style uicontrols, position
44 is now managed in an automatic way based on Java layouts.
45 New dedicated properties have been added in figure and uicontrols:
46 - layout: layout type.
47 - layout_options: configuration of the layout.
48 Options can be initialized with the createLayoutOptions function.
49 Type "help layouts" in Scilab for more information about available types and options.
50 Uicontrols position is then managed through the "constraints" property.
51 A new createConstraints function has been added to managed these contraints.
53 * New figures properties:
54 - icon: Allows to customize the figure icon.
55 - menubar: allows to create windows without any menu bar (default menus will not be created).
56 - menubar_visible: Manages menu bar visibility.
57 - toolbar: Allows to create windows without any toolbar.
58 - toolbar_visible: Manages toolbar visibility.
59 - infobar_visible: Manages infobar visibility.
60 - resize: Allows to lock window size.
61 - dockable: Allows to create dockable/standard figures.
62 - default_axes: Allows to manage default axes creation in figures.
64 * The figure "visible" property management has evolved and offers new possibilities:
65 - When the figure is docked, this property manages the visibility
66 of components inside the figure (uicontrols, axes, ...).
67 In previous releases, this same property setting only managed axes.
68 - When the figure is not docked, this property manages the visibility
69 of the whole figure including its decorations.
71 * New way to create GUI using XML files:
72 - Created GUI using the figure/uicontrol/uimenu functions can now be saved in
73 this new format using saveGui function.
74 - XML files in this format can be loaded in Scilab using the loadGui function.
75 This function aims at creating GUI in a more efficient way.
77 * New rendering for GUI/uicontrols:
78 In this version, uicontrols use the defaults of the OS Look & Feel.
79 Some properties default values are not set by Scilab and then can be different from an
81 To come back to the previous and deprecated behavior, you can use the related
82 property on the "Console" handle:
83 set(get(0), "UseDeprecatedSkin", "on");
84 Note that this deprecated behavior will be removed in future versions.
90 * set function prototype has been modified to allow the user to set multiple
91 properties at once: set(h, "Property1", Value1, "Property2", Value2, ...)
93 * newaxes function now allows to create axes in "frame" uicontrols.
95 * New axes properties:
96 - ticks_format: Format of the ticks labels.
97 - ticks_st: Scales and translates factors applied to ticks position when formatting
99 - auto_margins: Activated by default, this property lets Scilab compute margins
100 needed to display axes decorations (titles, labels, ...).
101 - grid_thickness: Thickness of the grid plotting.
102 - grid_style: Style of the grid plotting.
103 - label_font_style: Font style used to draw the labels.
105 * New legends properties:
106 - line_width: Width of the drawn line.
107 - mark_count: Number of the drawn marks.
109 * New polyline properties:
110 - mark_offset: Offset before the first mark.
111 - mark_stride: Step between consecutive marks.
112 - display_function: Name of the function used to customize the information
113 displayed in all the datatips of this polyline.
114 This function can be overloaded by setting a display
115 function on each datatip handle.
116 - display_function_data: Additional data needed for datatips display function.
117 - datatips: Handles of the datatips of the polyline.
119 * New Matplot property added :
120 - rect: specifies the rectangle where the Matplot will be drawn.
122 * Datatips properties have been renamed for better readability:
124 - tip_box_mode --> box_mode
125 - tip_label_mode --> label_mode
126 - tip_orientation --> orientation
127 - tip_3component --> z_component
128 - tip_auto_orientation --> auto_orientation
129 - tip_interp_mode --> interp_mode
130 - tip_disp_function --> display_function
136 * New functions introduced:
137 - jcreatejar - Creates a Java archive (JAR) from a set of files / directories
138 - ilib_build_jar - Builds Java packages from sources into a JAR file
139 - ifftshift - Inverses FFT shift
140 - unwrap - Unwraps/unfolds a Y(x) profile
141 - getPreferencesValue/setPreferencesValue - get or set values in the preferences file.
143 * modulo() and pmodulo() now support integers & hypermatrices (See bug #13002).
145 * test_run() can now separate 32-bit systems from 64-bit ones.
147 * pol2str(): now handles polynomials with complex coefficients and hypermatrices (See bug #13109).
149 * nanreglin(): reglin() with arguments containing NaNs (See bug #13208).
155 * xcos_debug_gui function added for a simple use of the Debug block.
157 * tbx_build_pal_loader function added to ease external module creation (See SEP #120).
160 Obsolete & Removed Functions
161 ============================
163 * relocate_handle tagged as obsolete. Will be removed in Scilab 5.5.1.
165 * msd and st_deviation tagged as obsolete (See bug #7593). Will be removed in Scilab 5.5.1.
166 Please use stdev instead.
168 * pcg tagged as obsolete. Will be removed in Scilab 5.5.1.
169 Please use conjgrad instead.
171 * milk_drop tagged as obsolete. Will be removed in Scilab 5.5.1.
173 * datatipGetStruct tagged as obsolete. Will be removed in Scilab 5.5.1.
174 Please use 'datatips' property instead.
176 * clear_pixmap removed, please use drawlater/drawnow instead.
178 * pixmap property removed for figures, please use drawlater/drawnow instead.
180 * demo_message and demo_mdialog removed.
182 * with_embedded_jre removed.
186 * regress tagged as obsolete. Will be removed in Scilab 5.5.1.
187 Please use reglin instead.
189 * %asn tagged as obsolete. Will be removed in Scilab 5.5.1.
190 Please use delip instead.
192 * jmat tagged as obsolete. Will be removed in Scilab 5.5.1.
193 Please use flipdim instead
199 * Minimal version of JoGL (2.1.4) enforced.
205 * Bug #1253 fixed - There was no possibility to draw only few marks on a polyline which
206 contained a lot of points.
208 * Bug #1751 fixed - Margins were not computed according to contents.
210 * Bug #2067 fixed - Scilab crashed when plot was called with a large numerical value.
212 * Bug #2802 fixed - convstr did not convert non ascii chars.
214 * Bug #4177 fixed - find function moved to the "elementary_functions" module.
216 * Bug #4401 fixed - isnum did not recognize all constants or some complex numbers.
218 * Bug #4490 fixed - Input argument of sinc function moved to rad: help page.
220 * Bug #4649 fixed - License issue in xs2ppm help page fixed.
222 * Bug #4677 fixed - xclick did not return correct mouse position on keyboard event.
224 * Bug #4858 fixed - libintl.h was missing in binary versions but included in localization.h.
226 * Bug #4965 fixed - Setting links property for a handle of type legend did not work.
228 * Bug #5016 fixed - condestsp could return different results when repeated calls were performed.
230 * Bug #5826 fixed - Graphic windows did not redirect key events in console.
232 * Bug #5844 fixed - grayplot did not have a logflag option.
234 * Bug #5886 fixed - There was no property labels_font_style on axis.
236 * Bug #6191 fixed - It was not possible to set thickness and line_style properties for a grid.
238 * Bug #6305 fixed - dsearch function did not work with integers, strings and hypermatrices.
240 * Bug #6306 fixed - It is now possible to compute an histogram instead of plotting it
241 with new function histc(). Besides, histplot can now return the computed data.
243 * Bug #6363 fixed - It was not possible to create figures without menubar/toolbar.
245 * Bug #6404 fixed - xrects help page was not clear about argument specification.
247 * Bug #6512 fixed - %asn function tagged as obsolete.
249 * Bug #6615 fixed - ui(get|put)file did not center the file dialog on the last focused window.
251 * Bug #6689 & #6690 fixed - grand now works with complexes, polynomials, booleans, integers, sparses and strings,
252 and can handle row vectors, matrices and hypermatrices of thoses types.
254 * Bug #6824 fixed - resize_matrix did not manage hypermatrices.
256 * Bug #6832 fixed - Matrices of rationals can now be transposed via the " .' " operator.
258 * Bug #6859 fixed - xlabel and xtitle could overlapped.
260 * Bug #6930 fixed - Matplot handle had no rect property.
262 * Bug #7038 fixed - A toggle button now manages datatip mode.
264 * Bug #7047 fixed - milk_drop is now obsolete. It will be removed in Scilab 5.5.1, but will be kept as a demonstration.
266 * Bug #7051 fixed - fieldnames help page updated.
268 * Bug #7084 fixed - Old, not documented and deprecated gr_menu function removed.
270 * Bug #7133 fixed - help_from_sci with no input argument now launches a full demonstration.
272 * Bug #7169 fixed - It was not possible to specify different option value (thickness, style, ...) for X and Y grids.
274 * Bug #7205 fixed - length(H) applied to a non-string hypermat returned 3 instead of size(H,"*").
276 * Bug #7244 fixed - Extraction from a struct array with a boolean vector had a strange behavior.
278 * Bug #7304 fixed - exportUI did not switch filename extension when filter was changed.
280 * Bug #7417 fixed - Auto-positioning of datatips did not take the curvature into account.
282 * Bug #7561 fixed - roots help page now explains that coefficients are used in the contrary order of poly.
284 * Bug #7570 fixed - The switch criterion on x and y is now explained in beta() help page.
286 * Bug #7585 fixed - psi.f moved from "elementary functions" to "special functions" module.
288 * Bug #7593 fixed - stdev now encompasses msd and st_deviation thanks to a new optional input argument.
290 * Bug #7650 fixed - isempty(tlist(...)) always returned false, even when all defined fields were empty.
292 * Bug #7705 fixed - "dimension", "minbounds" and "maxbounds" fields have been documented in Genetic algorithms help pages.
294 * Bug #7739 fixed - Axis position was invalid in log modes.
296 * Bug #7771 fixed - There was no item about arrow_size in champ_properties help page.
298 * Bug #7772 fixed - There was no description, no example about line_style property in polyline help page.
300 * Bug #7858 fixed - variance and variancef can now return the mean of the input
301 in a new output argument and take the a priori mean as input.
303 * Bug #7879 fixed - string now accepts plist type, and printing a plist displays that string.
305 * Bug #7905 fixed - Figure icon can now be changed using dedicated property.
307 * Bug #7916 fixed - nansum([]) returned NaN value while this function had to ignore it.
309 * Bug #7986 fixed - spec gateway renamed from sci_eig.c to sci_spec.c.
311 * Bug #7999 fixed - SwingScilabFileChooser.getFilterIndex() was unusable.
313 * Bug #8031 fixed - cdfgam error message fixed.
315 * Bug #8060 fixed - Improved list display in the variable browser.
317 * Bug #8131 fixed - It was not possible to choose the number of marks and the line width in legends.
319 * Bug #8133 fixed - Ticks disappeared in planar 3-D view.
321 * Bug #8196 fixed - Error messages dealing with negative thickness were not standard.
323 * Bug #8231 fixed - xrect help page did not say that clipping property was inherited.
325 * Bug #8247 fixed - regress tagged as obsolete.
327 * Bug #8323 fixed - Scilab "About Box" did not hide Scilab main window.
329 * Bug #8337 fixed - mtlb_rand now uses the "uniform" rule, whatever the random rule set is.
331 * Bug #8379 fixed - It was not possible to delete the selected datatip with DELETE or BACKSPACE.
333 * Bug #8745 fixed - Extracting from an empty matrix automatically returned an empty matrix.
335 * Bug #8956 fixed - xpoly, xfpoly, xrect, xsegs and xarc did not update data_bounds property.
337 * Bug #9031 fixed - Misalignment of text when using xstring with a matrix fixed.
339 * Bug #9033 fixed - auto_dimensioning property for text handles was not documented.
341 * Bug #9110 fixed - Examples and references to other functions added in Statistics help pages.
343 * Bug #9309 fixed - comparison help page updated to document issue with empty matrix.
345 * Bug #9319 fixed - Huge polylines could not be exported in PS/EPS.
347 * Bug #9444 fixed - with_embedded_jre function removed.
349 * Bug #9627 fixed - Arguments checking added in optimsimplex_* functions.
351 * Bug #9697 fixed - Displayed information for optim "qn" and "gc" with bounds and imp=1 fixed.
353 * Bug #9701 fixed - optim with "qn" option was failing for large problems.
355 * Bug #9819 fixed - unwrap function did not exist in Scilab.
357 * Bug #9840 fixed - Default G tolerance in lsqrsolve was too large.
359 * Bug #10012 fixed - lmisolver and lmitool called with no input now produce errors.
361 * Bug #10083 fixed - plot3d could not be used with only one input argument.
363 * Bug #10122 fixed - replot could not be used in 3-D.
365 * Bug #10175 fixed - Clearer example added for sp2adj to adj2sp conversion (and backwards conversion).
367 * Bug #10214 fixed - evstr help page updated to mention that input argument must not be composed of
368 continuation marks (..).
370 * Bug #10221 fixed - ifftshift function did not exist in Scilab.
372 * Bug #10234 fixed - reglin function moved from CACSD to Statistics module.
374 * Bug #10243 fixed - fun2string(X) called X before returning its code.
376 * Bug #10271 fixed - ordmmd now checks the consistency of the third input argument with the
377 input matrix defined by the first two input arguments.
379 * Bug #10273 fixed - spchol help page now displays an example showing how to use its output arguments.
381 * Bug #10391 fixed - Error when using completion after a global variable clear fixed.
383 * Bug #10428 fixed - Java based components of Scilab showed a library load error in CLI mode.
385 * Bug #10445 fixed - In SciNotes, CTRL+Drag&Drop moved text rather than copying it.
387 * Bug #10470 fixed - In SciNotes, split "Horizontally" or "Vertically" was meaningless.
389 * Bug #10621 fixed - Figure without docking/undocking capabilities can now be created.
391 * Bug #10645 fixed - File encoding could not be given as argument in xmlRead.
393 * Bug #10718 fixed - New "Resize" property added to figures.
395 * Bug #10816 fixed - Typo in part error message fixed.
397 * Bug #10830 fixed - Hypermatrix insertion with a negative index returned a wrong error message.
399 * Bug #10833 fixed - exists help page updated.
401 * Bug #10840 fixed - Keyboard arrows were disabled on 'slider' type uicontrols.
403 * Bug #10856 fixed - analpf did not return the right result.
405 * Bug #10932 fixed - Startup directory was not saved/restored in preferences.
407 * Bug #10936 fixed - Scilab hung with invalid strf in plot2d.
409 * Bug #10998 fixed - matrix*hypermatrix and hypermatrix*matrix operations failed.
411 * Bug #11001 fixed - exists and isdef did not work with primitives.
413 * Bug #11007, #11008 & #11009 fixed - New conjgrad function (Conjugate Gradient methods "pcg", "cgs", "bicg" and "bicgstab").
415 * Bug #11303 fixed - Exception while searching with multiple tabs in SciNotes fixed.
417 * Bug #11305 fixed - Performances improved with a better way to update data in Graphics.
419 * Bug #11523 fixed - In SciNotes, 'whereami line numbering' was not clear enough.
421 * Bug #11571 fixed - x_mdialog did not let the Look&Feel select the window size.
423 * Bug #11575 fixed - There was no preview of GIF files in exportUI dialog.
425 * Bug #11576 fixed - exportUI did not propose gcf().figure_name as default file name.
427 * Bug #11616 fixed - Figure menubar could not be made invisible.
429 * Bug #11629 fixed - Interactive zoom did not work properly in datatip mode.
431 * Bug #11680 fixed - GUI functions in Scilab 5.4.X were much slower than in Scilab 5.3.3.
433 * Bug #11714 fixed - help_from_sci sometimes failed when input function had "<imagedata>" comments.
435 * Bug #11814 fixed - Typo in CACSD help chapter fixed.
437 * Bug #11953 fixed - Scilab crashed when global("") was typed.
439 * Bug #11996 fixed - eye extended to hypermatrix.
441 * Bug #12037 fixed - Simplified Chinese version of SciNotes displayed warnings at startup.
443 * Bug #12073 fixed - Width of code examples has been decreased in XML help pages.
445 * Bug #12082 fixed - convstr function did not work with non-ASCII symbols.
447 * Bug #12121 fixed - inv function did not work for complex sparse matrices.
449 * Bug #12130 fixed - flipdim can now flip blocks, thus making jmat obsolete.
451 * Bug #12145 fixed - demo_mdialog internal function removed.
453 * Bug #12156 fixed - Closing a Scilab session in Javasci could led to a HDF5 error message.
455 * Bug #12306 fixed - Invalid memory free on completion in NWNI mode fixed.
457 * Bug #12308 fixed - create_palette help page removed (function removed).
459 * Bug #12334 fixed - Mark color in legend was invalid.
461 * Bug #12412 fixed - Typo fixed in some error messages.
463 * Bug #12439 fixed - edit_error returned a wrong message when there was no recorded error.
465 * Bug #12440 fixed - Unitary test added for bitxor.
467 * Bug #12465 fixed - ATOMS Default categories names were not localized.
469 * Bug #12472 fixed - grand and link error messages fixed.
471 * Bug #12481 fixed - xlabel could not be used with Scilab property names.
473 * Bug #12485 fixed - xchange returned bad values with log scale.
475 * Bug #12492 fixed - Exported EPS files were invalid when dash patterns were too long.
477 * Bug #12496 fixed - zoom_rect could led to a crash in log scale.
479 * Bug #12535 fixed - In a French localized Scilab, comma was used as decimal separator when zooming (rather than point).
481 * Bug #12567 fixed - Error messages fixed in ricc.
483 * Bug #12622 fixed - Various typos fixed in error messages.
485 * Bug #12672 fixed - Ticks part of axes_property help page updated.
487 * Bug #12673 fixed - Ticks were drawn outside of axes area.
489 * Bug #12682 fixed - Key events were disabled after zooming.
491 * Bug #12683 fixed - proc_name(k, gwin) callback was badly managed depending on
492 input arguments of addmenu function.
494 * Bug #12714 fixed - csvDefault("decimal", ",") returned %f while this value was valid.
496 * Bug #12716 fixed - In SciNotes, RTL languages were not correctly displayed.
498 * Bug #12725 fixed - Datatips did not work in logarithmic scale.
500 * Bug #12733 fixed - There was no way to direct graphs to nothing with driver function.
502 * Bug #12737 fixed - In SciNotes, autosave did not create directory if it did not exist.
504 * Bug #12763 fixed - Value of "listbox" style uicontrols was not updated when using arrow keys.
506 * Bug #12769 fixed - xset("window", 1) did not set the current axes.
508 * Bug #12784 fixed - Misleading error message in many functions when passing an integer
509 argument instead of double argument fixed.
511 * Bug #12785 fixed - plot did not allow int data as first argument.
513 * Bug #12803 fixed - warning(['foo','bar']) printed two 'WARNING: '.
515 * Bug #12819 fixed - Link to contributors website page fixed in the documentation.
517 * Bug #12826 fixed - <warning> and <note> tags were not managed in the documentation.
519 * Bug #12854 fixed - the configure failed to detect custom installation of docbook.
521 * Bug #12860 fixed - Missing semicolon in style.css added.
523 * Bug #12880 fixed - A warning is displayed when transposing arguments of plot.
525 * Bug #12882 fixed - Some help pages were not clear.
527 * Bug #12896 fixed - Typos fixed in XML module error messages.
529 * Bug #12900 fixed - It was not possible to set proxy options in Preferences.
531 * Bug #12910 fixed - Typos fixed in several help pages.
533 * Bug #12938 fixed - No Java compiler was available in Linux binary version.
535 * Bug #12943 fixed - Datatips did not work properly when 2-D plots were rotated.
537 * Bug #12945 fixed - Datatips could not be dragged properly in zoomed axes.
539 * Bug #12948 fixed - When host was not found, getURL caused a crash to desktop.
541 * Bug #12950 fixed - getURL ignored the proxy settings under Windows.
543 * Bug #12951 fixed - Interactive zoom was broken.
545 * Bug #12952 fixed - It was not always possible to search a word in a file with SciNotes.
547 * Bug #12956 fixed - splitURL with no protocol in URL provoked an access
550 * Bug #12957 fixed - splitURL and getURL were not declared as new 5.5 functions.
552 * Bug #12962 fixed - xinfo documentation was not clear.
554 * Bug #12967 fixed - Data editor icon was not 16x16.
556 * Bug #12963 fixed - drawaxis did not place the axis properly.
558 * Bug #12966 fixed - Rotation, tool tip and other Xcos plot actions were
561 * Bug #12968 fixed - A variable named 'temp' could not be saved.
563 * Bug #12971 fixed - getURL downloaded file name was wrong.
565 * Bug #12973 fixed - Exception occurring when clicking on a figure at creation fixed.
567 * Bug #12976 fixed - getURL returned a file name instead of a file path.
569 * Bug #12978 fixed - exportUI returned an error when input argument was a figure handle.
571 * Bug #12979 fixed - exportUI did not work with vectorial export.
573 * Bug #12990 fixed - GED features conflicted with figure events.
575 * Bug #12992 fixed - The sigma value was always equal to "LM" in eigs.
577 * Bug #12993 fixed - stdev returned value depended on 'x' being defined in the environment.
579 * Bug #13000 fixed - []./int8(3) and on int8(3)./[] led to an endless recursive.
581 * Bug #13002 fixed - modulo and pmodulo did not support integers & hypermatrices.
583 * Bug #13003 fixed - String to enum converter added to Java external objects.
585 * Bug #13004 fixed - Debug infos were displayed in case of an error with eoj.
587 * Bug #13005 fixed - jcompile did not use the classpath to compile.
589 * Bug #13007 fixed - Compilation errors were not returned by jcompile.
591 * Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
593 * Bug #13010 fixed - Wrong class was returned by jcompile (with ecj).
595 * Bug #13011 fixed - ilib_compile failed under Mac OS X 10.9.
597 * Bug #13012 fixed - Vectorial export of rotated strings was wrong.
599 * Bug #13013 fixed - In SciNotes, the first proposed directory to save a file was not current working directory.
601 * Bug #13014 fixed - Update of the efficiency inner variable improved in optim_ga.
603 * Bug #13015 fixed - Computation of efficiency inner variable improved in optim_ga.
605 * Bug #13022 fixed - Vectorial export did not clip large segments.
607 * Bug #13023 fixed - xs2pdf crashed under Windows when the target file was already opened.
609 * Bug #13027 fixed - There was no autowrap into array in JIMS.
611 * Bug #13031 fixed - Lorentz Butterfly demonstration fixed.
613 * Bug #13032 fixed - CMATVIEW help page example fixed and CMAT3D help page example created.
615 * Bug #13033 fixed - -1 could not be used as nax argument in plot2d.
617 * Bug #13036 fixed - The help page associated to the history browser was wrong.
619 * Bug #13041 fixed - Wrong result was returned for "integer scalar" minus "integer vector".
621 * Bug #13042 fixed - Texts in graphics were not properly centered.
623 * Bug #13047 fixed - jcompile did not allow class reloading.
625 * Bug #13049 fixed - New handled protocols added in links in SciNotes.
627 * Bug #13050 fixed - The result of mvvacov was not symmetric.
629 * Bug #13053 fixed - datatipCreate did not return datatip handle.
631 * Bug #13055 fixed - Array indexing did not follow Scilab convention in JIMS.
633 * Bug #13061 fixed - hdf5 demonstration failed with a read-only file.
635 * Bug #13063 fixed - Color selection in SciNotes preferences threw exceptions.
637 * Bug #13064 fixed - Deleting a link connected to a split led to a translated
640 * Bug #13069 fixed - Documentation for %MODELICA_USER_LIBS updated.
642 * Bug #13066 fixed - data_bounds was not fully documented in axes_properties.
644 * Bug #13082 fixed - Datatip mark style was not inherited from the parent polyline.
646 * Bug #13083 fixed - Datatip marks did not inherit colors from the parent polyline.
648 * Bug #13084 fixed - interp_mode property could not be set on all datatips of the same polyline.
650 * Bug #13085 fixed - A datatip could not be moved on a circle.
652 * Bug #13092 fixed - Optimizations now check the user function output (must be real).
654 * Bug #13093 fixed - Removed trailing "\n" in the head_comments error message.
656 * Bug #13101 fixed - When x-axis was in reverse position x_location='origin' failed.
658 * Bug #13102 fixed - savematfile did not support "-v7.3" option.
660 * Bug #13108 fixed - Time between ATOMS database updates is now a month (was a day) and is configurable.
662 * Bug #13109 fixed - pll2str now supports polynomials with complex coefficients and hypermatrices.
664 * Bug #13111 fixed - sqrt returned different results when imaginary part was -0 versus 0.
666 * Bug #13114 fixed - clear_pixmap/pixmap property should have been removed in Scilab 5.4.1.
668 * Bug #13116 fixed - qpsolve now respects upper-bounds constraints.
670 * Bug #13121 fixed - ode "rk" option crashed Scilab when the user derivative function failed.
672 * Bug #13127 fixed - There were no subticks with user defined ticks.
674 * Bug #13132 fixed - There were missing graduations when data_bounds interval was too small.
676 * Bug #13134 fixed - User-defined ticks in log scale were invisible.
678 * Bug #13136 fixed - exists and isdef failed for input arguments longer than 1.
680 * Bug #13139 fixed - fft help page fixed.
682 * Bug #13140 fixed - Various typos fixed in help pages.
684 * Bug #13144 fixed - csvRead can now ignore header comments thanks to a new input argument.
686 * Bug #13146 fixed - profile failed when a comment was on the same line as a function declaration.
688 * Bug #13150 fixed - Vectorial export used too much memory for grayplot.
690 * Bug #13152 fixed - Typo fixed in syslin French help page.
692 * Bug #13165 fixed - Preferences reset did not show a confirmation pop-up.
694 * Bug #13168 fixed - Wrong interpretation of star followed by minus fixed.
696 * Bug #13170 fixed - Legends for plzr plots fixed.
698 * Bug #13174 fixed - Scilab crashed after XML element removal.
700 * Bug #13175 fixed - argn help page updated with specific cases.
702 * Bug #13177 fixed - Error when changing x_ticks.locations on axes fixed.
704 * Bug #13185 fixed - When the "checked" option of a uimenu was set to "on" for
705 the first time, the display order of other uimenus was changed.
707 * Bug #13186 fixed - csvRead freezed Scilab if separator was an empty string.
709 * Bug #13187 fixed - xmltoformat did not include "imageobjects" in output.
711 * Bug #13188 fixed - The output argument of eomday function was not pre-dimensioned.
713 * Bug #13191 fixed - isempty(rational) returned an error message.
715 * Bug #13192 fixed - horner returned an error message when the input arguments did not have the same size.
717 * Bug #13194 fixed - part help page improved.
719 * Bug #13199 fixed - There was a thin blue line around acknowledgements button in about box.
721 * Bug #13200 fixed - about() ACKNOWLEDGEMENTS did not render utf-8 characters.
723 * Bug #13201 fixed - x_mdialog entries had no margin.
725 * Bug #13202 fixed - kernel help page improved.
727 * Bug #13203 fixed - Typos fixed in some error messages.
729 * Bug #13205 fixed - group accepted continuous transfer functions.
731 * Bug #13208 fixed - New nanreglin function to handle NaNs for reglin().
733 * Bug #13210 fixed - Incorrect argument description in mseek help page.
735 * Bug #13213 fixed - User-defined margins were reset by auto computation of the margins.
737 * Bug #13215 fixed - clf(1001) returned an error.
739 * Bug #13218 fixed - Typos fixed in core module help pages.
741 * Bug #13226 fixed - Completion with accented chars could led to a crash.
743 * Bug #13227 fixed - Invalid windowsConfiguration.xml file could avoid Scilab startup.
745 * Bug #13233 fixed - Wrong simulation result of step response csim('step',t,H) fixed.
747 * Bug #13234 fixed - lmitool calling sequence clarified.
749 * Bug #13236 fixed - "parents" help page has been renamed to "parentheses".
751 * Bug #13238 fixed - Wrong legends display fixed.
753 * Bug #13243 fixed - optim with "gc" option failed when imp<0.
755 * Bug #13247 fixed - Hypermatrix in structure definition did not work properly.
757 * Bug #13252 fixed - Minor typos fixed in Graphics messages.
759 * Bug #13258 fixed - Bad number display in datatips fixed.
765 * Bug #11975 fixed - Inverted Pendulum demonstration did not compile.
767 * Bug #12423 fixed - Data types of SWITCH2_m were not documented.
769 * Bug #12685 fixed - The lincos and steadycos functions did not load
770 the XcosLibs so all the blocks were unknown.
772 * Bug #12998 fixed - 'ans' was not ignored in the context results.
774 * Bug #13006 fixed - Selection to superblock (in_f and out_f) failed.
776 * Bug #13030 fixed - Selection to superblock did not reset the origin.
778 * Bug #13059 fixed - NaN propagated at startup made the simulation fail.
780 * Bug #13071 fixed - Three unused functions in Xcos macros now specified as not mandatory
783 * Bug #13172 fixed - Logic block help file had some typo errors.
785 * Bug #13239 fixed - Grid was not shown in zoomed log scale.
787 * Bug #13250 fixed - CLSS wrongly handled scalar values.
792 Changes between version 5.4.1 and 5.5.0-beta-1
793 ==============================================
798 * New special functions:
799 - erfi - The imaginary error function.
800 - dawson - Compute the Dawson function (scaled imaginary error).
802 * New functions introduced:
803 - getURL - Download a URL (HTTP, HTTPS, FTP...)
804 - splitURL - Split a URL (HTTP, HTTPS, FTP...)
805 - cov - Covariance matrix. Deprecates mvvacov. See bug #11896 fixed.
806 - ismatrix - Check if a variable is a matrix. See bug #10456 fixed.
807 - isrow - Check if a variable is a row vector. See bug #10456 fixed.
808 - iscolumn - Check if a variable is a column vector. See bug #10456 fixed.
809 - issquare - Check if a variable is a square matrix. See bug #10456 fixed.
810 - cross - Vector cross product. See bug #9941 fixed.
811 - members - Number of occurrences and linear indexes of common values between
812 two matrices of the same type.See bug #12705 fixed.
814 * Add a complete set of functions to read and write any HDF5 file from Scilab.
817 - daskr - differential-algebraic system solver with rootfinding 'daskr', using
818 BDF methods with direct and preconditioned Krylov linear solvers, based on ODEPACK.
820 * Based on JIMS external module, Scilab provides functions to interact
823 * erf, erfc, erfcx and calerf functions now support complex arguments.
825 * isnum has been redesigned in native code. Performance improvements up to 130x.
828 * Allow the usage of the '$' keyword in part function.
830 * The histplot command can now be used with the option polygon=%t/%f to add the
831 frequency polygon chart (thanks to Mehran Khorshidi).
833 * Multi level completion on mlist, struct, XML structures...
835 * Variable browser improvements:
836 - The variable browser also shows the size of integers and the user type of
838 See bugs #12523 and #10409
839 - It is now possible to delete variables from the variable browser.
841 - A user can now plot variables from the variable browser (this functionality was
842 already available in the variable editor).
844 * Added lighting effect for plot of surfaces. Lighting can be enabled
845 creating light objects or disabled by deleting them. The following function
847 - light - Creates a light graphic object.
850 - Multiple domains in localization managed.
851 - addlocalizationdomain function added for a new domain creation.
852 - Optional parameter added to gettext to manage domains.
853 - tbx_generate_pofile and tbx_build_localization added to create localization files for
856 * Windows Solution updated to Visual Studio 2012.
858 * -keepconsole option added for Scilab Windows to facilitate debugging.
859 Calling Scilab with this option will leave the console box window opened at startup.
861 * License update: switch to the CeCILL 2.1.
867 * New calling sequence allowed for nicholschart: nicholschart(gains, phases, colors).
870 * qp_solve can now take up to 5 output arguments. The last one is an error flag,
871 if it is present, then the function will display a warning instead of an error.
874 * graypolarplot has been improved in terms of performances and rendering.
877 * nthroot is now vectorizable.
880 * New optional output argument for routh_t.
884 Differential Equations
885 ======================
887 * Netlib's Quadpack, used for definite integration, has been updated to match the upstream.
893 * Autosave feature can now use %date to append the current date to the backup filename
900 * New DAE solver: DDaskr, using BDF methods with direct Newton and preconditioned Krylov
901 linear solvers, which includes rootfinding.
902 It is available from dae function.
904 * In Modelica initialization GUI, inputs (eg. sensor) were not handled.
906 * Sundials updated to the "2.5.0" version, keeping our modifications.
908 * JGraphX updated to the "2.1.0.7" version, updating our hooks performance.
910 * API changed in the scicos_block4 interface: the uid value is not available
911 inside the simulation function.
913 * xcosAddToolsMenu added to let the user perform some actions on the graph.
915 * CBLOCK4 block added to the "User-Defined Functions"
921 * Some Xcos specific content added to xcos_toolbox_skeleton help pages.
927 * Minimal version of Flexdock (1.2.4) enforced.
930 Obsolete & Removed Functions
931 ============================
933 * Scilab 5.5.X family will be the latest family working under Windows XP/2003.
935 * Vector ^ scalar syntax declared as obsolete. See bug #11524
937 * The third argument of poly function will be more strict.
938 Only the following strings are allowed: "roots", "coeff", "c", "r".
940 * Option and direction arguments of gsort will be more strict in all cases.
941 Only the following strings are allowed:
942 - option: "r" "c" "g" "lr" "lc"
943 - direction : "d" "i"
945 * nfreq tagged as obsolete. Will be removed in Scilab 5.5.1.
946 Please use tabul instead.
948 * IsAScalar tagged as obsolete. Will be removed in Scilab 5.5.1.
949 Please use isscalar instead.
951 * chart tagged as obsolete. Will be removed in Scilab 5.5.1.
952 Please use nicholschart instead.
954 * Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
956 * mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
957 Please use cov instead.
959 * dft removed, please use fft instead.
961 * sscanf removed, please use msscanf instead.
963 * fscanf removed, please use mfscanf for files opened with mopen or read for files opened
966 * fprintf removed, please use mfprintf for files opened with mopen or write for files
967 opened with file instead.
969 * mfft tagged as obsolete. Will be removed in Scilab 5.5.1.
970 Please use fft instead.
976 * paramfplot2d: When theta input argument was a column vector, an error occurred.
978 * Bug #2267 fixed - Wrong error message when ticks locations and labels did not have the
981 * Bug #2416 fixed - Particular case (string([]) returns []) has been added in string help
984 * Bug #3511 fixed - strindex did not return all occurrences in regexp mode.
986 * Bug #3928 fixed - An error was returned when a matrix was flipped along the third
989 * Bug #4042 fixed - squeeze returned a hypermatrix instead of a matrix when at least one
990 dimension was equal to 1.
992 * Bug #4085 fixed - num2cell help page added.
994 * Bug #4229 fixed - delip did not return an error if one element of its first input
995 argument was negative.
997 * Bug #4383 fixed - csim with "step" and "impuls" now works with direct feedthrough.
999 * Bug #4481 fixed - iir help page updated to precise that frq can be a scalar.
1001 * Bug #4731 fixed - lqr failed when the time domain of an input was a number.
1003 * Bug #4743 fixed - Graphics with too big or too small values did not work.
1005 * Bug #5017 fixed - norm rewritten to take benefit from the Lapack package performance.
1007 * Bug #5073 fixed - New parameter added in strtod function (decimal separator).
1009 * Bug #5205 fixed - permute was slow for large hypermatrices.
1011 * Bug #5207 fixed - grand can now return a hypermatrix.
1013 * Bug #5365 fixed - makecell help page was in the "compatibility functions" directory
1014 instead of being in "data_structures".
1016 * Bug #5539 fixed - sylv help page was wrong in the discrete-time case.
1018 * Bug #5616 fixed - typeof(uiCreateTree(...)) returned "Tree" instead of "uitree".
1020 * Bug #5694 fixed - numdiff help page clarified.
1022 * Bug #5779 fixed - xnumb number format was too small (+ unit test added).
1024 * Bug #6037 fixed - macrovar help page improved.
1026 * Bug #6168 fixed - zpbutt, zpch1, zpch2 and zpell help pages were unclear.
1028 * Bug #6390 fixed - The "external" argument of odecd was not well documented and
1031 * Bug #6427 fixed - full([%T %F]) returned an error message.
1033 * Bug #6466 fixed - Example with vectorized input added in mprintf and msprintf help pages.
1035 * Bug #6584 fixed - mfft tagged as obsolete.
1037 * Bug #6638 fixed - The profiler output was incorrect by a factor of 1000 under Windows.
1039 * Bug #6693 fixed - modulo did not accept polynomial inputs. Help page was not updated.
1041 * Bug #6752 fixed - unit test scilab.tst has been split in different tests.
1043 * Bug #6840 fixed - New line_style added.
1045 * Bug #6988 fixed - Error messages in modules/data_structures/src/c/hmops.c were not
1048 * Bug #7026 fixed - There was no unit test for plot2d.
1050 * Bug #7080 fixed - Some graphic macros did not use standard error messages.
1052 * Bug #7204 fixed - geomean applied to a hypermatrix gave wrong results.
1054 * Bug #7206 fixed - If the second input argument of meanf function was a hypermatrix,
1055 this function returned an error.
1057 * Bug #7296 fixed - %nan, %inf and -%inf enabled for the cdf* functions.
1059 * Bug #7411 fixed - clf forgot to turn off the datatip mode.
1061 * Bug #7486 fixed - LAPACK versions of DGELSY and ZGELSY now used.
1063 * Bug #7596 fixed - A same error happening in different places now displays the same
1066 * Bug #7648 fixed - CDF functions now display a warning for non integer
1067 "degrees of freedom" argument.
1069 * Bug #7655 fixed - An example added in type help page, for type(X)=11 and type(X)=13.
1071 * Bug #7684 fixed - Introduction demonstration splitted into subsections.
1073 * Bug #7781 fixed - The second parameter of iqr function had no effect.
1075 * Bug #7782 fixed - lcm and gcd help pages improved to tell the user how to use both
1078 * Bug #7824 fixed - title function properties did not support an indexed color.
1080 * Bug #7826 fixed - chart tagged as obsolete.
1082 * Bug #7828 fixed - Slight improvements in nicholschart.
1084 * Bug #7848 fixed - The third argument of correl function is now optional.
1086 * Bug #7877 fixed - iirgroup function fixed.
1088 * Bug #7927 fixed - Output "flag" in qmr function was not well documented.
1090 * Bug #7960 fixed - plzr could not produce pole zero plot for a simple transfer function.
1092 * Bug #8058 fixed - The user can now set the tolerances of intc function.
1094 * Bug #8098 fixed - cumsum could not be applied to rational matrices.
1096 * Bug #8162 fixed - Area of stability of plzr was wrong for continuous systems
1099 * Bug #8211 fixed - Parameters module demonstration finalized.
1101 * Bug #8234 fixed - strtod did not return an empty matrix when the input argument was an
1104 * Bug #8264 fixed - Matlab to Scilab dictionary help page updated for atan2.
1106 * Bug #8319 fixed - dbphi(hypermat) and phasemag(hypermat) returned a matrix instead of
1109 * Bug #8373 fixed - clear can now handle a matrix of strings argument.
1111 * Bug #8415 fixed - optim_moga, optim_nsga, optim_nsga2 can now take list as input
1112 arguments, as explained in their help pages.
1114 * Bug #8462 fixed - bvodeS could make Scilab unstable.
1116 * Bug #8470 fixed - bvode displayed some output in terminal window and not in
1119 * Bug #8479 fixed - The latest Saxon version was not supported.
1121 * Bug #8511 fixed - sprand now uses grand instead of rand and grand functions. Internal
1122 state of the random generator is no more changed.
1124 * Bug #8561 fixed - ddassl, ddasrt, ddaskr: abs and rel tolerance sizes are now checked.
1126 * Bug #8597 fixed - grand/clcg4 could display uncontrolled messages as warning.
1128 * Bug #8607 fixed - Some error messages in modules/overloading/macros were not standard
1131 * Bug #8614 fixed - Unit test for barhomogenize added.
1133 * Bug #8636 fixed - roots help page updated (default algorithm value was wrong).
1135 * Bug #8667 fixed - The handling of %nan in min, max, median functions was not properly
1138 * Bug #8680 fixed - "end" output argument of regexp function has been changed.
1140 * Bug #8687 fixed - typeof function failed on uint8, depending on the format
1141 (+ unit test added).
1143 * Bug #8695 fixed - optim_ga used old (initial) values instead of newly-computed ones.
1145 * Bug #8778 fixed - Call_ScilabOpen, TerminateScilab could not be called more
1146 than 80 times in a loop.
1148 * Bug #8779 fixed - gsort did not preserve the order of equal elements, in
1151 * Bug #8820 fixed - squeeze did not return a matrix when the number of dimensions
1152 of the result was less or equal to 2.
1154 * Bug #8824 fixed - taucs_chfact returned a segfault (not the case in nwni mode).
1156 * Bug #8840 fixed - fileparts did not manage matrix of strings.
1158 * Bug #8856 fixed - Non regression test added for [k,l,m,...]=find(a==5).
1159 Non regression test of bug #476 updated.
1161 * Bug #8857 fixed - Non regression test of bug #477 updated.
1163 * Bug #8858 fixed - Non regression test of bug #480 updated.
1165 * Bug #8862 fixed - mget and mput could not read and write 64 bit data from
1168 * Bug #9004 fixed - bitcmp function called with one input argument returned an error.
1170 * Bug #9020 fixed - exists function did not accept matrix as first input argument.
1172 * Bug #9059 fixed - tbx_build_macros and genlib did not stop even if an error occurred.
1174 * Bug #9109 fixed - nfreq tagged as obsolete.
1176 * Bug #9158 fixed - zeros called with a big number returned an empty matrix instead
1179 * Bug #9208 fixed - Added three optional output arguments to optim,
1180 to retrieve #iterations, #evaluations and a termination indicator.
1182 * Bug #9385 fixed - The type checking in trigonometric functions has been added.
1184 * Bug #9394 fixed - is_param recognized "plist" as an existing field.
1186 * Bug #9395 fixed - add_param did not check its input arguments.
1188 * Bug #9396 fixed - add_param accepted duplicate keys.
1190 * Bug #9459 fixed - Default values of the optional plot3d arguments were not documented.
1192 * Bug #9537 fixed - optimbase_configure only allowed row vectors as initial value.
1193 Column vectors now allowed by transposing them.
1195 * Bug #9538 fixed - optimbase_checkshape only allowed row vectors as output arguments of
1196 cost function. Column vectors are now allowed by transposing them.
1198 * Bug #9577 fixed - Setting neldermead_configure("-numberofvariables") is now optional,
1199 setting neldermead_configure("-x0") initializes -numberofvariables
1202 * Bug #9601 fixed - Cylinder demonstration fixed.
1204 * Bug #9688 fixed - optim could crash when "imp" option was < 0. It is now set to 0 in
1207 * Bug #9690 fixed - The "imp" option for optim could crash Scilab and was not consistent
1210 * Bug #9691 fixed - "imp" option in optim help page was poorly documented.
1212 * Bug #9694 fixed - Example in optim help page fixed to display correct counters.
1214 * Bug #9702 fixed - Contrary to what optim help page stated, the "gc" algorithm does use
1215 the "epsx" parameter.
1217 * Bug #9780 fixed - gmres solver did not run with complex systems.
1219 * Bug #9788 fixed - neldermead can now produce a warning when it fails to converge,
1220 thanks to a new input argument "warn".
1222 * Bug #9821 fixed - getrelativefilename did not manage matrix of strings.
1224 * Bug #9851 fixed - Error message occurred because of a cut-off frequency of 0.25Hz
1227 * Bug #9859 fixed - It was not possible to draw arrows in 3-D using xarrows.
1229 * Bug #10146 fixed - In SciNotes, 'help on keyword' moved from bottom to top in the popup
1232 * Bug #10180 fixed - det was not defined for sparse matrices.
1234 * Bug #10213 fixed - sci2exp help page updated to document the impact of format function.
1236 * Bug #10216 fixed - Invalid syntaxes for zeros, ones, eye, rand, like zeros(2,:).
1238 * Bug #10226 fixed - When a // <empty session> line was deleted, all sessions
1239 histories were folded.
1241 * Bug #10254 fixed - Slight improvements in ones help page.
1243 * Bug #10269 fixed - qp_solve can now take up to 5 output arguments. The last one is an
1244 error flag, if it is present, then the function will issue a warning
1245 instead of an error.
1247 * Bug #10276 fixed - qp_solve segfaulted with large matrices.
1249 * Bug #10287 fixed - Error message added for complex expression as input argument of
1252 * Bug #10305 fixed - Comparison of lists with empty items returned an error message.
1254 * Bug #10596 fixed - exit(xxx) from Scilab failed.
1256 * Bug #10818 fixed - home, %e, %t, %f, %z and %s help pages added.
1258 * Bug #10823 fixed - fullpath returned different results under Windows and Linux for
1261 * Bug #10862 fixed - Add a without Internet connection installation
1262 global configuration in the installer.
1264 * Bug #10866 fixed - det was not equivalent to detr for rational matrices.
1266 * Bug #10906 fixed - Typo fixed in cls2dls help page.
1268 * Bug #10930 fixed - The comments in armax function were in French.
1270 * Bug #10995 fixed - Typo fixed in grand help page for Gamma law argument.
1272 * Bug #11065 fixed - The second output argument of unique function contained a wrong result.
1274 * Bug #11067 fixed - Display of ticks labels with closed associated values was wrong.
1276 * Bug #11139 fixed - conj was not defined for sparse matrices (+ unit test added).
1278 * Bug #11308 fixed - Calling sequences in dsearch help page were wrong.
1280 * Bug #11343 fixed - The "isoview" figure property did not work when the axes
1281 margins had been modified.
1283 * Bug #11648 fixed - Copying graphic via the clipboard did not work.
1285 * Bug #11766 fixed - nthroot has been added to m2sci help page.
1287 * Bug #11792 fixed - Lists can be accessed with non integer indexes (list help page
1290 * Bug #11869 fixed - "Environment" was not localized in preferences.
1292 * Bug #11885 fixed - Each rand has been changed to grand in genetic algorithms and
1293 simulated annealing functions.
1295 * Bug #11891 fixed - Fisher ratio could be inaccurate for one-way ANOVA.
1297 * Bug #11997 fixed - In case of invalid variable name, save function now returns an error
1298 instead of a compatibility warning.
1300 * Bug #12034 fixed - max function did not manage empty matrices.
1302 * Bug #12045 fixed - repmat returned wrong results if the values of an input matrix were
1305 * Bug #12070 fixed - Removing a module can now be done in an on-line mode even if
1306 it has been installed in an off-line mode.
1308 * Bug #12080 fixed - lsqrsolve always printed messages.
1310 * Bug #12085 fixed - Under Windows, csvWrite wrote wrong EOL.
1312 * Bug #12114 fixed - libstdc++ is now compiled as static instead of using the
1313 library from thirdparty.
1315 * Bug #12118 fixed - ode could take complex externals.
1317 * Bug #12143 fixed - "stop entity picker" (ged(11)) returned an error message.
1319 * Bug #12150 fixed - datatipCreate failed with one single point.
1321 * Bug #12163 fixed - unzoom did not work with a single input argument.
1323 * Bug #12212 fixed - Export of a polyline in 2-D broke it into several segments.
1325 * Bug #12326 fixed - There was no way to set LaTeX font size in preview.
1327 * Bug #12349 fixed - In SciNotes, when the view was splitted, removing a char made the
1330 * Bug #12376 fixed - Exec & edit buttons in the help pages examples were sometimes
1333 * Bug #12413 fixed - ATOMS packages could not be removed if ATOMS had never been on-line.
1335 * Bug #12415 fixed - PATH environment variable grew when using call_scilab in a loop.
1337 * Bug #12426 fixed - By using addErrorMessage, a random string error could be displayed.
1339 * Bug #12433 fixed - show_pixmap function was removed from Scilab but still used in some
1342 * Bug #12443 fixed - The behavior of mopen in text file mode has been documented
1345 * Bug #12463 fixed - Wrong specification for rect=[x,y,w,h] argument in xstringb
1348 * Bug #12470 fixed - Variable browser was not refreshed after loading an environment.
1350 * Bug #12473 fixed - Problems with "é" in mkdir French help page.
1352 * Bug #12475 fixed - csvRead did not support double quoted fields.
1354 * Bug #12490 fixed - plot did not call clf; in its help page example producing a
1357 * Bug #12506 fixed - In SciNotes, a miscolorization could occurred when returned values
1360 * Bug #12508 fixed - Wrong error message in rand function fixed.
1362 * Bug #12518 fixed - Polynoms were not displayed by default in the variable browser.
1364 * Bug #12520 fixed - Improve the description of the size in the variable browser.
1366 * Bug #12527 fixed - Scilab user functions were not listed in the variable browser.
1368 * Bug #12547 fixed - In SciNotes, lines were wrongly numbered with splitted function
1371 * Bug #12548 fixed - Duplicated code in xmltoformat removed.
1373 * Bug #12550 fixed - optimbase and optimsimplex help pages were not standard.
1375 * Bug #12551 fixed - Stack problem with diary([],"pause") and diary([],"resume") fixed.
1377 * Bug #12556 fixed - A fatal error occurred when calling set with wrong instructions.
1379 * Bug #12557 fixed - Valid function names were not specified in function and functions
1382 * Bug #12564 fixed - Compile and run javasci help page was not clear about needed packages.
1384 * Bug #12581 fixed - isfield could not support mlist or tlist.
1386 * Bug #12589 fixed - Call sequence for spzeros & spones were missing in French
1389 * Bug #12592 fixed - Scilab hung with plot(-0).
1391 * Bug #12593 fixed - A wrong error message was returned when running genlib with an
1392 error in the sci file.
1394 * Bug #12594 fixed - Invalid SciNotes configuration file avoided SciNotes startup.
1396 * Bug #12600 fixed - mput did not manage unsigned integer.
1398 * Bug #12606 fixed - Overloads for grand were not standard.
1400 * Bug #12613 fixed - gsort did not return correct results with %nan.
1402 * Bug #12614 fixed - Helpbrowser was not launched in EDT.
1404 * Bug #12615 fixed - Graphics seemed to be freezed after a call to plot/bar/barh with
1405 a bad LineSpec argument.
1407 * Bug #12624 fixed - In case of errors in Scilab macros, "make check-TESTS" did not fail
1410 * Bug #12627 fixed - At restoration, a window could be out of the screen.
1412 * Bug #12629 fixed - The last example of csim help page defined a function called
1413 input (overwriting the Scilab one).
1415 * Bug #12631 fixed - A "see also" link has been added from progressionbar to waitbar
1418 * Bug #12634 fixed - ATOMS modules could not be installed from an archive file
1419 already existing in SCI/contrib/archives in "offline" mode.
1421 * Bug #12637 fixed - In some help pages, some signal processing functions were not in
1422 the correct section.
1424 * Bug #12639 fixed - justify([], position) returned an error instead of [].
1426 * Bug #12641 fixed - graypolarplot has been fully vectorized as it was too slow.
1428 * Bug #12657 fixed - Computation of v1.^v2 is now done without any memory allocation,
1429 when v1 and v2 are real arrays, v1 >= 0 and v2 integer.
1431 * Bug #12668 fixed - Undocking SciNotes led to an exception.
1433 * Bug #12678 fixed - nthroot now accepts vector/matrix as second argument.
1435 * Bug #12679 fixed - Argument type check added in gcd and lcm.
1437 * Bug #12686 fixed - Error returned by diff fixed.
1439 * Bug #12702 fixed - When no extra parameters were needed in the cost function,
1440 NDcost did not work.
1442 * Bug #12703 fixed - In SciNotes, common shortcuts 'SHIFT DELETE', 'SHIFT INSERT'
1445 * Bug #12705 fixed - members function added. It allows to find the number of occurrences
1446 and linear indexes for common values between two matrices of the
1449 * Bug #12706 fixed - A wrong size of a matrix as input argument of cross function was
1452 * Bug #12708 fixed - Incorrect display in SciNotes preferences fixed (onmouseover styles).
1454 * Bug #12712 fixed - In SciNotes, autosaving can now use %date to append the current
1455 date to the backup filename.
1457 * Bug #12715 fixed - Variable cross in pspect and cspect has been renamed because of
1458 conflicts with cross function.
1460 * Bug #12736 fixed - In SciNotes, the Completion window appeared only in first tab.
1462 * Bug #12747 fixed - legendre now accepts the -1 and 1 values for third argument.
1464 * Bug #12749 fixed - fscanfMat help page updated.
1466 * Bug #12758 fixed - Focus issue with plot3d fixed.
1468 * Bug #12761 fixed - The https:// protocol was not supported on ATOMS.
1470 * Bug #12772 fixed - eigs failed when trying to solve a sparse matrix eigen value problem.
1472 * Bug #12774 fixed - Various typos fixed.
1474 * Bug #12775 fixed - Some related functions were not listed in "See also" section of
1477 * Bug #12778 fixed - Insertion of an empty matrix in an integer matrix led to a
1480 * Bug #12779 fixed - savewave had a miscoding in the internal function write_wavedat.
1482 * Bug #12783 fixed - There were some inconsistent error messages in dsearch.
1484 * Bug #12790 fixed - Links to ZCOS files in documentation were broken.
1486 * Bug #12791 fixed - More information is now given in case of failure during the ATOMS
1489 * Bug #12793 fixed - Improved the bode() plots with a new option "rad" to convert plot into rad/s
1490 and a new function bode_asymp() to draw the system asymptotes.
1492 * Bug #12794 fixed - calfrq.sci code did not follow Scilab standard.
1494 * Bug #12795 fixed - Typos fixed in CACSD help page.
1496 * Bug #12800 fixed - Typo fixed in Polynomials help page.
1498 * Bug #12804 fixed - Typos fixed in routh_t help page.
1500 * Bug #12807 fixed - Display of showprofile improved.
1502 * Bug #12808 fixed - Add missing </td> in documentation generation (note, warning, ...).
1504 * Bug #12813 fixed - flipdim function extended to any type of input data.
1506 * Bug #12814 fixed - Improvements of pertrans help page.
1508 * Bug #12815 fixed - levin redefined cov as a variable.
1510 * Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale.
1512 * Bug #12818 fixed - Segfault in set function with invalid property values dimension.
1514 * Bug #12823 fixed - In help generation (toolbox) links were not correctly handled.
1516 * Bug #12827 fixed - noisgen help page improved.
1518 * Bug #12828 fixed - routh_t gave a wrong result if the first element of a row was zero.
1520 * Bug #12829 fixed - New optional output argument added for routh_t function.
1522 * Bug #12830 fixed - In SciNotes, it was not possible to execute a replace action
1523 from the caret position.
1525 * Bug #12831 fixed - In SciNotes toolbar, there was no button to open code navigator.
1527 * Bug #12833 fixed - In SciNotes, there was no autoscroll when searching a pattern.
1529 * Bug #12836 fixed - Error fixed in strcmpi help page.
1531 * Bug #12839 fixed - Typo fixed in getVariablesOnStack help page.
1533 * Bug #12840 fixed - Typo fixed in number_properties.xml help page.
1535 * Bug #12852 fixed - Visual Studio 2012 SDK configuration was incorrect.
1537 * Bug #12858 fixed - Typo fixed in debug and pause French help pages.
1539 * Bug #12859 fixed - Fixed optional argument in isdef help page.
1541 * Bug #12863 fixed - size(state-space, "r") returned an error.
1543 * Bug #12875 fixed - phasemag returned an error for input vector containing zeros.
1545 * Bug #12887 fixed - Scilab hung with auto_clear set to on and log_flags set to true.
1547 * Bug #12888 fixed - sysdiag was not documented about block diagonal matrices build.
1549 * Bug #12906 fixed - champ and champ1 help pages updated
1551 * Bug #12909 fixed - Completion on (mt)list led to a crash.
1553 * Bug #12911 fixed - Matlab to Scilab dictionary help page updated for eig.
1555 * Bug #12913 fixed - linspace returned an error if the third argument was an integer type
1558 * Bug #12916 fixed - power help page improved.
1560 * Bug #12919 fixed - Rotation on plots was disabled after using menus.
1562 * Bug #12927 fixed - ones function could not take integer type input.
1564 * Bug #12931 fixed - ATOMS redefined "message" keyword.
1570 * Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
1571 when a new port was dropped.
1573 * Bug #8570 fixed - "Region to superblock" has been renamed to
1574 "Selection to superblock".
1576 * Bug #11518 fixed - CLR block-text was displayed out of the bounding box
1579 * Bug #11776 fixed - CMSCOPE did not take into account label&Id parameter.
1581 * Bug #12359 fixed - Xcos files have been converted to ZCOS to gain some space.
1583 * Bug #12384 fixed - Using a Modelica part linked with an explicit link to
1584 another Modelica part led to an algebraic loop error.
1586 * Bug #12387 fixed - The "Modelica initialize" setup menu option did not blur
1589 * Bug #12414 fixed - SWITCH_m block had different behaviors
1590 for different types of inputs.
1592 * Bug #12424 fixed - Calling lincos on a derivative block made Scilab crash.
1594 * Bug #12460 fixed - xcosPalGenerateAllIcons sometimes crashed Scilab.
1596 * Bug #12461 fixed - Cancelling zoom out by zooming in did not fully work.
1598 * Bug #12561 fixed - SELECT_m and RELAY_f did not behave as expected.
1600 * Bug #12568 fixed - "Recent files" menu entry is now below the "Open" one.
1602 * Bug #12590 fixed - Block shape style was removed on file loading.
1604 * Bug #12603 fixed - ZCOS files could contain blocks with modified (eg. invalid)
1607 * Bug #12619 fixed - DLR discrete block did not display LaTeX formula
1608 like CLR continuous block.
1610 * Bug #12651 fixed - The 'nw' scicos_simulate option did not work while
1611 passing a previous Info simulation status.
1613 * Bug #12664 fixed - Inverted pendulum French localization in the Xcos demonstrations was
1616 * Bug #12667 fixed - 'Recent Files' menu was not localized.
1618 * Bug #12731 fixed - Code generation produced erroneous block.
1620 * Bug #12732 fixed - Improper Copyright comments in the files were generated by the code
1623 * Bug #12796 fixed - There was some mismatches between implicit
1624 and explicit ports of superblocks.
1626 * Bug #12797 fixed - I/O blocks generated by "Selection to Superblocks" had
1629 * Bug #12868 fixed - There were several problems with PULSE_SC block.
1631 * Bug #12869 fixed - min and max were not defined but used in Xcos generated code.
1633 * Bug #12873 fixed - Scicos_flat produced an unexpected error after a diagram
1636 * Bug #12874 fixed - CSCOPE marks sizes were too small.
1638 * Bug #12877 fixed - Incorrect output port dimensions and types in GENSIN_f, GENSQR_f,
1639 STEP_FUNCTION and STEP blocks fixed.
1641 * Bug #12924 fixed - Blocks type 2004 was not handled as a valid block type.
1643 * Bug #12934 fixed - Separate compilation of a superblock could fail due to under
1644 determined signal sizes.