Tool Others F95Checker [WillyJL]

5.00 star(s) 25 Votes

leavy

VN Enthusiast
Donor
Jul 24, 2020
60
87
btw for those that were asking for it, i found a crappy workaround to make tabs reorderable. its available in latest beta. i hate how its coded, but it seems to work surprisingly well for what it is
Would it be possible for the same workaround to be applied to labels? Or the label context menu in the sidebar to include Add label, that adds a new label below the current one?

The max is 64, 1 is reserved for the default 'Not Labelled' column, which leaves 63 for user-defined labels.
I could try to reduce the 72 a bit, as there is some intentional blanks to maintain the order. But I could see the list expanding later...

Is there a launch argument to force List or Grid view in case I click Kanban accidentally? Or I would edit the display value in the database again.
 

FaceCrap

Ghost of torrents passed
Donor
Oct 1, 2020
1,533
1,067
I could try to reduce the 72 a bit, as there is some intentional blanks to maintain the order. But I could see the list expanding later...

Is there a launch argument to force List or Grid view in case I click Kanban accidentally? Or I would edit the display value in the database again.
Sadly not, but in itself not a bad idea. For now, the only 'fix' would indeed be to set 'display_mode' in the settings to either 1 (list view) or 2 (grid view) if you accidentally ended up in Kanban view again.
Although there's a PR up now to popup a warning when trying to add a label and having already reached the max of 63. Effectively this would also prevent adding more than the imposed limit, which would also make having a launch argument a moot point.
 
Last edited:
  • Like
Reactions: WillyJL

KaosKally

Member
Dec 21, 2019
289
325
Did you perhaps disable them in the Windows notification settings at one point and forgot about it?
Nope, i haven't even been close to notifications, All i did was remove the old build and add the new build. Nothing more, nothing less.

Ok so... I checked notification settings and for some reason it was off.... Now let's see if i get any notification.

Last Edit: Seems the issue was on me... Now I have to figure out what the heck happened that disabled my notifications.
 
Last edited:

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,483
1,300
Would it be possible for the same workaround to be applied to labels? Or the label context menu in the sidebar to include Add label, that adds a new label below the current one?



I could try to reduce the 72 a bit, as there is some intentional blanks to maintain the order. But I could see the list expanding later...

Is there a launch argument to force List or Grid view in case I click Kanban accidentally? Or I would edit the display value in the database again.
the workaround i mentioned for tabs is due to how tabs work in imgui. imgui lets the user reorder them, but has no way for the program to find out the current order of the tabs. the workaround i made is to try and keep track of when the user interacts with the tab labels, so it isnt getting information from imgui, it is trying to mimic its behavior in a parallel state, which means its not necessarily perfect and could theoretically get out of sync with what imgui displays.

anyway, labels arent tabs, so they wouldnt need this workaround. i would just need to implement a way to change their order, and ive been thinking about it for a while, so i may do that somewhat soon

also, aswell as merging facecrap's warning about too many labels, i might make it so it allows mroe than 63 labels while disabling kanban view and automatically switching back if it was changed in the database
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,483
1,300
It's not really complaining if you report it through 'Other' with the reason. Like you said, just human error, and errors should be corrected. Worse that can happen is the report gets denied.
id rather not bother forum staff, theyre already working out of their own will. i might finally give up on accuracy and just make the last updated date be when the last change of version number was detected on the cache api. will need some rework but shouldnt be too bad
 
  • Like
Reactions: WhiteVanDaycare

KaosKally

Member
Dec 21, 2019
289
325
id rather not bother forum staff, theyre already working out of their own will. i might finally give up on accuracy and just make the last updated date be when the last change of version number was detected on the cache api. will need some rework but shouldnt be too bad
That would be more reliable as well i think, despite not being as accurate, right?
 
  • Like
Reactions: WillyJL

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,483
1,300
Yep definitely it was an issue on my end and I am still not sure why it disabled itself. Either way, good that is fixed now. View attachment 4726484
does it also have a button for "open in browser" when the notification is for forum alerts? i know it does on linux, its part of the reworked notification system, but havent tried it on windows
 

KaosKally

Member
Dec 21, 2019
289
325
does it also have a button for "open in browser" when the notification is for forum alerts? i know it does on linux, its part of the reworked notification system, but havent tried it on windows
I will check that on the new refresh when i will have some games updated, but by the looks of it, nope. Will see in a short while tho oh and i have the browser part set to external browser, not sure if that will make a difference.
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,483
1,300
I will check that on the new refresh when i will have some games updated, but by the looks of it, nope. Will see in a short while tho oh and i have the browser part set to external browser, not sure if that will make a difference.
im not talking about games, im talking about forum alerts:
1744139040395.png
 

leavy

VN Enthusiast
Donor
Jul 24, 2020
60
87
also, aswell as merging facecrap's warning about too many labels, i might make it so it allows mroe than 63 labels while disabling kanban view and automatically switching back if it was changed in the database
That would be the best solution for the current situation without a full UI overhaul. As Tabs in List/Grid view replace Kanban view, I get to keep my many labels, but Kanban gets disabled instead. Others can still use Kanban, but with limited number of labels. (y)
 
Mar 23, 2021
182
179
id rather not bother forum staff, theyre already working out of their own will. i might finally give up on accuracy and just make the last updated date be when the last change of version number was detected on the cache api. will need some rework but shouldnt be too bad
Add a date field for 'Last Change Detected'?
 
Mar 23, 2021
182
179
the workaround i mentioned for tabs is due to how tabs work in imgui. imgui lets the user reorder them, but has no way for the program to find out the current order of the tabs. the workaround i made is to try and keep track of when the user interacts with the tab labels, so it isnt getting information from imgui, it is trying to mimic its behavior in a parallel state, which means its not necessarily perfect and could theoretically get out of sync with what imgui displays.

anyway, labels arent tabs, so they wouldnt need this workaround. i would just need to implement a way to change their order, and ive been thinking about it for a while, so i may do that somewhat soon

also, aswell as merging facecrap's warning about too many labels, i might make it so it allows mroe than 63 labels while disabling kanban view and automatically switching back if it was changed in the database
If you are adding warnings, how about my warning when removing more than one exe? Or disable the right hand 'Clear Exes' button when more than one exe exists?
1744162458237.png
 

Xakorik

Worshiper of Lerd0
Donor
Jr. Uploader
Sep 27, 2018
472
530
Quick question, which view is kanban?

Also, my Add Exe menu is bugged, it no longer autodetects and not at the root of my game folder, it keeps starting in one of my game folders that I manually selected before.
 
Last edited:

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,483
1,300
Quick question, which view is kanban?
third one

Also, my Add Exe menu is bugged, it no longer autodetects and not at the root of my game folder, it keeps starting in one of my game folders that I manually selected before.
what game are you adding an exe for, what is your default exe dir, and what folder does it show when you add exe?
 

Xakorik

Worshiper of Lerd0
Donor
Jr. Uploader
Sep 27, 2018
472
530
third one
That's the view I always use then.
what game are you adding an exe for, what is your default exe dir, and what folder does it show when you add exe?
After the bug started it happens for every game afterwards, my default is D:\NSFW\Games and it keeps starting at D:\NSFW\Games\Share-girl House - My Girlfriend Is Shared by Others which is a game that I added and the bug started after trying to launch that game from the checker.
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,483
1,300
After the bug started it happens for every game afterwards, my default is D:\NSFW\Games and it keeps starting at D:\NSFW\Games\Share-girl House - My Girlfriend Is Shared by Others which is a game that I added and the bug started after trying to launch that game from the checker.
i find that hard to believe. it will show a subdirectory instead of the set exe dir only if the subdirectory name matches exactly the game name, or if it fuzzy matches with atleast 85% accuracy. it also tries the same with the game category and developer name. but with that kind of folder name, nothing will have 85% match except that game itself. you probably accidentally changed the set exe dir, check what it says by hovering the question mark in manage > set exe dir
 

Xakorik

Worshiper of Lerd0
Donor
Jr. Uploader
Sep 27, 2018
472
530
i find that hard to believe. it will show a subdirectory instead of the set exe dir only if the subdirectory name matches exactly the game name, or if it fuzzy matches with atleast 85% accuracy. it also tries the same with the game category and developer name. but with that kind of folder name, nothing will have 85% match except that game itself. you probably accidentally changed the set exe dir, check what it says by hovering the question mark in manage > set exe dir
It's still set correctly, I even redid it just incase.
 
  • Thinking Face
Reactions: WillyJL

Danv

Well-Known Member
Aug 21, 2020
1,443
2,006
on "11.1 beta 1610" right now - is it possible to revert update notifications in the corner back to old style?
they are too big and stay for too long, completely blocking that corner and even more, for some reason
tried checking "compact timeline", not sure if it even related - it did kill pictures in notification (just replacing it with nothing of same size), but whole thing still as big and slow
 
5.00 star(s) 25 Votes