mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Datasette 0.20: static assets and templates for plugins
This commit is contained in:
parent
e2750c7cc0
commit
72a7ae6859
3 changed files with 38 additions and 1 deletions
|
|
@ -1,2 +1,2 @@
|
||||||
__version_info__ = (0, 19)
|
__version_info__ = (0, 20)
|
||||||
__version__ = '.'.join(map(str, __version_info__))
|
__version__ = '.'.join(map(str, __version_info__))
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,41 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.20 (2018-04-20)
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
Mostly new work on the :ref:`plugins` mechanism: plugins can now bundle static assets and custom templates, and ``datasette publish`` has a new ``--install=name-of-plugin`` option.
|
||||||
|
|
||||||
|
- Add col-X classes to HTML table on custom query page
|
||||||
|
- Fixed out-dated template in documentation
|
||||||
|
- Plugins can now bundle custom templates, `#224 <https://github.com/simonw/datasette/issues/224>`_
|
||||||
|
- Added /-/metadata /-/plugins /-/inspect, `#225 <https://github.com/simonw/datasette/issues/225>`_
|
||||||
|
- Documentation for --install option, refs `#223 <https://github.com/simonw/datasette/issues/223>`_
|
||||||
|
- Datasette publish/package --install option, `#223 <https://github.com/simonw/datasette/issues/223>`_
|
||||||
|
- Fix for plugins in Python 3.5, `#222 <https://github.com/simonw/datasette/issues/222>`_
|
||||||
|
- New plugin hooks: extra_css_urls() and extra_js_urls(), `#214 <https://github.com/simonw/datasette/issues/214>`_
|
||||||
|
- /-/static-plugins/PLUGIN_NAME/ now serves static/ from plugins
|
||||||
|
- <th> now gets class="col-X" - plus added col-X documentation
|
||||||
|
- Use to_css_class for table cell column classes
|
||||||
|
|
||||||
|
This ensures that columns with spaces in the name will still
|
||||||
|
generate usable CSS class names. Refs `#209 <https://github.com/simonw/datasette/issues/209>`_
|
||||||
|
- Add column name classes to <td>s, make PK bold [Russ Garrett]
|
||||||
|
- Don't duplicate simple primary keys in the link column [Russ Garrett]
|
||||||
|
|
||||||
|
When there's a simple (single-column) primary key, it looks weird to
|
||||||
|
duplicate it in the link column.
|
||||||
|
|
||||||
|
This change removes the second PK column and treats the link column as
|
||||||
|
if it were the PK column from a header/sorting perspective.
|
||||||
|
- Correct escaping for HTML display of row links [Russ Garrett]
|
||||||
|
- Longer time limit for test_paginate_compound_keys
|
||||||
|
|
||||||
|
It was failing intermittently in Travis - see `#209 <https://github.com/simonw/datasette/issues/209>`_
|
||||||
|
- Use application/octet-stream for downloadable databses
|
||||||
|
- Updated PyPI classifiers
|
||||||
|
- Updated PyPI link to pypi.org
|
||||||
|
|
||||||
0.19 (2018-04-16)
|
0.19 (2018-04-16)
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
.. _plugins:
|
||||||
|
|
||||||
Plugins
|
Plugins
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue