Skip to content

Commit b1d3c0c

Browse files
committed
Preparing for release to PyPi
1 parent 617f5aa commit b1d3c0c

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,28 @@ admin.py
7676
admin.site.register(TopLevel, TopLevelAdmin)
7777

7878

79+
Minifying Javascript
80+
--------------------
81+
82+
Released versions of this library should have a minified version of the js.
83+
84+
Minification is done with uglifyjs. If npm is installed on your system,
85+
you can install uglifyjs with the command:
86+
```sh
87+
npm install -g uglify-js
88+
```
89+
90+
Then change to the directory where the file 'inlines-nested.js' and
91+
run the following command:
92+
```sh
93+
uglifyjs --compress --mangle --output ./inlines-nested.min.js -- inlines-nested.js
94+
```
7995

8096
Changelist
8197
----------
8298

99+
0.4.5 - Support django 4.0 and django-csp
100+
83101
0.4.4 - Add formset:added and formset:removed events (#97)
84102

85103
0.4.3 - Update media so it expects to find jquery in the right place. (#75)

nested_inline/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = (0, 4, 4)
1+
__version__ = (0, 4, 5)

nested_inline/static/admin/js/inlines-nested.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)