-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: django shortcuts styling (#481)
* Fix: Shortcut positioning * Add: CSS with shortcuts support * Bump version to 3.2.2 * add info to changelog and reademe.md * Update readme Co-authored-by: Mark Walker <[email protected]>
- Loading branch information
Showing
7 changed files
with
83 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
__version__ = '3.2.1' | ||
""" | ||
See PEP 440 (https://www.python.org/dev/peps/pep-0440/) | ||
Release logic: | ||
1. Increase version number (change __version__ below). | ||
2. Ensure the static bundle is upto date with ``nvm use && gulp icons && gulp sass bundle`` | ||
3. Assure that all changes have been documented in CHANGELOG.rst. | ||
4. In setup.py check that | ||
- versions from all third party packages are pinned in ``REQUIREMENTS``. | ||
- the list of ``CLASSIFIERS`` is up-to-date. | ||
5. git add djangocms_admin_style/__init__.py CHANGELOG.rst setup.py | ||
6. git commit -m 'Bump to {new version}' | ||
7. git push | ||
8. Assure that all tests pass on https://github.com/django-cms/djangocms-admin-style/actions | ||
9. Create a new release on https://github.com/django-cms/djangocms-admin-style/releases/new | ||
10. Publish the release when ready | ||
11. Github actions will publish the new package to pypi | ||
""" | ||
__version__ = '3.2.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
djangocms_admin_style/static/djangocms_admin_style/css/djangocms-admin.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
|
||
from setuptools import find_packages, setup | ||
|
||
from djangocms_admin_style import __version__ | ||
|
||
|
||
REQUIREMENTS = [] | ||
|
||
|
@@ -35,6 +37,7 @@ | |
'Framework :: Django CMS :: 3.10', | ||
'Framework :: Django CMS :: 3.11', | ||
'Framework :: Django CMS :: 4.0', | ||
'Framework :: Django CMS :: 4.1', | ||
'Topic :: Internet :: WWW/HTTP', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Software Development', | ||
|
@@ -46,7 +49,7 @@ | |
|
||
setup( | ||
name='djangocms-admin-style', | ||
version='3.2.1', | ||
version=__version__, | ||
author='Divio AG', | ||
author_email='[email protected]', | ||
maintainer='Django CMS Association and contributors', | ||
|