Skip to content

Commit

Permalink
Merge pull request #66 from boxine/fix#55
Browse files Browse the repository at this point in the history
Fix #55 missing "huey_monitor.css" file
  • Loading branch information
jedie authored Jan 7, 2022
2 parents 190a185 + 496c2da commit 3481a79
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ __pycache__

htmlcov
static
!huey_monitor/static
volumes

*.xml
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,10 @@ You must change your Django settings and replace the app name:

## History

* [dev](https://github.com/boxine/django-huey-monitor/compare/v0.4.3...master)
* [dev](https://github.com/boxine/django-huey-monitor/compare/v0.4.4...master)
* _tbc_
* [v0.4.4 - 07.01.2022](https://github.com/boxine/django-huey-monitor/compare/v0.4.3...v0.4.4)
* Add missing `huey_monitor.css` file
* [v0.4.3 - 07.01.2022](https://github.com/boxine/django-huey-monitor/compare/v0.4.2...v0.4.3)
* Add temporary `cumulate2parents` flag to `ProcessInfo` ([contributed by formacube](https://github.com/boxine/django-huey-monitor/pull/44))
* [v0.4.2 - 25.08.2020](https://github.com/boxine/django-huey-monitor/compare/v0.4.1...v0.4.2)
Expand Down
2 changes: 1 addition & 1 deletion huey_monitor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
default_app_config = 'huey_monitor.apps.HueyMonitorConfig'


__version__ = '0.4.3'
__version__ = '0.4.4'
7 changes: 7 additions & 0 deletions huey_monitor/static/huey_monitor.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
table.huey_monitor {
width:100%
}
td.exception_info {
overflow:scroll;
max-width: 45em;
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-huey-monitor"
version = "0.4.3"
version = "0.4.4"
description = "Django based tool for monitoring huey task queue: https://github.com/coleifer/huey"
authors = ["JensDiemer <[email protected]>"]
packages = [
Expand Down

0 comments on commit 3481a79

Please sign in to comment.