##// END OF EJS Templates
Update what's new with 5.1 changes.
Matthias Bussonnier -
Show More
@@ -2,6 +2,34 b''
2 5.x Series
2 5.x Series
3 ============
3 ============
4
4
5 IPython 5.1
6 ===========
7
8 * Broken ``%timeit`` on Python2 due to the use of ``__qualname__``. :ghpull:`9804`
9 * Restore ``%gui qt`` to create and return a ``QApplication`` if necessary. :ghpull:`9789`
10 * Don't set terminal title by default. :ghpull:`9801`
11 * Preserve indentation when inserting newlines with ``Ctrl-O``. :ghpull:`9770`
12 * Restore completion in debugger. :ghpull:`9785`
13 * Deprecate ``IPtyhon.core.debugger.Tracer()`` in favor of simpler, newer, APIs. :ghpull:`9731`
14 * Restore ``NoOpContext`` context manager removed by mistake, and add `DeprecationWarning`. :ghpull:`9765`
15 * Add option allowing ``Prompt_toolkit`` to use 24bits colors. :ghpull:`9736`
16
17
18 True Color feature
19 ------------------
20
21 ``prompt_toolkit`` uses pygments styles for syntax highlighting. By default, the
22 colors specified in the style are approximated using a standard 256-color
23 palette. ``prompt_toolkit`` also supports 24bit, a.k.a. "true", a.k.a. 16-million
24 color escape sequences which enable compatible terminals to display the exact
25 colors specified instead of an approximation. This true_color option exposes
26 that capability in prompt_toolkit to the IPython shell.
27
28 Here is a good source for the current state of true color support in various
29 terminal emulators and software projects: https://gist.github.com/XVilka/8346728
30
31
32
5 IPython 5.0
33 IPython 5.0
6 ===========
34 ===========
7
35
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now