marcrobledo / retroarch-playlist-editor

This web app allows you to create and edit .lpl playlist files for RetroArch.
https://www.marcrobledo.com/retroarch-playlist-editor/
Other
117 stars 14 forks source link

Add select / checkbox for regions #4

Closed justgook closed 2 years ago

justgook commented 6 years ago

For example I would like split games by playlist for each region ( Europe / USA/ japan)

Other solution would be create custom priority of removing dupes, for example I would like have first Europe, if exist, then USA, and only then JP, now it takes what first found

justgook commented 6 years ago

Or even better, when you remove duplicates, leave user choose which of list items should be left, like selectbox for each item

marcrobledo commented 5 years ago

I'm implementing a filter function so you type 'Europe' and it selects all content matching that search pattern, then you can do decide what to do with them or even check/uncheck more content.

marcrobledo commented 5 years ago

cf017c2bd4be8054f3aec2bc8798302a6ff8ee1e added a new feature that could be a solution for this issue.

Tweak playlist lets you:

Filter content will select automatically content that matches a pattern (which can be a simple text string or a more complex regular expression) user will type. For example: pattern=" \(.*?Japan.*?\)" would select all Japan content.

Let me know if it works for you and if you have any suggestion on how to improve it. Any feedback will be appreciated!