File tree Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ ausadhi = "औषधि"
54
54
kankro = " काँक्रो"
55
55
kangres = " काँग्रेस"
56
56
chapagain = " चापागाईँ"
57
+ tapai = " तपाईँ"
57
58
58
59
# Removed big file to ease resource usage
59
60
# Will add littele by little while typing needed words.
Original file line number Diff line number Diff line change 26
26
# Symbols are enclosed in single quotes to avoid parsing conflicts in some file formats (e.g., TOML).
27
27
# These map specific Roman symbols to Devanagari diacritics and punctuation.
28
28
'*' = " ं" # Anusvara
29
- '& ' = " ँ" # Candrabindu
29
+ '** ' = " ँ" # Candrabindu
30
30
'.' = " ।" # Purnabiram (Devanagari danda)
31
31
'\\' = " ्" # Halant (Virama)
32
32
'/' = " /" # Slash
50
50
'"' = ' "' # Double quote
51
51
"'" = " '" # Single quote
52
52
'~' = " ~" # Tilde
53
+ '&' = " &" # Ampersand
53
54
54
55
# Special Words:
55
56
# Direct mapping for specific Roman words to their Devanagari forms.
Original file line number Diff line number Diff line change 2
2
set -eEuo pipefail
3
3
4
4
# This line will be replaced by the release script with the correct version
5
- VERSION=2.0.1
5
+ VERSION=2.0.2
6
6
7
7
REPO=" khumnath/fcitx5-lekhika"
8
8
ARCHIVE=" fcitx5-lekhika-${VERSION} .tar.gz"
Original file line number Diff line number Diff line change @@ -72,8 +72,8 @@ void NepaliRomanEngine::reloadConfig() {
72
72
}
73
73
74
74
void NepaliRomanEngine::activate (const InputMethodEntry &,
75
- InputContextEvent &event ) {
76
- reloadConfig ();
75
+ InputContextEvent &) {
76
+ reloadConfig ();
77
77
}
78
78
79
79
void NepaliRomanEngine::keyEvent (const InputMethodEntry &, KeyEvent &keyEvent) {
@@ -554,7 +554,7 @@ std::string NepaliRomanEngine::preprocessInput(const std::string &input) {
554
554
char c = input[i];
555
555
std::string symbol (1 , c);
556
556
557
- // Skip adding space before special symbols like "*"
557
+ // Skip adding space before special symbols like
558
558
if (specialSymbols.find (c) != std::string::npos) {
559
559
out += c;
560
560
continue ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class NepaliRomanEngine : public InputMethodEngine {
40
40
const Configuration *getConfig () const override ;
41
41
Configuration *getMutableConfig ();
42
42
void setConfig (const RawConfig &rawConfig) override ;
43
- void activate (const InputMethodEntry &, InputContextEvent &event ) override ;
43
+ void activate (const InputMethodEntry &, InputContextEvent &) override ;
44
44
void deactivate (const InputMethodEntry &, InputContextEvent &event) override ;
45
45
void keyEvent (const InputMethodEntry &, KeyEvent &keyEvent) override ;
46
46
void reset (const InputMethodEntry &entry, InputContextEvent &event) override ;
Original file line number Diff line number Diff line change 1
- 2.0.1
1
+ 2.0.2
You can’t perform that action at this time.
0 commit comments