From 3db9fb75ee0e1c1cf559232e0828663943823368 Mon Sep 17 00:00:00 2001 From: James Booth Date: Tue, 6 Aug 2013 20:24:14 +0100 Subject: [PATCH 1/6] Added TODO and plugins/ to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index c133d04c..6c29afec 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,5 @@ stamp-h1 valgrind.out core bugs/ +TODO +plugins/ From ad86280220828cea757f67540896de9d5c872f33 Mon Sep 17 00:00:00 2001 From: James Booth Date: Fri, 9 Aug 2013 00:15:40 +0100 Subject: [PATCH 2/6] Fixed cygwin expat dependency for new versions --- install-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-all.sh b/install-all.sh index 8bdcdd8a..e382b473 100755 --- a/install-all.sh +++ b/install-all.sh @@ -35,7 +35,7 @@ cygwin_prepare() 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/ From 462b09a5467c5625094f8989fc70142f6d388c23 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sat, 10 Aug 2013 20:47:56 +0100 Subject: [PATCH 3/6] Fix ctrl + arrow keys for fedora --- src/ui/inputwin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index feb4a0ba..0ab53131 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -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); From 22c521d662dedd533fd4c52c5a1bb5d20bfac979 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 11 Aug 2013 17:00:06 +0100 Subject: [PATCH 4/6] Use patched version of apt-cyg --- install-all.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-all.sh b/install-all.sh index e382b473..0e8eb195 100755 --- a/install-all.sh +++ b/install-all.sh @@ -31,7 +31,8 @@ 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/ From 520d2129eab96ef3b910e2297a90fa8b61c1b738 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 11 Aug 2013 17:06:08 +0100 Subject: [PATCH 5/6] Set status to release --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ceaf1751..fac5d010 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.65]) AC_INIT([profanity], [0.3.0], [boothj5web@gmail.com]) -PACKAGE_STATUS="development" +PACKAGE_STATUS="release" AC_DEFINE_UNQUOTED([PACKAGE_STATUS], ["$PACKAGE_STATUS"], [Status of this build]) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([src/config.h]) From b1768f942c086410abfb7ca03e3a20fe472fafe6 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 11 Aug 2013 18:42:54 +0100 Subject: [PATCH 6/6] Set status to 0.4.0 development --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index fac5d010..a30c96d8 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([profanity], [0.3.0], [boothj5web@gmail.com]) -PACKAGE_STATUS="release" +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]) AC_CONFIG_HEADERS([src/config.h])