Skip to content
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 an AutoCorrect Preference Dialog #20

Merged
merged 27 commits into from
Apr 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c612705
Add an AutoCorrect Dialog
mominul Apr 1, 2018
53c46cf
Integrate AutoCorrect Dialog with TopBar
mominul Apr 1, 2018
c2ab8ae
Change name to CamelCase
mominul Apr 1, 2018
c380b07
Add column in List and create addEntries() function
mominul Apr 1, 2018
d60ca98
Link with libEngine
mominul Apr 1, 2018
1bb3ee8
Alhumdulillah! add items from autocorrect files :tada:
mominul Apr 1, 2018
cd91804
Implement widgets functionalities
mominul Apr 1, 2018
a64d012
Update AutoCorrect file and AutoCorrect.cpp
mominul Apr 1, 2018
59d2db6
Convert Banglish in AutoCorrect Dialog
mominul Apr 1, 2018
6a0e1be
Fix a typo
mominul Apr 1, 2018
d8538cc
Replicate Avro's behaviour
mominul Apr 1, 2018
c8774aa
Fix AutoCorrect suggestion making
mominul Apr 2, 2018
2f24ffa
Behave differently if the current item is a smiley.
mominul Apr 2, 2018
04cd342
Simplify code :wink:
mominul Apr 2, 2018
43a48ec
Make the dialog not resizable
mominul Apr 2, 2018
78beee7
load Avro Phonetic separately
mominul Apr 2, 2018
0976b62
Alhumdulillah, implement basic autocorrect open/save functionality
mominul Apr 2, 2018
9e12b59
Sort list
mominul Apr 2, 2018
52af908
Refactor
mominul Apr 2, 2018
3fb0fe0
Include items from users autocorrect file in the dialog
mominul Apr 2, 2018
2b89a99
Clear treelist
mominul Apr 3, 2018
baff41f
prefer user's entry if a conflict occurs
mominul Apr 3, 2018
f308dc0
Fix the Segmentation fault
mominul Apr 4, 2018
3e09295
Restart ibus when saving autocorrect entries
mominul Apr 4, 2018
e7cc5c5
trim the inputs
mominul Apr 4, 2018
69f4fb5
Update to Qt version 5.10
mominul Apr 4, 2018
a3adeff
Update changelog
mominul Apr 4, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ compiler:
- g++
- clang
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-qt551-trusty
- sudo add-apt-repository --yes ppa:beineri/opt-qt-5.10.1-trusty
- sudo apt-get update -qq
- sudo apt-get install libibus-1.0-dev qt55base qt55declarative
- source /opt/qt55/bin/qt55-env.sh
- sudo apt-get install libibus-1.0-dev qt510base qt510declarative
- source /opt/qt510/bin/qt510-env.sh
before_script:
- mkdir build
- cd build
- cmake .. -DCMAKE_INSTALL_PREFIX='/usr'
- cmake ..
script:
- make
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
"string_view": "cpp",
"array": "cpp",
"initializer_list": "cpp",
"chrono": "cpp"
"chrono": "cpp",
"qmessagebox": "cpp",
"qtreewidget": "cpp",
"atomic": "cpp",
"qvariant": "cpp",
"qmap": "cpp"
}
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Change Log
## 1.3.0 - In development
* OpenBangla Keyboard now features a Phonetic AutoCorrect Preference Dialog [#20](https://github.com/OpenBangla/OpenBangla-Keyboard/pull/20). User now can view/edit/add AutoCorrect entries.
* Let users turn off candidate box [#11](https://github.com/OpenBangla/OpenBangla-Keyboard/issues/11)
* Build system improvement. There is no need to pass `CMAKE_INSTALL_PREFIX` when building.
* Now supports RPM packaging.
Expand Down
Loading