-
Notifications
You must be signed in to change notification settings - Fork 7
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
Fixed jaro_distance issue and macOS updates #13
Open
LavamasterYT
wants to merge
48
commits into
daijro:main
Choose a base branch
from
LavamasterYT:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Use githubusercontent instead of discord cdn
Add disclaimer and CLI usage
Change default transparency value to 95 instead of 97 (looks nicer)
- Change discord cdn link for tesseract-ocr to dropbox - Remove "quiz" from example (to not promote cheating)
- Fix Bing search - Add Google and Startpage scrapers (change in ui settings) - Fix headers + add header randomizer - Completely remove Brainly from the project due to new WAF + slow processing time - Fix delay in cursor restoring after OCR - Manually calculate selection rectangle for OCR - Change minimum value for window transparency slider to 5% - Upgrade Pillow and pytesseract to fix security concerns - Add requests_html, fake_headers, and their dependencies to requirements.txt
Add macOS support
Add settings, and shortcuts
- Google scraper is much fasterm and randomizes domains to avoid CAPTCHA blocks. - Bing block has been bypassed by creating cookies before sending search requests - Google is now the default search engine Works as of December 2022.
- Change item view scrolling to ScrollPerPixel - Much smoother scrolling experience
Fix scraper returning poor results on longer queries
- Escape search query - Repeat last update for startpage - Change default engine back to Bing
Bumps [certifi](https://github.com/certifi/python-certifi) from 2021.10.8 to 2022.12.7. - [Release notes](https://github.com/certifi/python-certifi/releases) - [Commits](certifi/python-certifi@2021.10.08...2022.12.07) --- updated-dependencies: - dependency-name: certifi dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [lxml](https://github.com/lxml/lxml) from 4.8.0 to 4.9.1. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](lxml/lxml@lxml-4.8.0...lxml-4.9.1) --- updated-dependencies: - dependency-name: lxml dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.1.0 to 9.3.0. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](python-pillow/Pillow@9.1.0...9.3.0) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Bump certifi from 2021.10.8 to 2022.12.7
Bump pillow from 9.1.0 to 9.3.0
Bump lxml from 4.8.0 to 4.9.1
- Only allow once instance to be ran at a time - Search C:\Program Files\ for tesseract path - Remove redundant findChild lines
- Added experimental support for typing while the window focus safety lock is enabled. Works by listening for global key inputs, and forwards them to the search bar - Requires mouse dependency to detect when user clicks off window
Added support for Num Lock and Caps Lock when window focus safety lock is enabled
- Merge keyboard and mouse hook threads - Lose focus on windows key - Add comments - Fix error when losing focus on search bar without window safety lock on
- Ignore key events with None name - Add Ctrl+A to select all
- Use logging library - Fix Quizlet scraper - Add an experimental scraper for ChatGPT through Merlin. - New --chatgpt flag will retrieve the best answer from the flashcard results and an explanation with ChatGPT. No login required!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Removed the jaro_distance function that is now obsolete and replaced with jaro_similarity.
A bunch of macOS updates