Commit 3f120224 authored by Manuel  Segimon's avatar Manuel Segimon
Browse files

Update UpdateEdits.md

parent 75c014f7
Loading
Loading
Loading
Loading
+10 −13
Original line number Diff line number Diff line
## Accepted feedback
## Chnges Made to the Application

### Change 1: Display Full Langauge Name in Dropdown Menu
The change was adopted as shortened langauge names could be ambiguous to the user.
### Change 1: Display Full Language Name in Dropdown Menu and Language Selection in GUI
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. While this was not part of the request, 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.

### Change 2: Pop-up Correction Selection
The implemented pop-up gives the user greater flexibility in choosing which correction is best.
### Change 2: Pop-up Correction Feedback Selection
The implemented pop-up gives the user the ability to choose which corrections provided by the corrector is best. This correction is then added to the trie node and used for future suggestions. This allows the user to have more control over the suggestions provided by the corrector and improves the user experience by making the corrector more accurate.

### Change 3: Crawler and GUI Speed
User feedback suggests the Crawler and GUI was performing slowly, modifications were made to make the modules faster. This creates a better user experience.

## Other Changes

### Change 5: Crawler Progress Bar
### Change 3: 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.

### Change 6:
### Change 4: Fix incorrect spelling of words in corrector
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.

## Rejected feedback
### Change 5: Corrector and Checker no longer suggest changes when the sentence is correct
The corrector and checker no longer suggest changes when the sentence is correct. This change improves the user experience by reducing the number of unnecessary suggestions.