Brian Pepple
Brian Pepple
I was hit with this also, and it has made it impossible to run the initial start-up wizard. This pull request is supposed to fix it, but it doesn't seem...
> I am currently having this issue and now my whole jellyfin instance is broken. Are you attempting to access it thru the web-ui, and if so, have you tried...
Wouldn't just sorting by Cover Date & Store Date, accomplish the same thing in most cases? This kind of numbering scheme is a fairly new phenomenon, so most issues would...
> @bpepple To my knowledge Cover Date and Store Date don't exist in the ComicInfo spec to start, just release date of the issue which is hit or miss in...
Drag and Drop support isn't a bad idea. It would require some Ajax comp-fu, but definitely something worthwhile to implement down the road. Depending how my week goes, I might...
That seems like a reasonable use-case, tho it makes sense to add them for all the various resources (issue, publisher, character, etc). With any luck I'll have some free time...
Thinking about this today, and noticed how I defined the existing urls: ``` app_name = "issue" urlpatterns = [ path("create/", IssueCreate.as_view(), name="create"), path("", IssueList.as_view(), name="list"), path("/", IssueDetail.as_view(), name="detail"), path("/update/", IssueUpdate.as_view(),...
Off the top of my head, I'm not sure how you'd do this cleanly without making the primary use case (local upload) sort of a mess. Do you have any...
Interesting... I'll have to go to their site and check it out. Thx.
I'm planning to add something like that in the future, but waiting for Many-to-Many fields (characters, teams, etc) history support to improve in [django-simple-history](https://github.com/jazzband/django-simple-history), (they just merged diff support 2...