mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Merge branch 'master' into plugins
Conflicts: .gitignore
This commit is contained in:
commit
140a2ad0e3
@ -2,7 +2,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ([2.65])
|
||||
AC_INIT([profanity], [0.3.0], [boothj5web@gmail.com])
|
||||
AC_INIT([profanity], [0.4.0], [boothj5web@gmail.com])
|
||||
PACKAGE_STATUS="development"
|
||||
AC_DEFINE_UNQUOTED([PACKAGE_STATUS], ["$PACKAGE_STATUS"], [Status of this build])
|
||||
AC_CONFIG_SRCDIR([src/main.c])
|
||||
|
@ -31,11 +31,12 @@ cygwin_prepare()
|
||||
echo Profanity installer... installing dependencies
|
||||
echo
|
||||
|
||||
wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
|
||||
wget --no-check-certificate https://raw.github.com/boothj5/apt-cyg/master/apt-cyg
|
||||
#wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
|
||||
chmod +x apt-cyg
|
||||
mv apt-cyg /usr/local/bin/
|
||||
|
||||
apt-cyg install make gcc automake autoconf pkg-config openssl-devel expat zlib-devel libncurses-devel libncursesw-devel libglib2.0-devel libcurl-devel libidn-devel libssh2-devel libkrb5-devel openldap-devel
|
||||
apt-cyg install make gcc automake autoconf pkg-config openssl-devel libexpat-devel zlib-devel libncurses-devel libncursesw-devel libglib2.0-devel libcurl-devel libidn-devel libssh2-devel libkrb5-devel openldap-devel
|
||||
ln -s /usr/bin/gcc-3.exe /usr/bin/gcc.exe
|
||||
|
||||
export LIBRARY_PATH=/usr/local/lib/
|
||||
|
@ -263,7 +263,7 @@ _handle_edit(int result, const wint_t ch, char *input, int *size)
|
||||
inp_x = getcurx(inp_win);
|
||||
|
||||
// CTRL-LEFT
|
||||
if ((result == KEY_CODE_YES) && (ch == 545 || ch == 540 || ch == 539) && (inp_x > 0)) {
|
||||
if ((result == KEY_CODE_YES) && (ch == 547 || ch == 545 || ch == 540 || ch == 539) && (inp_x > 0)) {
|
||||
input[*size] = '\0';
|
||||
gchar *curr_ch = g_utf8_offset_to_pointer(input, inp_x);
|
||||
curr_ch = g_utf8_find_prev_char(input, curr_ch);
|
||||
@ -313,7 +313,7 @@ _handle_edit(int result, const wint_t ch, char *input, int *size)
|
||||
return 1;
|
||||
|
||||
// CTRL-RIGHT
|
||||
} else if ((result == KEY_CODE_YES) && (ch == 560 || ch == 555 || ch == 554) && (inp_x < display_size)) {
|
||||
} else if ((result == KEY_CODE_YES) && (ch == 562 || ch == 560 || ch == 555 || ch == 554) && (inp_x < display_size)) {
|
||||
input[*size] = '\0';
|
||||
gchar *curr_ch = g_utf8_offset_to_pointer(input, inp_x);
|
||||
gchar *next_ch = g_utf8_find_next_char(curr_ch, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user