This repository was archived by the owner on Jan 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +40
-1
lines changed
Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 33 Release History
44---------------
55
6+ 0.8.0 (2015-01-08)
7+ ++++++++++++++++++
8+
9+ - Add styles. Provides general capability to access and manipulate paragraph,
10+ character, and table styles.
11+
12+ - Add ParagraphFormat object, accessible on Paragraph.paragraph_format, and
13+ providing the following paragraph formatting properties:
14+
15+ + paragraph alignment (justfification)
16+ + space before and after paragraph
17+ + line spacing
18+ + indentation
19+ + keep together, keep with next, page break before, and widow control
20+
21+ - Add Font object, accessible on Run.font, providing character-level
22+ formatting including:
23+
24+ + typeface (e.g. 'Arial')
25+ + point size
26+ + underline
27+ + italic
28+ + bold
29+ + superscript and subscript
30+
31+ The following issues were retired:
32+
33+ - Add feature #56: superscript/subscript
34+ - Add feature #67: lookup style by UI name
35+ - Add feature #98: Paragraph indentation
36+ - Add feature #120: Document.styles
37+
38+ **Backward incompatibilities **
39+
40+ Paragraph.style now returns a Style object. Previously it returned the style
41+ name as a string. The name can now be retrieved using the Style.name
42+ property, for example, `paragraph.style.name `.
43+
44+
6450.7.6 (2014-12-14)
746++++++++++++++++++
847
Original file line number Diff line number Diff line change 22
33from docx .api import Document # noqa
44
5- __version__ = '0.7.6 '
5+ __version__ = '0.8.0 '
66
77
88# register custom Part classes with opc package reader
You can’t perform that action at this time.
0 commit comments