1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
|
2006-4-26 15:12 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, README, README.ms, configure.ac, HACKING, NEWS:
Updates for release 2.0.4.
2006-04-26 14:24 Stephen Bach <sjbach@users.sourceforge.net>
* configure.ac, vgseer/Makefile.am, vgping/Makefile.am,
vgd/Makefile.am:
Making build work with newer versions of the autotools.
* hardened-io.h: making bulid work on OS X. Thanks to John Magolske.
2006-01-09 07:03 Stephen Bach <sjbach@users.sourceforge.net>
* x11-stuff.c, x11-stuff.h, display-common.c, jump-resize.c: clean up.
* init-viewglob.bashrc.in: glob-expand -> vgexpand
2005-07-15 20:03 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am:
Correctly handle the building and distribution of manpages. Thanks
to Kevin McCarty.
* vgseer.1.in: fix hyphen escaping. Thanks to Kevin McCarty.
* viewglob.in: quote the calls to gconf. Thanks to Kevin McCarty.
* vgseer.c, param-io.c, param-io.h:
Cleaned up code for connecting to vgd and more informative errors.
* x11-stuff.c:
- Correctly handle 64-bit environments. Thanks to Tom Martin.
- Use new algorithm for get_active_window() (grabbed from
wmctrl-1.07).
2005-05-31 14:12 Stephen Bach <sjbach@users.sourceforge.net>
* README, README.ms: documentation updates
* make-readme.sh: output ascii
* strip-grotty: don't fix page breaks automatically
* sequences.c: one more UTF-8 fix
* configure.ac, vgd/Makefile.am, vgseer/Makefile.am:
Updates for release 2.0.2.
2005-05-31 01:34 Stephen Bach <sjbach@users.sourceforge.net>
* COPYING2: no more misc.c
* NEWS, vgd.1.in, vgseer.1.in, viewglob.1.in: documentation updates
2005-05-30 20:48 Stephen Bach <sjbach@users.sourceforge.net>
* cmdline.c, cmdline.h, sequences.c, sequences.h, vgseer.c:
Make UTF-8 work correctly more often. Thanks to Artis Rozentals
for the bug report.
2005-05-19 16:16 Stephen Bach <sjbach@users.sourceforge.net>
* vgseer.1.in, vgd.1.in, viewglob.1.in: documentation updates
2005-05-16 18:50 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.c, vgmini.c:
Display is raised if current terminal is unfocused and then
refocused, regardless of whether a different terminal is focused or
not.
2005-05-16 17:01 Stephen Bach <sjbach@users.sourceforge.net>
* vgd-usage.txt, vgseer-usage.txt: added
* vgd/Makefile.am, vgd.c, vgseer/Makefile.am, vgseer.c:
Generate usages from text file (simpler editing).
* ./Makefile.am: manpages weren't receiving new release date (oops).
2005-05-16 15:53 Stephen Bach <sjbach@users.sourceforge.net>
* viewglob.in:
- Better terminal fallback to xterm.
- Force daemonizing for vgd.
- Fix for small race condition when starting vgd and vgseer. Thanks
to Kevin McCarty.
- Always use Unix sockets when connecting locally. Thanks to Kevin
McCarty.
- Comments changes.
- Cleaned up usage a little.
* vgseer.c:
- Use Unix sockets by default.
- Cleaned up usage a little.
* vgd.c:
- Different exit codes depending on failure.
- Cleaned up usage a little.
* vgd.1.in: exit codes
2005-05-08 13:42 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, viewglob.in:
Try to use gconf to determine terminal program. Thanks to
Koenraad Heijlen.
2005-05-05 22:24 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, NEWS, configure.ac, README, README.ms:
Updates for release 2.0.1.
* x11-stuff.c: fix build error
* hardened-io.c, hardened-io.h: includes should be in header
* viewglob.in:
Further updates for Unix-domain socket usage.
2005-05-05 17:00 Stephen Bach <sjbach@users.sourceforge.net>
* tcp-connect.c, tcp-connect.h: removed
* socket-connect.c, socket-connect.h: added
* common/Makefile.am, shell/Makefile.am, vgping/Makefile.am,
vgseer/Makefile.am:
Use socket-connect instead of tcp-connect
* fgetopt.c: no newline on error reporting
* vgseer.c, vgd.c, viewglob.in, vgping.c:
Added functionalitiy for Unix-domain sockets.
* vgd.1.in, vgseer.1.in, viewglob.1.in:
- Documentation updates.
- Escaping the '-' character.
* x11-stuff.c, x11-stuff.h, display-common.c, jump-resize.c,
vgmini.c:
A few fixes to the refocus/raise command.
2005-04-25 11:43 Stephen Bach <sjbach@users.sourceforge.net>
* NEWS, README, README.ms, viewglob.1.in: documentation updates
* child.c, tcp-connect.c, ptytty.c: FreeBSD portability fixes
* configure.ac, child.c, vgseer.c:
Final changes for release 2.0.
2005-04-25 00:58 Stephen Bach <sjbach@users.sourceforge.net>
* child.c, x11-stuff.c, display-common.c, vgseer.c:
Portability fixes.
2005-04-24 17:28 Stephen Bach <sjbach@users.sourceforge.net>
* README.ms, vgd.1.in, vgseer.1.in, viewglob.1.in:
Documentation updates.
* viewglob.in, vgd.c, vgseer.c:
- Adding --daemon option.
- Fixing usages.
2005-04-24 15:35 Stephen Bach <sjbach@users.sourceforge.net>
* dircont.c, dircont.h, vgmini.c:
- Display developing mask.
- Colour scheme chosen (but needs work).
* vgseer.c: always send the mask for now, even if not changed
2005-04-24 13:00 Stephen Bach <sjbach@users.sourceforge.net>
* README.ms, vgd.1.in, vgseer.1.in, viewglob.1.in:
Documentation updates.
* fgetopt.c, fgetopt.h, vgseer.c, vgd.c, viewglob.in,
display-common.c:
Change disabling options to be enabled and disabled.
* x11-stuff.c, x11-stuff.h, display-common.c, display-common.h,
exhibit.h, jump-resize.c, vgclassic.c, vgmini.c:
Lotsa tweaks to the refocusing/raising.
2005-04-22 13:15 Stephen Bach <sjbach@users.sourceforge.net>
* vgseer.1.in: text changes
* viewglob.in: use VG_LIB_DIR when checking displays
* jump-resize.c, jump-resize.h: added
* x11-stuff.c, x11-stuff.h, vgd.c, display-common.c, display-common.h,
vgclassic.c, vgmini.c:
Tweaking window focusing/jump-resizing.
2005-04-15 17:35 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am, etc.:
- Made conditional build work.
- Aesthetic changes.
2005-04-14 18:22 Stephen Bach <sjbach@users.sourceforge.net>
* bootstrap: only continue if previous step was successful
* Makefile.am: failed attempt at conditional build
* configure.ac:
- More correct checking for headers and functions
- First part of vgseer-only build implemented
- Link against socket libraries if necessary
- Don't need sed's path
* child.c, common.h, hardened-io.c, x11-stuff.c, vgexpand.c, vgseer.c:
Miscellaneous portability changes.
* ptytty.c: no more warnings when using GNU getpt()
* ptytty.h: don't include common.h!
* tcp-connect.c, tcp-listen.c:
Fallback to simpler implementation if there is no getaddrinfo().
* vgd/Makefile.am, vgping/Makefile.am, vgseer/Makefile.am:
Link against socket libraries if required
2005-04-13 17:24 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.1.in, vgseer.1.in, viewglob.1.in: further documentation
* viewglob.in: start a new terminal if one isn't active
2005-04-12 22:46 Stephen Bach <sjbach@users.sourceforge.net>
* vgping/Makefile.am, vgping.c: added
* Makefile.am, configure.ac: changes for vgping
* viewglob.in: make functional for new package interface
* vgd.c, vgseer.c: small bug fixes
2005-04-12 20:58 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.1.in: elaborating on setting colours
* vgd.c: set syslog in daemonize()
* dircont.c: small bugfix
* display-common.c, display-common.h, file_box.c, file_box.h,
lscolors.c, lscolors.h, vgclassic.c, vgmini.c:
- Added argument parsing.
- LS_COLORS can now be set.
- Fixed icon disable option.
* vgseer.c: don't start if vgseer is already active in the shell
2005-04-12 19:34 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.1, vgseer.1, viewglob.1: removed
* vgd.1.in, vgseer.1.in, viewglob.1.in: added
* ./Makefile.am:
Insert the release date into manpages automatically.
* read-conf.c, read-conf.h: removed
* conf-to-args.c, conf-to-args.h, conf-to-args.sh: added
Using different approach to parsing config files.
* shell/Makefile.am, common/Makefile.am, vgd/Makefile.am, vgd.c,
vgseer/Makefile.am, vgseer.c:
- Use conf-to-args.
- Added option parsing.
- Added usages.
* child.c: removed unnecessary warning
* tcp-listen.c: more useful error reporting
* vgexpand.c: allow changing to ls mode
2005-04-12 00:24 Stephen Bach <sjbach@users.sourceforge.net>
* fgetopt.c, fgetopt.h:
Replacement for GNU getopt_long() added.
* read-conf.c, read-conf.h:
Configuration file read library added.
* init-viewglob.bashrc, init-viewglob.zshrc: removed
* init-viewglob.bashrc.in, init-viewglob.zshrc.in: added
* tcp-connect.c: errors are critical
* vgd/Makefile.am, vgseer/Makefile.am:
Get VG_LIB_DIR from make.
* vgseer.c:
Parse configuration file and use getopt_long().
2005-04-11 19:30 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.1, vgseer.1: moving some options around
* logging.c, logging.h: added
* param-io.c, param-io.h, vgd.c, vgseer.c:
- Change term-title set process.
- vgexpand opts get sent backwards from vgd to vgseer.
- vgd doesn't need to know vgseer pids.
* vgd/Makefile.am, vgd.c:
- Do all setup before becoming daemon to allow for normal error
reporting.
* vgexpand.c: fix small bug
2005-04-11 12:15 Stephen Bach <sjbach@users.sourceforge.net>
* tcp-connect.c, tcp-connect.h, tcp-listen.c, tcp-listen.h:
Added from Unix Network Programming Volume I, 3rd Ed.
* common/Makefile.am, vgd/Makefile.am, vgd.c, vgseer.c:
Use tcp-connect and tcp-listen.
* vgseer.c, sequences.c, connection.c, connection.h:
Send the status of the user shell when it changes.
* vgd.c: removed most messages
* syslogging.c, dircont.c, : small fixes
* vgdisplay/Makefile.am: don't remake icon files every time
* x11-stuff.c: looked-for title can be subset of full title
* vgd.1, vgseer.1: added
* vgmini.c: show command line when display is active window
2005-04-10 18:44 Stephen Bach <sjbach@users.sourceforge.net>
* syslogging.h, syslogging.c: added
* vgd/Makefile.am, common/Makefile.am, vgdisplay/Makefile.am, vgd.c,
vgclassic.c, vgmini.c:
- vgd becomes a daemon.
- The displays and vgd use syslog for warnings/errors.
* dircont.c, dircont.h, file_box.c, file_box.h, vgmini.c:
Automatically scroll to the part of the filebox which has most
recently changed.
* display-common.c: better decoration discovery
* vgseer.c: Error/Warning messages are less scary looking
2005-04-09 00:45 Stephen Bach <sjbach@users.sourceforge.net>
* children.c, children.h: removed
* child.c, child.h, pty-child.c, pty-child.h: added
* common/Makefile.am, vgd/Makefile.am, vgseer/Makefile.am, vgd.c,
vgseer.c:
Moved pseudo terminal child stuff into pty-child, which only vgseer
links.
2005-04-08 22:00 Stephen Bach <sjbach@users.sourceforge.net>
* x11-stuff.c, x11-stuff.h, common/Makefile.am, vgd/Makefile.am:
Moved x11-stuff to common/.
* vgdisplay/Makefile.am, dircont.c, dircont.h, display-common.c,
display-common.h, :
- Took second stab at vgmini resizing (better but needs work).
- Headers in vgmini highlight when mouseover.
- Headers in vgmini are clickable (to activate).
- Added preliminary jump-resizing of vgmini on context switch.
Works well on some window managers but not all.
* vgseer.c:
- Don't escape ~ in filenames.
- Use single quote instead of double for vgexpand calls.
2005-04-05 19:57 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.c: don't refocus unless display is open
* dircont.c, vgmini.c:
- Setup vgmini resizing -- needs work still.
- Headers painted in different ways, sometimes with colour gradient.
* vgclassic.c, display-common.c, display-common.h:
Moved over more common code.
2005-04-04 15:12 Stephen Bach <sjbach@users.sourceforge.net>
* param-io.c:
Changed the end-of-data semaphore to "\027\027" instead of "\n\n".
* dircont.c, dircont.h, file_box.c, file_box.h, vgmini.c:
- Established "scoring system" to determine which DirCont should
become active when new glob data arrives.
- Added navigation functionality.
- Added keystroke passing functionality.
- Paint the mask on the active DirCont (big or small).
* vgclassic.c, display-common.c, display-common.h:
Moved over more common code.
2005-04-03 21:18 Stephen Bach <sjbach@users.sourceforge.net>
* all.png, hidden.png, vgclassic.h: removed
* vgmini.c, display-common.c, display-common.h, dircont.h, dircont.c,
vgdisplay/Makefile.am:
Began work on new display.
* dlisting.c, exhibit.c, file_box.c, vgclassic.c:
Compatibility changes on the old display.
2005-03-30 18:27 Stephen Bach <sjbach@users.sourceforge.net>
* param-io.c, param-io.h: added P_VERSION
* vgd.c, vgseer.c: version negotiation
* vgclassic.c: accept window ids
2005-03-30 16:46 Stephen Bach <sjbach@users.sourceforge.net>
* vgdisplay/file_types.h: removed
* common/file-types.h: added
* dlisting.c, exhibit.c, file_box.c, file_box.h, lscolors.h,
lscolors.c, vgclassic.c, vgclassic.h, vgexpand.h, vgd.c, vgseer.c:
Coding changes.
* vgexpand.c: differentiate PWD.
2005-03-30 02:10 Stephen Bach <sjbach@users.sourceforge.net>
* children.c, children.h:
- setsid() for pty_child_fork().
- Removed display stuff.
* vgd.c, vgseer.c, vgclassic.c: further integration
2005-03-29 18:44 Stephen Bach <sjbach@users.sourceforge.net>
* vgd.c, exhibit.c, dlisting.c, exhibit.h, file_box.c, file_box.h,
vgclassic.c:
Further integration.
* vgexpand.c: end data with double \n
2005-03-29 15:00 Stephen Bach <sjbach@users.sourceforge.net>
* display.h, display.c, feedback.h, feedback.c: removed
* children.c, children.h: added child_running() function
* param-io.c, param-io.h: added P_WIN_ID
* Makefile.am: using children.c
* vgd.c: beginning integration with vgclassic
* vgdisplay/Makefile.am: use param-io instead of feedback
* dlisting.c, dlisting.h, exhibit.c, exhibit.h, file_box.c,
file_box.h, vgclassic.c, vgclassic.h:
- Began integration with vgd.
- Removed file display limit option (use mask instead).
- Removed hide hidden files option (use mask instead).
2005-03-29 01:15 Stephen Bach <sjbach@users.sourceforge.net>
* shrink_label.c, shrink_label.h: removed (wasn't used anyway)
* vgdisplay/common.h: removed
* vgdisplay/Makefile.am, gviewglob.c, gviewglob.h:
Renamed to vgclassic.{c,h}
* param-io.c, param-io.h, vgd.c, vgseer.c:
Removed locality, shell, and vgexpand-opts parameters. Simplified
handshake.
2005-03-29 00:21 Stephen Bach <sjbach@users.sourceforge.net>
* vgexpand.c: added special directory-only case for masks
* vgd.c:
- Use GStrings for volatile data.
- Sandbox activity is strictly in vgseer.
2005-03-28 20:55 Stephen Bach <sjbach@users.sourceforge.net>
* bootstrap, common/Makefile.am vgseer/Makefile.am: changes
* init-viewglob.zshrc: tried to prevent warning message, no avail
* vgseer.c: force interactive mode for zsh
* children.c, children.h: moved to common
2005-03-28 17:55 Stephen Bach <sjbach@users.sourceforge.net>
* sanitize.h, sanitize.c: moved back to vgseer
* param-io.c: value length is 4 bytes instead of 2
* vgexpand.c: output filename on stat error
* vgseer/Makefile.am: sanitize.c, sanitize.h
* actions.c, actions.h: A_MASK_FINAL incorporated into A_SEND_CMD
* cmdline.c, cmdline.h: remember current mask also
* sequences.c: reglob on mask clear
* vgseer.c: send glob output to vgd
2005-03-27 14:03 Stephen Bach <sjbach@users.sourceforge.net>
* vgexpand.c, vgexpand.h:
- Added preliminary mask functionality
- Use tree instead of list for files
- Added sorting
2005-03-26 18:51 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.bashrc, init-viewglob.zshrc:
Unset PS1 and PROMPT_COMMAND.
* vgexpand.c: begin and end semaphores added
* cmdline.c: limit mask to 50 characters for now
* children.c, children.h, connection.c, connection.h, vgseer.c:
Added preliminary sandbox shell functionality.
2005-03-25 19:05 Stephen Bach <sjbach@users.sourceforge.net>
* common.h: added STRNEQ() macro
* param-io.c, param-io.h: added mask and developing-mask params
* vgd.c, x11-stuff.c, x11-stuff.h:
- Keep track of the active X window.
- Track mask and developing mask.
* actions.c, actions.h, cmdline.c, cmdline.h, connection.h,
sequences.c, vgseer.c:
- Rewrote sequence initialization.
- Rewrote C-g key stuff to allow chaining together of navigation
commands.
- Added mask functionality. Works now as far as vgseer is
concerned.
2005-03-24 20:50 Stephen Bach <sjbach@users.sourceforge.net>
* common.h: got rid of DEBUG stuff
* vgd.c, x11-stuff.c, cmdline.c, connection.c, connection.h,
sequences.c, vgseer.c:
Vgseer now has full local functionality
2005-03-24 13:56 Stephen Bach <sjbach@users.sourceforge.net>
* vgseer.h: removed again
* hardened-io.c: cleanup
* vgd.c: consistent message logging
* vgseer/Makefile.am, children.c, children.h, cmdline.c, cmdline.h,
connection.c, connection.h, sequences.c sequences.h, vgseer.c,:
Smarter data passing, many fewer gotos, general cleanup.
2005-03-23 20:21 Stephen Bach <sjbach@users.sourceforge.net>
* shell.h: moved to common
* shell.c, vgseer.h: added
* Makefile.am: debug compile flag added
* common/Makefile.am, param-io.c, param-io.h, vgd/Makefile.am,
vgd.c, vgseer/Makefile.am, cmdline.c, sequences.c, sequences.h,
vgseer.c sequences.c, :
Connecting vgd to vgseer.
2005-03-23 14:30 Stephen Bach <sjbach@users.sourceforge.net>
* hardened_io.c, hardened_io.h, io-all.c, io-all.h: removed
* hardened-io.c, hardened-io.h: added
* common/Makefile.am, param-io.c, vgd/Makefile.am, vgd.c,
vgseer/Makefile.am, shell.h, vgseer.c:
Integrated io-all into hardened-io.
2005-03-21 23:47 Stephen Bach <sjbach@users.sourceforge.net>
* io-all.c, io-all.h, param-io.c, param-io.h, vgd.c: added
* configure.ac, common/Makefile.am, common.h, x11-stuff.c:
Starting work on vgd.
2005-03-15 15:48 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am, configure.ac: renamed glob-expand to vgexpand.
* glob-expand/Makefile.am, glob-expand/glob-expand.c,
glob-expand/glob-expand.h, glob-expand/viewglob-error.c,
glob-expand/viewglob-error.h, glob-expand/xmalloc.c:
Removed
* vgexpand/Makefile.am, vgexpand/vgexpand.c, vgexpand/vgexpand.h:
Added -- ported partially to GLib.
2005-03-15 14:10 Stephen Bach <sjbach@users.sourceforge.net>
* circular.h: removed
* vgseer.h: removed
* shell.h: added (renamed from vgseer.h)
2005-03-15 01:20 Stephen Bach <sjbach@users.sourceforge.net>
* vgseer.c, init-viewglob.zshrc:
Allow user to specify a ZDOTDIR in zsh (so we're not always
sourcing ~/.zshrc).
2005-03-15 00:04 Stephen Bach <sjbach@users.sourceforge.net>
* actions.c, actions.h: using proper queue terms
* circular.h, cmdline.c, cmdline.h, connection.c, connection.h,
vgseer.c, sequences.c:
Code cleanup.
2005-03-11 22:40 Stephen Bach <sjbach@users.sourceforge.net>
* cmdline.c, cmdline.h, sequences.c, vgseer.c:
Use a GString to represent the command line.
2005-03-11 16:07 Stephen Bach <sjbach@users.sourceforge.net>
* hardened_io.c, hardened_io.h, cmdline.c, cmdline.h, sequences.c,
sequences.h, vgseer.c, vgseer.h:
Fewer globals
* cmdline.c: removed unused functions
2005-03-10 23:27 Stephen Bach <sjbach@users.sourceforge.net>
* configure.ac: require GLib 2.2.0
* vgseer/Makefile.am: build changes
* buffer.h, buffer.c, viewglob-error.c, viewglob-error.h: removed
* strip-grotty, connection.c, connection.h: added
* circular.h, vgseer.c, vgseer.h: cleaned up connection processing
* make-readme.sh: use strip-grotty
* hardened_io.c, hardnened_io.h, actions.c, children.c, circular.h,
cmdline.c, sequences.c, sequences.h, vgseer.c:
Use GLib for error logging.
2005-03-09 17:19 Stephen Bach <sjbach@users.sourceforge.net>
* xmalloc.c, misc.c: removed
* actions.c, actions.h, buffer.c, buffer.h, children.c, children.h
circular.h, cmdline.c, cmdline.h, sanitize.c, sanitize.h, seer.c,
seer.h, sequences.c, sequences.h, tc_setraw.c, tc_setraw.h,
vgseer-common.h, viewglob-error.c, viewglob-error.h:
Porting seer to GLib.
2005-03-08 22:00 Stephen Bach <sjbach@users.sourceforge.net>
* Almost all files:
Make system reorganization in preparation for code reorganization.
2005-03-16 22:45 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c:
Convert the command line text from the filename encoding to UTF-8.
* AUTHORS, NEWS, README, README.ms, configure.ac, viewglob.1:
Updates for release 1.1.1 (reintegrated from old branch).
2005-03-07 17:25 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, NEWS, README, README.ms, configure.ac, viewglob.1,
gviewglob/Makefile.am:
Updates for release 1.1.0.
2005-03-07 15:02 Stephen Bach <sjbach@users.sourceforge.net>
* lscolors.c:
Changed default colouring to be best on a light background.
2005-03-07 14:04 Stephen Bach <sjbach@users.sourceforge.net>
* lscolors.c:
Don't set the foreground colour through Pango so that its
colour can change when active or selected.
2005-03-06 21:27 Stephen Bach <sjbach@users.sourceforge.net>
* seer.c, x11-stuff.c, x11-stuff.h:
Tweaked the algorithm for refocusing. If display is focused,
terminal is brought to front. If terminal is focused, display
is brought to front. If neither, both are brought to front.
2005-03-06 19:49 Stephen Bach <sjbach@users.sourceforge.net>
* file_box.c, lscolors.c, lscolors.h:
Integrated font resizing into the LS_COLORS parsing stuff.
2005-03-06 17:36 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am: adding lscolors.{c,h} and file_types.h
* file_types.h: added
* common.h, dlisting.c, dlisting.h, exhibit.c, exhibit.h, feedback.c,
feedback.h, gviewglob.h, wrap_box.c, wrap_box.h:
Updating copyright.
* file_box.c, file_box.h, lscolors.c, lscolors.h:
Working dircolors (LS_COLORS) integration.
2005-03-05 17:20 Stephen Bach <sjbach@users.sourceforge.net>
* viewglob.in, seer.c, x11-stuff.c, x11-stuff.h, src/Makefile.am:
Few final bug fixes.
* NEWS, README, README.ms, configure.ac, viewglob.1: fixing date
2005-03-05 00:48 Stephen Bach <sjbach@users.sourceforge.net>
* glob-expand.c: /home/blah --> ~
* viewglob.1, AUTHORS, NEWS, README, README.ms, configure.ac:
Updates for release 1.0.3.
2005-03-04 22:40 Stephen Bach <sjbach@users.sourceforge.net>
* x11-stuff.c, x11-stuff.h: added
* children.c, init-viewglob.zshrc: aesthetic changes
* Makefile.am, actions.c, actions.h, children.h, seer.c, sequences.c,
gviewglob.c, configure.ac:
Adding key sequence that will automatically refocus both the
viewglob terminal and display
2005-03-02 00:49 Stephen Bach <sjbach@users.sourceforge.net>
* glob-expand.c, viewglob-error.c, viewglob.in: aesthetic changes
2005-03-01 15:35 Stephen Bach <sjbach@users.sourceforge.net>
* children.c: added comments, fixed a double allocation
* hardened_io.c: added comments, fixed some types
2004-11-19 01:43 Stephen Bach <sjbach@users.sourceforge.net>
* feedback.c, gviewglob.c, ptytty.c, ptytty.h, seer.c, sequences.c:
Fixing a bunch of potential compiler warnings.
2004-11-18 13:25 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, NEWS, README.ms, configure.ac, viewglob.1:
Documentation updates for release 1.0.2.
2004-11-16 19:57 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, dlisting.h, file_box.c, gviewglob.c, gviewglob.h:
Display accepts -z flag to set modifier for all font sizes.
* viewglob.in, seer.c:
Accept -z and --font-size-modifier flags.
2004-11-16 15:38 Stephen Bach <sjbach@users.sourceforge.net>
* ptutil.c, ptutil.c.diff, ptutil.c.viewglob, ptutil.diff,
ptutil.h, ptutil.h.diff, ptutil.h.viewglob:
Removed
* ptytty.c, ptytty.h: added (from rxvt)
* configure.ac, src/Makefile.am, children.c:
Using pseudo terminal code from rxvt instead of from Advanced
Unix Programming. Hopefully this will improve portability.
2004-11-15 21:39 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob/Makefile.am, file_box.c, file_box.h, gviewglob.c:
Font size and icon size in file boxes are now variable.
2004-11-04 14:11 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.bashrc, init-viewglob.zshrc:
Small fix to prevent an infinite forking loop if the user puts a
call to viewglob into their .bashrc or .zshrc file.
2004-10-11 22:01 Stephen Bach <sjbach@users.sourceforge.net>
* NEWS, README, README.ms, configure.ac, viewglob.1:
Updates for release 1.0.1.
2004-10-11 19:39 Stephen Bach <sjbach@users.sourceforge.net>
* glob-expand.c, glob-expand.h, viewglob.in:
Added --dir-ordering feature.
* viewglob.1, README.ms, AUTHORS:
Updated documentation.
2004-09-28 11:09 Stephen Bach <sjbach@users.sourceforge.net>
* NEWS, README, README.ms, configure.ac, viewglob.1:
Updated for release 1.0.
2004-09-27 18:16 Stephen Bach <sjbach@users.sourceforge.net>
* exhibit.c, exhibit.h, gviewglob.c:
Better and more complete solution to the resizing problem.
2004-09-26 18:21 Stephen Bach <sjbach@users.sourceforge.net>
* viewglob.1: updated with new features
2004-09-26 16:47 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c: don't send navigation keys to terminal.
2004-09-26 10:58 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c, seer.c:
Typing in the display now goes to the terminal.
2004-09-25 19:41 Stephen Bach <sjbach@users.sourceforge.net>
* feedback.c, feedback.h: added
* Makefile.am: updated for feedback.{c,h}
* seer.c: don't escape '/' characters in filenames.
* file_box.c, file_box.h, dlisting.c, gviewglob.c:
- Context menu only on dl header.
- Trailing '/' when inserting directory files.
- Double clicking directory header inserts path.
2004-09-25 16:43 Stephen Bach <sjbach@users.sourceforge.net>
* cmdline.c, cmdline.h, seer.c, seer.h, viewglob.in:
Added smart-insert functionality.
2004-09-25 15:04 Stephen Bach <sjbach@users.sourceforge.net>
* exhibit.c, file_box.c, file_box.h, gviewglob.c, seer.c:
- Double clicking a filename outputs it to the terminal.
- Shift-double clicking outputs the full path.
2004-09-25 11:57 Stephen Bach <sjbach@users.sourceforge.net>
* exhibit.c, gviewglob.c:
- Put PWD into the title of the display.
- Set step_increment of the scrollbar manually.
2004-09-25 10:52 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, exhibit.c, gviewglob.c:
Fixed the long-standing window resizing bug where the labels
and file boxes would sometimes enforce a minimum width.
2004-09-23 19:37 Stephen Bach <sjbach@users.sourceforge.net>
* children.c, children.h:
- Unlink the feedback fifo (whoops).
- CLOSE_FD argument to pty_child_fork instead of /dev/null.
* common.h: adding MAX macro
* seer.c:
- Initialize all the fifo fds.
- Use CLOSE_FD instead of /dev/null.
- Read garbage data from sandbox shell instead of letting it
stop up the fifo.
2004-09-22 18:55 Stephen Bach <sjbach@users.sourceforge.net>
* children.c:
In FreeBSD I was seeing SIGBUS when running display_terminate.
Putting the kill/wait before closing the fifos solved the issue.
* seer.c:
Another fix for FreeBSD that has been an issue since the beginning
but I just now noticed it -- unless bash is called explicitly with
-i to turn on interactive, one of the shells doesn't get killed
upon exit.
2004-09-21 14:56 Stephen Bach <sjbach@users.sourceforge.net>
* children.c: wait for zombie processes
2004-09-20 19:35 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, NEWS, README, README.ms, viewglob.1:
Updating documentation.
* configure.ac: updating date and version for 0.9.1.
2004-09-20 18:02 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c, seer.c:
If user closes the display, seer finds out and toggles it off.
* gviewglob.c, dlisting.c: fixing resizing is on hold for now
2004-09-20 15:58 Stephen Bach <sjbach@users.sourceforge.net>
* src/Makefile.am, gviewglob/Makefile.am:
Install to .../lib/viewglob instead of .../share/viewglob to conform
to the Filesystem Hierarchy Standard.
2004-09-19 20:11 Stephen Bach <sjbach@users.sourceforge.net>
* actions.c, actions.h, seer.c, sequences.c:
viewglob can be disabled (irrecoverably) with Ctrl-G Q (but not Ctr-G
Ctrl-Q because that's too easy to type).
* children.c, children.h, seer.c, exhibit.c, exhibit.h, gviewglob.c,
gviewglob.h:
Started implementing display-to-seer feedback communication.
2004-09-19 18:58 Stephen Bach <sjbach@users.sourceforge.net>
* actions.c, actions.h, children.c, children.h, seer.c, sequences.c:
The display is now toggleable with Ctrl-G <space> (or Ctrl-G
Ctrl-<space>).
2004-09-19 17:40 Stephen Bach <sjbach@users.sourceforge.net>
* sequences.c, cmdline.c:
Fixed an error in parse_digits introduced in 0.9 which was causing
obvious command line tracking issues (this should've been found
before release).
2004-09-18 23:09 Stephen Bach <sjbach@users.sourceforge.net>
* README, README.ms: viewglob has been run on OS X
* TODO: adding a few suggestions
* viewglob.1: fixing unescaped -'s and some formatting
* HACKING: more stuff added
2004-09-17 19:16 Stephen Bach <sjbach@users.sourceforge.net>
* wrap_box.c: fixed a size requisition bug
2004-09-10 18:27 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, dlisting.h, file_box.c, gviewglob.c, gviewglob.h:
- Re-enabled the context menus
- Fixed a bug with Show Hidden Files.
- Fixed an ancient #define typo.
2004-09-10 17:27 Stephen Bach <sjbach@users.sourceforge.net>
* exhibit.c, exhibit.h: added
* gviewglob/Makefile.am, dlisting.c, dlisting.h, gviewglob.c,
gviewglob.h, wrap_box.c, wrap_box.h:
Converted DListing into a widget.
2004-09-09 19:45 Stephen Bach <sjbach@users.sourceforge.net>
* HACKING, NEWS, ChangeLog: format to regular terminal width
2004-09-09 13:03 Stephen Bach <sjbach@users.sourceforge.net>
* configure.ac:
- Adding check for sed (used in init-viewglob.zshrc).
- Updating versions.
* viewglob.1: how to put in a real Ctrl-G
* sequences.c: fixing something that I "fixed" before
* NEWS: updating for 0.9.
2004-09-09 02:15 Stephen Bach <sjbach@users.sourceforge.net>
* README, README.ms, HACKING, TODO, viewglob.1: updating documentation
2004-09-08 23:58 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.bashrc, init-viewglob.zshrc, viewglob.in:
- Really disable saving of history in the zsh sandbox shell (the man
page seems to be wrong about setopt norcs).
- Sandbox shells can only call programs in the viewglob directory
(from the path).
2004-09-08 16:54 Stephen Bach <sjbach@users.sourceforge.net>
* actions.c, buffer.c, buffer.h, circular.h, cmdline.c, cmdline.h,
seer.c, sequences.c:
More changes to get back to the level of functionality
pre-reorganization.
2004-09-08 01:47 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c, gviewglob.h, actions.c, seer.c, sequences.c:
Finished keyboard navigation for now. Can use Ctrl-"key" in addition
to just "key" (it's easier to type).
2004-09-07 20:27 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am, HACKING: adding HACKING document
2004-09-07 19:15 Stephen Bach <sjbach@users.sourceforge.net>
* seer.c, sequences.c:
- Fixing outputting of spaces
- Further implementing of keyboard navigation.
2004-09-07 17:45 Stephen Bach <sjbach@users.sourceforge.net>
* buffer.c, buffer.h, circular.h: added
* src/Makefile.am, actions.c, actions.h, cmdline.c, cmdline.h, seer.c,
seer.h, sequences.c, sequences.h:
Large code reorganization -- it's much cleaner and makes more sense
now.
2004-09-05 20:43 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c, gviewglob.h, src/Makefile.am, cmdline.c, sanitize.c,
seer.c, seer.h, sequences.c, actions.h, actions.c:
Getting ready to implement terminal navigation of the display.
2004-09-05 16:18 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c: differentiated the appearance of restricted dlistings.
2004-09-05 14:51 Stephen Bach <sjbach@users.sourceforge.net>
* README.ms, viewglob.1, seer.c, sequences.c, viewglob.in:
Replaced "command-line" with "command line".
* viewglob.1, viewglob.in: updated for zsh.
2004-09-05 13:52 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am, src/Makefile.am:
gviewglob.1 and gviewglob are installed as symlinks instead of copies.
2004-09-05 00:39 Stephen Bach <sjbach@users.sourceforge.net>
* configure.ac, gviewglob.c, gviewglob.h, src/Makefile.am,
glob-expand.c, glob-expand.h, seer.c, seer.h, viewglob.in:
Now the version and release date only needs to be changed in one
place.
* gviewglob/Makefile.am: icons.h built less incrementally.
2004-09-04 22:40 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.zshrc: hardened the sandbox and user shell.
* seer.c: have the bash sandbox shell use the init-viewglob file.
* glob-expand.c, viewglob.in, viewglob.1:
Removing compare-mode flag. Comparisons will always be done by inode,
since that's really the only sensible way.
2004-09-04 21:06 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c, ptutil.c.diff, ptutil.c.viewglob, sequences.c,
sequences.h:
Integrating a patch from Kevin B. McCarty which fixes several build
warnings.
* init-viewglob.bashrc, init-viewglob.zshrc: adding GPL notice.
2004-09-04 19:37 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.bashrc, init-viewglob.zshrc, sequences.c, viewglob.in:
- Removed PS2 sequence functionality (wasn't used anyway).
- Executing viewglob while it's already running now disallowed.
2004-09-04 17:10 Stephen Bach <sjbach@users.sourceforge.net>
* cmdline.c, cmdline.h, seer.c, sequences.c, sequences.h:
- Removed a kludge.
- Fixed a bug with seqbuff holding multiple sequences.
- Improved zsh handling.
2004-09-04 14:09 Stephen Bach <sjbach@users.sourceforge.net>
* children.h, cmdline.c, cmdline.h, init-viewglob.bashrc,
init-viewglob.zshrc, seer.c, seer.h, sequences.c, sequences.h:
- Code reorganization.
- Fixed unreferenced memory bug.
- Improved zsh support.
2004-09-03 16:19 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.sh.in: removed
* init-viewglob.bashrc, init-viewglob.zshrc: added
* src/Makefile.am, seer.c, seer.h, viewglob.in:
- Preliminary zsh support.
- Fixed transcript naming bug.
- Fixed bug involving directory names with special characters.
2004-08-31 11:15 Stephen Bach <sjbach@users.sourceforge.net>
* NEWS, README, README.ms, TODO, configure.ac, viewglob.1, gviewglob.h,
glob-expand.h, seer.h, viewglob.in:
Updates for release 0.8.4.
2004-08-30 21:34 Stephen Bach <sjbach@users.sourceforge.net>
* file_box.c, file_box.h: use gchars instead of GStrings.
2004-08-30 21:03 Stephen Bach <sjbach@users.sourceforge.net>
* file_box.c, file_box.h, gviewglob.c, gviewglob.h, wrap_box.c,
wrap_box.h:
- No more reliance on a constant 34 width for the scrollbar.
- Fixed huge bug with wrap box size requisitions.
2004-08-26 11:35 Stephen Bach <sjbach@users.sourceforge.net>
* NEWS, README, README.ms, configure.ac, viewglob.1, gviewglob.h,
glob-expand.h, seer.h, viewglob.in:
Updates for release 0.8.3.
2004-08-25 22:06 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, file_box.c, gviewglob.c, wrap_box.c: tweaked the layout.
* viewglob.1: info about new directory reference method, removed bugs.
2004-08-25 20:25 Stephen Bach <sjbach@users.sourceforge.net>
* seer.c: fixed a tab-completion bug.
2004-08-25 19:25 Stephen Bach <sjbach@users.sourceforge.net>
* glob-expand.c:
If a file argument has a trailing '/', it is also treated as a
directory, i.e. it will show a listing for that directory if valid.
This way you can see the contents of a directory in gviewglob without
referencing a file in that directory first. Idea submitted by Pavel
Tavoda.
2004-08-25 17:30 Stephen Bach <sjbach@users.sourceforge.net>
* init-viewglob.sh: removed
* init-viewglob.sh.in: added
* src/Makefile.am, children.c, children.h, seer.c, seer.h, viewglob.in:
- No more ". ./blah/init-viewglob.sh" cluttering .bash_history.
2004-08-25 00:41 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, file_box.c, file_box.h, gviewglob.c, gviewglob.h,
wrap_box.c, wrap_box.h:
- Fixed the scrollbar-not-rescaling issue.
- Large performance increase when dealing with directories with many
files.
2004-08-23 00:00 Stephen Bach <sjbach@users.sourceforge.net>
* AUTHORS, NEWS, README, README.ms, configure.ac, viewglob.1,
gviewglob.h, glob-expand.h, seer.h, viewglob.in:
Updates for release 0.8.2.
2004-08-22 23:10 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c:
Put some space to the left of the directory heading labels.
2004-08-22 22:45 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob/Makefile.am, dlisting.c, file_box.c, file_box.h,
gviewglob.c, gviewglob.h, wrap_box.c, wrap_box.h:
Fixing more build warnings.
2004-08-22 21:30 Stephen Bach <sjbach@users.sourceforge.net>
* gviewglob.c, gviewglob.h: scale file icons to text size.
2004-08-22 19:03 Stephen Bach <sjbach@users.sourceforge.net>
* children.c, cmdline.c, glob-expand.c, glob-expand.h, hardened_io.c,
misc.c, ptutil.c.diff, sanitize.c, sanitize.h, seer.c, seer.h,
sequences.c, viewglob-error.c, viewglob-error.h:
Fixed a bunch of build warnings and a few bugs (how did I miss these).
2004-08-22 17:30 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am: create (symlink) and install gviewglob.1
* src/Makefile.am:
Fixed small bug where scripts were being installed non-executable.
* gviewglob/Makefile.am: added the new .pngs.
2004-08-22 14:10 Stephen Bach <sjbach@users.sourceforge.net>
* hardened_io.c, seer.c: improved a commonly seen error message.
* gviewglob.c, gviewglob.h, file_box.c, dlisting.c, gviewglob/common.h
viewglob.in:
Changed the default file display limit from 300 to 500.
2004-08-20 21:35 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, dlisting.h: cleanup.
* file_box.c, file_box.h:
Added file_box_get_show_hidden_files() and
file_box_get_file_display_limit().
2004-08-20 19:35 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c, dlisting.h: migrated some code.
* gviewglob.c, gviewglob.h:
- Use BUFSIZ for the get_*_data functions.
- Increased default file display limit to 500.
2004-08-20 18:28 Stephen Bach <sjbach@users.sourceforge.net>
* gnome-dev-symlink.png, gnome-fs-blockdev.png, gnome-fs-chardev.png,
gnome-fs-executable.png gnome-fs-fifo.png, gnome-fs-socket.png:
Added.
* gnome-fs-directory.png, gnome-fs-regular.png: changed default icons.
* Makefile.am, file_box.c, file_box.h, gviewglob.c, glob-expand.c,
glob-expand.h:
Added detection capability and icons for the rest of the basic Unix
file types: block file, character file, fifo, symlink, and socket.
Also executable regular files.
2004-08-20 01:12 Stephen Bach <sjbach@users.sourceforge.net>
* wrap_box.c, wrap_box.h, file_box.c:
Wrote wrap_box_pack_pos to kill two birds with one stone.
2004-08-19 22:28 Stephen Bach <sjbach@users.sourceforge.net>
* glob-expand.c:
Fixed bug where directories at root had double leading slashes.
* file_box.c: removed unnecessary text conversion.
2004-08-19 22:06 Stephen Bach <sjbach@users.sourceforge.net>
* fitem.c, fitem.h: incorporated into file_box.{c,h} and removed.
* file_box.c, file_box.h, dlisting.c, dlisting.h, gviewglob.c,
gviewglob.h:
- Code reorganization mostly completed.
- Files are always displayed if they're selected, even if they're over
the limit or hidden.
2004-08-19 01:55 Stephen Bach <sjbach@users.sourceforge.net>
* viewglob.in:
Ignore comments and newlines in config file, and report bad options.
* file_box.c, file_box.h: added.
* dlisting.c, dlisting.h, gviewglob.c, gviewglob.h, wrapbox.c,
wrapbox.h:
Beginning large code reorganization.
2004-08-11 14:46 Stephen Bach <sjbach@users.sourceforge.net>
* Makefile.am: adding gviewglob/common.h.
* configure.ac: updating version.
2004-08-11 14:21 Stephen Bach <sjbach@users.sourceforge.net>
* viewglob.1: added info about the context menu.
* README.ms, README:
Removed the safety warning, as I'm now comfortable there's no danger.
* viewglob.in: updated version.
* NEWS: updated for next release.
2004-08-11 14:11 Stephen Bach <sjbach@users.sourceforge.net>
* glob-expand.c, glob-expand.h, seer.c, seer.h, gviewglob.c,
gviewglob.h:
Now report versions with -V flag.
2004-08-11 13:00 Stephen Bach <sjbach@users.sourceforge.net>
* dlisting.c: more hspacing between FItems in WrapBoxes.
* gviewglob.c: more vspacing between DListings.
* seer.c, seer.h, children.c, children.h, gviewglob.c, gviewglob.h:
Using separate fifos for glob and cmd data so that they don't bleed
into each other.
2004-08-10 18:10 Stephen Bach <sjbach@users.sourceforge.net>
* seer.c, seer.h, misc.c: graceful exit on SIGTERM.
* sanitize.c: fixed processing error with \ and ' '.
* gviewglob.c:
Use GtkEntry instead of GtkTextView for cmdline widget to prevent
forced window resizing.
2004-08-08 13:56 Stephen Bach <sjbach@users.sourceforge.net>
* Initial release.
|