Skip to content

Commit

Permalink
* Wed Jul 14 2010 Pravin Satpute <[email protected]> - @Version@-1
Browse files Browse the repository at this point in the history
- fixed crash on 64 bit platform
- fixed right shift key issue
  • Loading branch information
pravins committed Jul 14, 2010
1 parent f04c09f commit 9523c53
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
ibus-rawcode
Current Version :- 1.2.99
Current Version :- 1.3.0

* Wed Jul 14 2010 Pravin Satpute <[email protected]> - 1.3.0
- fixed rh bug 614353 (issue with right shift key)
- fixed problem with 64 bit platform

* Tue Feb 09 2010 Pravin Satpute <[email protected]> - 1.2.99
- updated patches for code enhancement by phuang
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
# if not 1, append datestamp to the version number.
m4_define([ibus_released], [0])
m4_define([ibus_major_version], [1])
m4_define([ibus_minor_version], [2])
m4_define([ibus_micro_version], [99])
m4_define([ibus_minor_version], [3])
m4_define([ibus_micro_version], [0])
m4_define(ibus_maybe_datestamp,
m4_esyscmd([if test x]ibus_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))

Expand Down
10 changes: 7 additions & 3 deletions ibus-sayura.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,15 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/ibus/component/*

%changelog
* Tue Feb 09 2010 Pravin Satpute <[email protected]> - @VERSION@-1
* Wed Jul 14 2010 Pravin Satpute <[email protected]> - @VERSION@-1
- fixed crash on 64 bit platform
- fixed right shift key issue

* Tue Feb 09 2010 Pravin Satpute <[email protected]> - @VERSION@-1
- updated patches for code enhancements from phuang for ibus-1.2.99

* Thu Mar 26 2009 Pravin Satpute <pravin.d.s@gmail.com> - @VERSON@-2
* Thu Mar 26 2009 Pravin Satpute <psatpute@redhat.com> - @VERSON@-2
- updated as per fedora spec review

* Fri Mar 20 2009 Pravin Satpute <pravin.d.s@gmail.com> - @VERSION@-1
* Fri Mar 20 2009 Pravin Satpute <psatpute@redhat.com> - @VERSION@-1
- The first version.
2 changes: 1 addition & 1 deletion src/engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ ibus_sinhala_engine_process_key_event (IBusEngine *engine,
if (c >= 0) /* a consonent is pressed. */
return ibus_sinhala_handle_vowel_pressed (sinhala, keyval, c);

if (keyval == IBUS_Shift_L || keyval == IBUS_Shift_L ) {
if (keyval == IBUS_Shift_L || keyval == IBUS_Shift_R ) {
return FALSE;
}

Expand Down

0 comments on commit 9523c53

Please sign in to comment.