You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
* Fixed bug where `history -v` was sometimes showing raw and expanded commands when they weren't different
5
5
* Fixed bug where multiline commands were having leading and ending spaces stripped. This would mess up quoted
6
6
strings that crossed multiple lines.
7
+
* Fixed a bug when appending to the clipboard where contents were in reverse order
7
8
* Enhancements
8
9
* Greatly simplified using argparse-based tab completion. The new interface is a complete overhaul that breaks
9
10
the previous way of specifying completion and choices functions. See header of [argparse_custom.py](https://github.com/python-cmd2/cmd2/blob/master/cmd2/argparse_custom.py)
@@ -31,6 +32,9 @@
31
32
sort, but it can be changed to a natural sort by setting the value to NATURAL_SORT_KEY.
32
33
*`StatementParser` now expects shortcuts to be passed in as dictionary. This eliminates the step of converting the
33
34
shortcuts dictionary into a tuple before creating `StatementParser`.
35
+
* Renamed `Cmd.pyscript_name` to `Cmd.py_bridge_name`
36
+
* Renamed `Cmd.pystate` to `Cmd.py_locals`
37
+
* Renamed `PyscriptBridge` to `PyBridge`
34
38
35
39
## 0.9.14 (June 29, 2019)
36
40
* Enhancements
@@ -122,7 +126,7 @@
122
126
of a `cmd2` based app, you will need to update your code to use `.history.get(1).statement.raw` instead.
123
127
* Removed internally used `eos` command that was used to keep track of when a text script's commands ended
124
128
* Removed `cmd2` member called `_STOP_AND_EXIT` since it was just a boolean value that should always be True
125
-
* Removed `cmd2` member called `_should_quit` since `PyscriptBridge` now handles this logic
129
+
* Removed `cmd2` member called `_should_quit` since `PyBridge` now handles this logic
126
130
* Removed support for `cmd.cmdqueue`
127
131
*`allow_cli_args` is now an argument to __init__ instead of a `cmd2` class member
0 commit comments