You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Order By" used to have "Product Title", "Purchase Date", etc. Now it's replaced by an ambiguous "Descending" and "Ascending" selection, which seems to be product release date, and that's the only option.
Old style can be seen in https://github.com/AcrylicShrimp/dlsite-manager/blob/main/docs/img-list.png
Could the older sort options be added back in please (I always had it as order by purchase date, since anything I just bought should be at the top). In the interim, this could be better labelled to say what is being ordered.
The text was updated successfully, but these errors were encountered:
Old style order-by filter is gone, because many fields of product table are removed. This is needed to support indexing "not-owned" products, since DLsite is not giving much product informations for "not-owned" compared to the "owned" ones.
So currently, there is only one field that can be used for order-by filter, is "purchased date" field. The order-by filter after reworking is using this.
But I think the order-by filter behavior is somewhat broken.
Conclusion:
Let me fix the order-by filter to correctly sort products by purchased date.
But I'm not sure I can restore previous filter options. If you really need sort options other than "purchased date", let me know, I'll consider to re-implement them.
Ah, there was an error in my comment. Currently products are sorted by "registered at", not "purchased date". I'm sorry.
I'll change it to use "purchased date" in next release. And yes, I think I can use ctime or atime for "not-owned' ones. Which do you prefer? I think ctime is typically set by the product maker, so it's better to use atime maybe.
"Order By" used to have "Product Title", "Purchase Date", etc. Now it's replaced by an ambiguous "Descending" and "Ascending" selection, which seems to be product release date, and that's the only option.
Old style can be seen in https://github.com/AcrylicShrimp/dlsite-manager/blob/main/docs/img-list.png
Could the older sort options be added back in please (I always had it as order by purchase date, since anything I just bought should be at the top). In the interim, this could be better labelled to say what is being ordered.
The text was updated successfully, but these errors were encountered: