-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add domain based rules #18
Comments
Oh sorry, just noticed you have enabled Discussions. I should have posted it there. |
Hi Deekshith, thanks for your feedback ❤️ After cleaning an URL, the app presents the number of removed parameters to the user. This is currently based on the number of found regex groups. So the regex would have to be slightly modified to catch each parameter individually. I will certainly work on this. Thank you. |
This has been added to version 0.5.0. The update should be available on Google Play soon and on F-Droid in a few days. |
Woohoo! Awesome @svenjacobs 😃🎉 |
Unfortunately I forgot to add a database migration to 0.5.0. Should the app crash immediately after startup, please just delete app data and everything should be fine. Sorry for the inconvenience. |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
Technically, the string that |
First of all, thanks for this project! Found this from F-droid circles and loved the idea❣️
What do you think about adding domain specific rules to clean URLs like these:
https://www.amazon.com/BEAST-40oz-Black-Tumbler-Stainless/dp/B08GTPXJBL/?_encoding=UTF8&smid=AHFMMW9O1FG2X&pf_rd_p=d11c243d-9bba-498d-bb87-2e184199c856&pd_rd_wg=zP7f5&pf_rd_r=43Z35PH2XY62GBS2WZ7J&pd_rd_w=2b5Rj&pd_rd_r=7cd0fb38-2890-4adc-b51e-b12056bd09ec
➔
https://www.amazon.com/BEAST-40oz-Black-Tumbler-Stainless/dp/B08GTPXJBL/
May be the rule can be:
www.amazon.com/(.*)/dp/([0-9A-Z]+)/* -> www.amazon.com/$1/dp/$2/
Great app and clean code! Thank you!!
The text was updated successfully, but these errors were encountered: