Skip to content

Commit 3d66962

Browse files
committed
Get ready for release 1.1.1
1 parent 488ccfb commit 3d66962

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

NEWS.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
1.1.1
2+
-----
3+
4+
* We require Mathics3 1.1.1 for features added in that to support unicode and user-formatting
5+
* Start to support Unicode as a CLI option: `--unicode/--no-unicode`. The setting name is ``Settings`$UseUnicode``.
6+
* Add a lot of Unicode symbols and the WL esc sequences. For example letters with dots under them. These are the "Formal" parmaters/letters.
7+
* Handle Unicode versus WL character code mismatches, , in particular Unicode directed and undirected edges.
8+
* Support for ``PyMathics`Graph`` (to be released on PyPI soon).
9+
* Some XDG compatibility
10+
* Toleratte MS/Windows pyreadline which doesn't handle `remove_history_item`
11+
* Show pygments styles when an invalid one is given
12+
* Use "inkpot" for dark backgrounds and "colorful" for light backgrounds.
13+
* Add settings.m to holds `mathicsscript`-specific definitions `Settings` and their default values. Settings include
14+
- ``Settings`$ShowFullFormInput``
15+
- ``Settings`$PygmentsStyle``
16+
- ``Settings`$PygmentsShowTokens``
17+
- ``Settings`$UseUnicode`` (also mentioned above)
18+
19+
A lot of code for handling graph formatting is here but will eventually be moved to a backend formattting module which hasn't been written yet.
20+
21+
122
1.1.0
223
-----
324

mathicsscript/settings.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
Note this is for input entered, not the output of the evaluated result.
1313
"
1414

15-
Settings`$ShowFullFormInput = 0
15+
Settings`$ShowFullFormInput = False
1616
Settings`$PygmentsStyle::usage = "This sets the Pygments style used to colorize output. The value should be a string.
1717
1818
The default value changes background depending on whether the terminal has a light or dark background. You can also set the color style used on the command with the ``--style`` option, or look at the variable ```Settings`PygmentsStylesAvailable```. Or it can be set in the settings.m file."
1919

20-
Settings`$PygmentsShowTokens::usage = "Setting this 1 will show Pygments tokenization of the output."
20+
Settings`$PygmentsShowTokens::usage = "Setting this True will show Pygments tokenization of the output."
21+
Settings`$UseUnicode::usage = "Setting this False wil1 avoid unicode in output. The default is to use Unicode."

mathicsscript/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# This file is suitable for sourcing inside POSIX shell as
44
# well as importing into Python. That's why there is no
55
# space around "=" below.
6-
__version__="1.1.1dev" # noqa
6+
__version__="1.1.1" # noqa

0 commit comments

Comments
 (0)