It is currently Fri Mar 29, 2024 8:18 am

All times are UTC + 1 hour [ DST ]




Post new topic Reply to topic  [ 19 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Filter recently updated
PostPosted: Thu Jan 19, 2023 4:19 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
When a new update is available of coolector, it says 800 movies and series added.

Is there any way to have a filter from which I can check which are the movies added in this update?
So that I can easily browse those 400-800 movies and make some of them as wishlist.

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Thu Jan 19, 2023 8:39 pm 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
A good part of the movies that were added is listed here:

https://www.coollector.com/viewtopic.php?f=5&t=116

;)


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Thu Jan 19, 2023 8:56 pm 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
My previous answer was tongue-in-cheek, but if I think about it more seriously, it would be very easy to implement, at least technically. Indeed to display the 800 latest added movies I only have to take the 800 with the biggest Ids.

The main issue is how to present such a filter... It would probably be about "displaying an Id range". When the user clicks the filter, he'd have to input a min Id and a max Id (the app would inform the user about the value of the biggest Id). Of course other filters could be applied (year, country, genre...).

This improvement isn't prioritary, but it's interesting and I keep it in the back of my mind.

If you have ideas, suggestions, comments, they're welcome!


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 2:32 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
From a developer perspective, I have few ideas how it can be achieved :

Method 1 :
In .cool file, for the next release introduce a variable which will have the latest row ID of the last entry.
When user update next time, and lets say in Tools menu add a new option "Newly Added",
when user clicks on it, it will display (a popup like recommendation witl listview) all the movies/series added after that id.
eg: "SELECT * FROM table_name WHERE id > :id_in_cool"

In that once user finishes checking, user can click a button "All checked". When clicked, the latest row ID will be stored in the cool variable.

Method 2 :
It will be similar to method 1, but can be accessed from the "Add/Remove Filter" for "Newly Added Movies"


Method 2 will be the better way.

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 3:06 pm 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
I wanted an Id range to be able to go back anywhere in time but it's you who's right, focusing the feature only on the latest additions makes it much easier for the user to understand :V:

Thank you very much!


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 3:13 pm 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
If I include inside the database the size of the previous databases, we could have a new filter named "newly added to Coollector" that would have the values "added by version 4.20.9", "added by version 4.20.8", "added by version 4.20.7", etc...


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 3:39 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
(cool) Hector wrote:
I wanted an Id range to be able to go back anywhere in time


Well I am not sure about the db colums. If there is a column you are maintaining that when the movie/series is added in the db. then ID range can be implemented with a filter like Movies added in Jan 2023, Movies added in Dec 2022 etc

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 3:39 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
(cool) Hector wrote:
If I include inside the database the size of the previous databases, we could have a new filter named "newly added to Coollector" that would have the values "added by version 4.20.9", "added by version 4.20.8", "added by version 4.20.7", etc...


Yes this one will make more sense.

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 6:27 pm 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
Abubakar Siddique wrote:
then ID range can be implemented with a filter like Movies added in Jan 2023, Movies added in Dec 2022 etc

You're right, adding a date would be more user-friendly.

For example "added v.4.20.9 (17 JAN 2023)".


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 6:41 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
Yes. Hope to see this feature soon.

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 6:50 pm 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
Abubakar Siddique wrote:
Yes. Hope to see this feature soon.

Unfortunately not soon, I'm sorry.

I've very tempted to add this feature because it's quite easy to do, but I must stay focused on the killer features that I'm currently working on, they're game-changers!


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Sun Jan 22, 2023 7:17 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
Love to see new features.

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Thu Mar 09, 2023 12:14 am 
Offline
User avatar

Joined: Tue Sep 27, 2005 2:28 am
Posts: 7636
Version 4.21.3 brings a new filter called "Latest Additions". Hope you'll like it :D


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Fri Mar 10, 2023 2:24 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
Cool, finally that will help a lot to find new movies to watch and mark them wished easily.

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
 Post subject: Re: Filter recently updated
PostPosted: Fri Mar 10, 2023 2:28 pm 
Offline
User avatar

Joined: Fri Jul 27, 2012 1:24 pm
Posts: 224
Location: India
One little suggestion,

I want to filter with the following criteria :
All MOVIES which are
ADDED BY LAST 10 UPDATES and
NOT OWNED also
NOT WISHED.

so that I can get only those movies which I dont have and neither I have marked them as wished.

But I am unable to achieve that since NOT OWNED and NOT WISHED is within the same dropdown

_________________
- Abubakar Siddique
1361st Coollector Forum User :yahoo: :yahoo:
Youtube: www.youtube.com/IOGuru
Play Store: [COMING_SOON]


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 19 posts ]  Go to page 1, 2  Next

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 38 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  


Powered by phpBB © 2024 phpBB Group