Changeset 4373
- Timestamp:
- 09/19/06 18:36:43 (2 years ago)
- Files:
-
- wire/trunk/NEWS (modified) (1 diff)
- wire/trunk/configure (modified) (10 diffs)
- wire/trunk/configure.in (modified) (1 diff)
- wire/trunk/wire/terminal.c (modified) (4 diffs)
- wire/trunk/wire/windows.c (modified) (1 diff)
- wire/trunk/wire/windows.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wire/trunk/NEWS
r4197 r4373 1 1 NEWS 2 2 ==== 3 4 1.1.2 5 - Clear the chat action indicator when scrolling to the bottom of a window 3 6 4 7 1.1.1 wire/trunk/configure
r4258 r4373 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.59 for wire 1.1. 1.3 # Generated by GNU Autoconf 2.59 for wire 1.1.2. 4 4 # 5 5 # Report bugs to <axel@zankasoftware.com>. … … 270 270 PACKAGE_NAME='wire' 271 271 PACKAGE_TARNAME='wire' 272 PACKAGE_VERSION='1.1. 1'273 PACKAGE_STRING='wire 1.1. 1'272 PACKAGE_VERSION='1.1.2' 273 PACKAGE_STRING='wire 1.1.2' 274 274 PACKAGE_BUGREPORT='axel@zankasoftware.com' 275 275 … … 782 782 # This message is too long to be a string in the A/UX 3.1 sh. 783 783 cat <<_ACEOF 784 \`configure' configures wire 1.1. 1to adapt to many kinds of systems.784 \`configure' configures wire 1.1.2 to adapt to many kinds of systems. 785 785 786 786 Usage: $0 [OPTION]... [VAR=VALUE]... … … 843 843 if test -n "$ac_init_help"; then 844 844 case $ac_init_help in 845 short | recursive ) echo "Configuration of wire 1.1. 1:";;845 short | recursive ) echo "Configuration of wire 1.1.2:";; 846 846 esac 847 847 cat <<\_ACEOF … … 967 967 if $ac_init_version; then 968 968 cat <<\_ACEOF 969 wire configure 1.1. 1969 wire configure 1.1.2 970 970 generated by GNU Autoconf 2.59 971 971 … … 981 981 running configure, to aid debugging if configure makes a mistake. 982 982 983 It was created by wire $as_me 1.1. 1, which was983 It was created by wire $as_me 1.1.2, which was 984 984 generated by GNU Autoconf 2.59. Invocation command line was 985 985 … … 1406 1406 1407 1407 cat >>confdefs.h <<\_ACEOF 1408 #define WR_VERSION "1.1. 1"1408 #define WR_VERSION "1.1.2" 1409 1409 _ACEOF 1410 1410 … … 1421 1421 1422 1422 # These are used in the Makefile 1423 WR_VERSION=1.1. 11423 WR_VERSION=1.1.2 1424 1424 1425 1425 … … 6943 6943 cat >&5 <<_CSEOF 6944 6944 6945 This file was extended by wire $as_me 1.1. 1, which was6945 This file was extended by wire $as_me 1.1.2, which was 6946 6946 generated by GNU Autoconf 2.59. Invocation command line was 6947 6947 … … 7003 7003 cat >>$CONFIG_STATUS <<_ACEOF 7004 7004 ac_cs_version="\\ 7005 wire config.status 1.1. 17005 wire config.status 1.1.2 7006 7006 configured by $0, generated by GNU Autoconf 2.59, 7007 7007 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" wire/trunk/configure.in
r4258 r4373 1 1 # Process this file with autoconf to produce a configure script 2 AC_INIT([wire], [1.1. 1], [axel@zankasoftware.com])2 AC_INIT([wire], [1.1.2], [axel@zankasoftware.com]) 3 3 AC_PREREQ([2.57]) 4 4 AC_CONFIG_SRCDIR([config.h.in]) wire/trunk/wire/terminal.c
r4028 r4373 252 252 wi_terminal_buffer_pageup(wr_current_window->buffer); 253 253 254 wr_window_update_status(wr_current_window); 255 254 256 wr_draw_header(); 255 257 wr_draw_divider(); … … 262 264 wi_terminal_clear_screen(wr_terminal); 263 265 wi_terminal_buffer_pagedown(wr_current_window->buffer); 266 267 wr_window_update_status(wr_current_window); 264 268 265 269 wr_draw_header(); … … 274 278 wi_terminal_buffer_home(wr_current_window->buffer); 275 279 280 wr_window_update_status(wr_current_window); 281 276 282 wr_draw_header(); 277 283 wr_draw_divider(); … … 284 290 wi_terminal_clear_screen(wr_terminal); 285 291 wi_terminal_buffer_end(wr_current_window->buffer); 292 293 wr_window_update_status(wr_current_window); 286 294 287 295 wr_draw_header(); wire/trunk/wire/windows.c
r4197 r4373 247 247 #pragma mark - 248 248 249 void wr_window_update_status(wr_window_t *window) { 250 uint32_t line, lines; 251 252 line = wi_terminal_buffer_current_line(window->buffer); 253 lines = wi_terminal_buffer_lines(window->buffer); 254 255 if(line == lines) 256 window->status = WR_WINDOW_STATUS_IDLE; 257 } 258 259 260 249 261 wr_window_t * wr_window_with_chat(wr_cid_t cid) { 250 262 wi_list_node_t *node; wire/trunk/wire/windows.h
r4028 r4373 121 121 void wr_windows_show_window(wr_window_t *); 122 122 123 void wr_window_update_status(wr_window_t *); 123 124 wr_window_t * wr_window_with_chat(wr_cid_t); 124 125 wr_window_t * wr_window_with_user(wr_user_t *);
