- Nothing changed yet.
- Add Django 1.10 and Python 3.5 compatibility (thanks @AlJohri)
- Django 1.6 compatibility
- Add the static folder to the MANIFEST.in
- Adding
django_logtail.urls
to your project'sROOT_URLCONF
is no longer necessary. All log tailing functionality has been moved to theModelAdmin
class in the form of the URLs and views. - Now that the view is served from the ModelAdmin, use the Media class to define jquery dependency, and use django's built-in jquery object rather than using a CDN.
- Added example/ project for easier testing.
- Update documentation.
- Use a CDN that does not serve gateway timeouts (mediatemple -> google)
- Load the jquery js over https where required using a protocol-relative url.
- Improved the quality of the javascript polling code
- The default poll time is now three seconds, rather than every one
- Now Django 1.3+ compatible (@victorgp)
- Add the ability to turn off polling (@scott-w)
- Escape log text to prevent html element lookalikes screwing up the formatting.
- Update the package MANIFEST.in to ensure that the README and changelog are included.
- Initial release.