Skip to content

Commit 7ff011a

Browse files
committed
docs: document new features in Analysis View
1 parent 33a8e4b commit 7ff011a

26 files changed

+175
-78
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- feat: implement showing dataset tables in the analysis view (#141)
55
- enh: more Quick View default choices than "deform" and "area_um"
66
- enh: update icon theme
7+
- docs: document new features in Analysis View
78
- setup: pygments (for json formatting) is now an explicit dependency
89
- setup: bump dclab to 0.62.9
910
- ref: simplify logic in Analysis View

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
#
102102
# This is also used if you do content translation via gettext catalogs.
103103
# Usually you set "language" from the command line for these cases.
104-
language = None
104+
language = "en"
105105

106106
# List of patterns, relative to source directory, that match files and
107107
# directories to ignore when looking for source files.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _index:
22

33

4-
.. image:: logo/shapeout2_h50.png
4+
.. figure:: logo/shapeout2_h50.png
55

66
|
77

docs/scrots/make_scrots_qg_dcor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
app = QApplication(sys.argv)
1111

12-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
12+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1313

1414
mw = ShapeOut2()
1515
mw.settings.setValue("check for updates", 0)

docs/scrots/make_scrots_qg_emodulus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
app = QApplication(sys.argv)
1414

15-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
15+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1616

1717
mw = ShapeOut2()
1818
mw.settings.setValue("check for updates", 0)

docs/scrots/make_scrots_qg_export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
app = QApplication(sys.argv)
1010

11-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
11+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1212

1313
mw = ShapeOut2()
1414
mw.settings.setValue("check for updates", 0)

docs/scrots/make_scrots_qg_extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
app = QApplication(sys.argv)
1313

14-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
14+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1515

1616
mw = ShapeOut2()
1717
mw.settings.setValue("check for updates", 0)

docs/scrots/make_scrots_qg_lme4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
app = QApplication(sys.argv)
1414

15-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
15+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1616

1717
mw = ShapeOut2()
1818
mw.settings.setValue("check for updates", 0)

docs/scrots/make_scrots_qg_lme4_diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
app = QApplication(sys.argv)
1414

15-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
15+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1616

1717
mw = ShapeOut2()
1818
mw.settings.setValue("check for updates", 0)

docs/scrots/make_scrots_qg_statistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
app = QApplication(sys.argv)
1010

11-
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.C))
11+
QtCore.QLocale.setDefault(QtCore.QLocale(QtCore.QLocale.Language.C))
1212

1313
mw = ShapeOut2()
1414
mw.settings.setValue("check for updates", 0)

0 commit comments

Comments
 (0)