@@ -37,7 +37,7 @@ New features
37
37
Miscellaneous improvements
38
38
^^^^^^^^^^^^^^^^^^^^^^^^^^
39
39
40
- * Plot windows title now include the expression used to make the plot (the name of the array
40
+ * plot windows title now include the expression used to make the plot (the name of the array
41
41
in most cases) (closes :editor_issue:`233 `).
42
42
43
43
* when displaying an expression (computed array), the window title includes the actual expression
@@ -50,8 +50,8 @@ Miscellaneous improvements
50
50
* added support for Path objects (in addition to str representing paths) in :py:obj:`view()` and :py:obj:`edit()`.
51
51
See :issue:`896`.
52
52
53
- * When the editor displays currently defined variables (via ` debug()` ` edit()` or
54
- ` view()` without argument within user code or via an exception when run_editor_on_exception is active),
53
+ * when the editor displays currently defined variables (via :py:obj: `debug()` :py:obj: `edit()` or
54
+ :py:obj: `view()` without argument within user code or via an exception when run_editor_on_exception is active),
55
55
LArray functions are not made available systematically in the console anymore (what is available in the console is
56
56
really what was available in the users code). This closes :editor_issue:`199`.
57
57
@@ -63,11 +63,13 @@ Miscellaneous improvements
63
63
Fixes
64
64
^^^^^
65
65
66
- * fixed ` run_editor_on_exception` so that the larray editor is not opened when trying to stop a program (via Ctrl - C or
67
- the IDE stop button). Closes :editor_issue:` 231` .
66
+ * fixed :py:obj: `run_editor_on_exception() ` so that the larray editor is not opened when trying to stop a program
67
+ (via Ctrl-C or the IDE stop button). Closes :editor_issue:`231`.
68
68
69
- * fixed the larray editor window not closing when trying to stop a program (via ` Ctrl-C` or the IDE stop button) with
70
- such a window open (closes :editor_issue:` 231` ). With PyCharm for example, to actually close the program, the user
71
- had to press the IDE stop button a second time (which killed the program instead of stopping it cleanly).
69
+ * improved the situation when trying to stop a program (via `Ctrl-C` or the IDE stop button) with an LArray Editor
70
+ window open. It used to ignore such events altogether, forcing the IDE to send a "kill" event when pressing the
71
+ button a second time, which could leave some ressource open (e.g Excel instances). Now, the LArray Editor will
72
+ close itself when its parent program is asked to stop *but* so far, it will only do so when the window is active
73
+ again. This makes for an odd behavior but at least cleans up the program properly (closes :editor_issue:`231 `).
72
74
73
75
* when save command history fails, do not do so silently. Closes :editor_issue:`225`.
0 commit comments