Commit bd5bf9af authored by Moises Bensadon's avatar Moises Bensadon
Browse files

Update UpdateEdits.md

parent 7e008caf
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
The change was adopted as shortened language names could be ambiguous to the user. The full language name is now displayed in the dropdown menu.

### Change 2: Crawler Progress Bar
Users indicated an improvement to add completion messages to crawler operations. Instead of just a simple completion message, a rendered loading bar gives real-time visual feedback to the user on the module's processing pace.
In order to fully implement Issue #11 we wanted to add a progress bar to show how much of the initial corpus has been scanned vs how much is left. This involves moving the build function into a seperate thread and passing the `JProgressBar` in to the crawler. 

### Change 3: Fix incorrect spelling of words in corrector (Issue #27)
The corrector now correctly identifies and suggests corrections for misspelled words. This change improves the corrector's accuracy and provides the user with more accurate suggestions. It does this by looking at the Levenshtein Distance between the misspelled word and the words in the trie, and suggesting the word with the smallest distance.
@@ -15,6 +15,9 @@ The corrector and checker no longer suggest changes when the sentence is correct
### Change 5: Added executable bash script for running the application (Issue #20)
The change was adopted to make it easier for users to run the application. The bash script `runVisual.sh` was added to the repository, which allows users to run the GUI application with a single command. This change improves the user experience by making it easier for users to run the application. Other bash scripts were also added to run the crawler, corrector, and checker separately in CLI.

### Change 6: Improved crawler printing
The text printed by the Crawler module wasn't that straightforward to read so we cleaned it up substantially.

## Other Changes

### Change 1: Pop-up Correction Feedback Selection
@@ -24,4 +27,4 @@ The implemented pop-up gives the user the ability to choose which corrections pr
The language selection in the GUI was also added to make the user experience more intuitive and allow them to easily change the language without having to shut down the application. In order to implement this change, the language selection was added to the GUI, and the corrector, checker, and crawler were updated to receive the language specific metadata file as an argument.

## Rejected Changes
There were no changes that we decied to reject. However, there were some issues raised due to miss use of the application (which were: #23, #24, and #28). These issues were resolved by providing more information on how to use the application in the README file.
We only decided to reject Issue #22 because we didn't think that selecting a file was that necessary compared to the other changes we made. However, there were some issues raised due to miss use of the application (which were: #23, #24, and #28). These issues were resolved by providing more information on how to use the application in the README file.