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 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
|
2004-03-30 16:04 tsauter
* doc/grdesktop.1: update the manpage
2004-03-30 16:03 tsauter
* doc/: .cvsignore, grdesktop.1, grdesktop.sgml: include the
manpage in original tarball, remove sgml file
2004-03-30 15:59 tsauter
* configure.ac: yeah. new version :-)
2004-03-30 15:58 tsauter
* TODO: remove some tasks from todo list
2004-03-30 15:56 tsauter
* help/C/Makefile.am: remove invalid character from makefile? (fix
debian bug #231737)
2004-03-30 15:47 tsauter
* po/: de.po, grdesktop.pot: update pot-file/ german translation
2004-03-30 15:17 tsauter
* src/run.c: rewrite the cmdline generation code. run ssh in
batchmode (no more userinput to the ssh process)
2004-03-30 14:31 tsauter
* src/: optbox.c, options.c, sshbox.c, sshbox.h: load and save ssh
settings from gconf database
2004-03-30 14:08 tsauter
* src/: optbox.c, sshbox.c, sshbox.h: all GUI elements are working
now
2004-03-30 13:43 tsauter
* src/sshbox.c: fix label string, this is the hostname, not the
password
2004-03-30 13:33 tsauter
* src/options.c: save and reload the option to use ssh or not
2004-03-04 12:29 tsauter
* help/C/Makefile.am: fix automake error
2004-03-04 12:24 tsauter
* m4/: codeset.m4, gettext.m4, glibc21.m4, iconv.m4, isc-posix.m4,
lcmessage.m4, progtest.m4: merge m4 macros
2004-03-04 12:22 tsauter
* po/Makefile.in.in: autogenerated version with the upstream
version
2004-03-04 12:22 tsauter
* po/POTFILES.in: update source files
2004-03-04 12:22 tsauter
* po/: de.po, es.po, fr.po: update translation files
2004-03-04 12:18 tsauter
* INSTALL: merge new version from upstream
2004-03-04 12:00 tsauter
* .cvsignore, ABOUT-NLS: this file is automaticly generated
2004-03-04 11:58 tsauter
* .cvsignore, config.h.in: remove this file, it's automaticly
created by autoheader
2004-03-04 11:56 tsauter
* Makefile.am, configure.ac: use glib gettext support
2004-03-04 11:55 tsauter
* src/main.c: if we have NLS enabled, we can use gettext
2004-03-03 15:32 tsauter
* src/: optbox.c, sshbox.c, sshbox.h: finish ssh dialog (GUI)
2004-03-03 13:23 tsauter
* doc/Makefile.am: we still need support to install the manpage, of
course :-)
2004-03-03 13:14 tsauter
* configure.ac, doc/Makefile.am: remove docbook-to-man dependency.
I will ship the generated manpages in the tarball/ print a
warning if we use the default keymap path
2004-03-03 12:28 tsauter
* configure.ac: fix problem if no keymap-path is specified. We are
using the "default" path now
2004-03-03 00:54 tsauter
* src/optbox.c: reformat the dialogbox for ssh options
2004-03-03 00:45 tsauter
* src/options.c: define the hostname variable at the top of the
while loop
2004-03-03 00:42 tsauter
* src/options.c: hide warnings if gconf values are unassigned (only
useful for debugging)
2004-03-02 17:47 tsauter
* src/: global.h, optbox.c, optbox.h: add a new checbox and
buttonbox for the new ssh dialog
2004-03-02 14:59 tsauter
* src/: sshbox.c, sshbox.h: a simple dialog box
2004-03-02 14:25 tsauter
* src/: Makefile.am, sshbox.c, sshbox.h: start include an extra box
for ssh parameters
2004-02-27 07:42 tsauter
* src/options.c: add a non-common display resolution
2004-02-04 17:02 tsauter
* src/options.c: fix segfault in loadOptions(), uninitialized gconf
values can produce a segfault
2004-02-03 11:46 tsauter
* ChangeLog, Makefile.am, NEWS, README, TODO, configure.ac,
doc/Makefile.am, doc/grdesktop.sgml, help/Makefile.am,
help/C/Makefile.am, pixmaps/Makefile.am, src/Makefile.am,
src/btnbox.c, src/btnbox.h, src/global.h, src/main.c, src/main.h,
src/optbox.c, src/optbox.h, src/options.c, src/options.h,
src/rdpparse.c, src/rdpparse.h, src/run.c, src/run.h,
src/srvsel.c, src/srvsel.h: $grdesktop: $ -> $Id: $
2004-02-03 11:42 tsauter
* AUTHORS: $grdesktop: $ -> $Id: $
2004-02-03 10:51 tsauter
* configure.ac, grdesktop.spec: update version: we make a bugfix
release
2004-02-03 10:49 tsauter
* src/options.c: save clientname (fix!)
2004-02-03 10:47 tsauter
* src/optbox.c: enable the checkbox for attaching to console, if
the user select rdp protocol 5.1 or higher
2004-02-03 10:39 tsauter
* src/options.c: fix memory leak problem while loading licence
filenames
2004-02-03 09:22 tsauter
* src/btnbox.c: insert year 2004 into copyright field
2004-02-03 09:18 tsauter
* configure.ac, grdesktop.spec: prepare source tree for new
upcomming version 0.21
2004-02-02 15:05 tsauter
* src/: global.h, optbox.c, options.c: replace normal text entry
for clientname with a combo box. fill this combo box with
available license keys from ~/.rdesktop/.licence.*
2003-11-18 10:23 tsauter
* src/: main.c, run.c, run.h: drop my own fork/waitpid and use
g_spawn_sync instead
2003-11-17 17:28 tsauter
* src/run.c: remove debug
2003-11-17 17:25 tsauter
* po/de.po: include ssh-host translation
2003-11-17 17:21 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: include
support for ssh remote execution
2003-11-12 15:47 tsauter
* TODO: again and again and again
2003-11-12 15:47 tsauter
* Makefile.am, grdesktop.applications, grdesktop.desktop,
grdesktop.keys, grdesktop.mime: YEAH! better gnome support.
2003-11-12 15:47 tsauter
* TODO: lots of work :(
2003-11-12 14:49 tsauter
* .cvsignore: ignore debian files
2003-11-12 14:47 tsauter
* configure.ac, grdesktop.spec: create a minor subversion
2003-11-12 14:44 tsauter
* src/run.c: fix missing blank in generated command line.
2003-11-12 14:41 tsauter
* po/de.po: fix de translation.
2003-11-12 14:37 tsauter
* src/run.c: change title name
2003-11-12 14:35 tsauter
* src/: btnbox.c, global.h, optbox.c, options.c, run.c: Rename some
widgets
2003-11-12 14:23 tsauter
* po/de.po: Update german translation
2003-11-12 14:09 tsauter
* .cvsignore: ignore debian/{autoconf,automake} files
2003-11-12 14:07 tsauter
* src/: global.h, main.c, optbox.c, optbox.h, options.c, options.h,
run.c: Insert support for sound redirection
2003-11-12 14:07 tsauter
* pixmaps/: sound.png, Makefile.am: Insert a new icon for sound
support
2003-11-09 10:14 tsauter
* grdesktop.spec: upgrade rpm spec file
2003-11-07 15:41 tsauter
* configure.ac: update grdesktop version
2003-11-07 15:41 tsauter
* po/de.po: update german translation
2003-11-07 13:41 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: - add
support for rdesktop "attach to console" - add support for
rdesktop wm keybindings
2003-11-06 18:21 tsauter
* src/: Makefile.am, global.h, main.c, optbox.c, optbox.h,
options.c, options.h, run.c: Insert color/rdp5.1 support from
rdesktop 1.3
2003-11-06 18:21 tsauter
* configure.ac: remove old color support pre-compiler definitions
2003-06-23 13:45 tsauter
* src/: btnbox.c, btnbox.h: insert an new help button use stock
icons for help and about
2003-06-23 13:26 tsauter
* src/: global.h, main.c, run.c: remove the alarm signal, it isn't
used any longer
2003-06-23 12:21 tsauter
* configure.ac: correct libtool problem (missing package name)
2003-06-23 12:17 tsauter
* po/Makefile.in.in: fix problem with automake1.7
2003-06-23 12:13 tsauter
* help/: omf.make, xmldocs.make, C/.cvsignore, C/Makefile.am: gnome
docu is now correctly installed
2003-06-18 16:41 tsauter
* configure.ac, src/Makefile.am, src/optbox.c, src/options.c,
src/run.c: Include new rdesktop cvs color support
2003-06-18 16:06 tsauter
* src/run.c: Store options _after_ the conntection has been closed
2003-06-18 16:04 tsauter
* src/options.c: Fix error saveServers handling
2003-06-18 15:45 tsauter
* src/: btnbox.c, run.c, run.h: Remove the old unused wathing
thread. Save options before forking.
2003-05-22 17:52 tsauter
* src/rdpparse.c: fix ibm compiler error
2003-05-14 17:46 tsauter
* src/Makefile.am: try to fix gconf problem
2003-05-14 17:26 tsauter
* src/options.c: remove hostname debugging
2003-05-14 16:08 tsauter
* configure.ac: change minor number
2003-05-14 16:07 tsauter
* po/: de.po, grdesktop.pot: update translation files
2003-05-14 15:43 tsauter
* src/: main.c, main.h: make locales working
2003-05-14 14:55 tsauter
* src/options.c: remove unused variable
2003-03-29 13:41 tsauter
* src/: Makefile.am, emain.c, emain.h: Remove grdesktope. we do
this now with nautilus
2003-03-29 11:29 tsauter
* help/C/: grdesktop.xml: Fix tag missmatch
2003-03-29 11:16 tsauter
* help/C/: .cvsignore, Makefile.am, grdesktop-C.omf, grdesktop.xml,
legal.xml: Include files for help
2003-03-29 11:14 tsauter
* help/: .cvsignore, Makefile.am, xmldocs.make: Include new
scrollkeeper help basis directory
2003-03-29 11:12 tsauter
* pixmaps/grdesktop-mainwin.png: Insert new pixmap from the
mainwindow for the scroolkeeper docu.
2003-03-29 11:09 tsauter
* Makefile.am, configure.ac: Include new sub directory "help". Fix
minor errors in configure.ac
2003-03-29 11:08 tsauter
* po/: de.po, es.po, fr.po, grdesktop.pot: Updating localized
po-files
2003-03-08 21:56 tsauter
* po/grdesktop.pot: Update the localization
2003-03-08 21:51 tsauter
* po/: .cvsignore, POTFILES.in, de.po, es.po, fr.po: Update the
localization
2003-03-01 22:10 tsauter
* configure.ac: Fix error, to handle gconf schema files
2003-03-01 22:09 tsauter
* src/grdesktop.schemas: Insert keys in the schema file
2003-02-28 02:13 tsauter
* configure.ac, src/Makefile.am, src/grdesktop.desktop,
src/grdesktop.schemas: Installing gnome desktop and schema files
2003-02-27 23:38 tsauter
* src/run.c: Restore run function (remove old debug flags)
2003-02-27 23:19 tsauter
* src/options.c: Read serverlist from gconf
2003-02-27 22:09 tsauter
* src/: optbox.c: Disable colorize menu (not supported by rdesktop)
2003-02-27 22:03 tsauter
* src/: btnbox.c, main.c, optbox.c, options.c, options.h, run.c:
Read/write all options now from gconf db
2003-02-27 15:43 tsauter
* src/options.c: use warning box
2003-02-27 15:40 tsauter
* src/: Makefile.am, btnbox.c, btnbox.h, errmsg.c, errmsg.h,
optbox.h, options.c, options.h, rdpparse.c, rdpparse.h, run.c,
run.h: Remove errormsg and use gnome_error_dialog()
2003-02-27 15:22 tsauter
* src/: Makefile.am, aboutbox.c, aboutbox.h, btnbox.c, btnbox.h:
Use gnomes internal aboutbox
2003-02-27 15:18 tsauter
* src/: aboutbox.h, emain.h, errmsg.h, global.h, main.h, options.c,
options.h, run.c: Include gnome.h/ Save serverlist into gconf
2003-02-27 14:35 tsauter
* src/: Makefile.am, main.c, rdesktop.c, rdesktop.h, run.c: Remove
rdesktop.[ch], we don't support old versions anymore.
2003-02-27 14:31 tsauter
* src/: optbox.c, options.c, options.h, rdesktop.c, run.c: Full
drop of old rdesktop releases support.
2003-02-27 14:26 tsauter
* src/: global.h, main.c, optbox.c, options.c, options.h: Pump all
to gnome2. Use gconf instead options file. Drop oldworld
support. Yes, we only support rdesktop1.2 from this point.
2003-02-27 14:18 tsauter
* src/: aboutbox.c, aboutbox.h, global.h, main.c, main.h,
options.c, options.h, run.c: BUG: Submitted by: Reviewed by:
Approved by:
2003-02-27 14:18 tsauter
* configure.ac, src/Makefile.am: Include support for gnome2 desktop
2003-02-27 10:46 tsauter
* configure.ac, grdesktop.spec: Prepare for new release 0.19
2003-02-27 00:09 tsauter
* po/de.po: Update german translation
2003-02-26 23:59 tsauter
* po/: es.po, fr.po: Merge new translation files
2003-02-26 22:31 tsauter
* src/optbox.c: Fix GUI elements for client hostname
2003-02-26 22:17 tsauter
* src/optbox.c: Change title (make it more generic)
2003-02-26 22:15 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: Include
support for display encryption (france ts)
2003-02-05 16:01 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: Insert
support to fake clientname
2003-02-02 20:49 tsauter
* src/main.c: Fix problem on bigendian archs (refer tp debian bug
#179482)
2003-01-30 12:03 tsauter
* src/: emain.c, emain.h: Build file menu, start filling the
listbox
2003-01-30 08:03 tsauter
* src/: emain.c, emain.h: Start writing the main window
2003-01-29 16:47 tsauter
* src/: Makefile.am, emain.c, emain.h: Include new grdesktop
explorer binary. Initital revision
2003-01-29 16:46 tsauter
* src/.cvsignore: Ignore new explorer binary and core
2003-01-29 16:36 tsauter
* src/: rdesktop.c, run.c: Fix problem with 1.2beta and watch
thread (simply disable it)
2003-01-29 14:45 tsauter
* .cvsignore: Ignore timestamp files
2003-01-29 14:43 tsauter
* configure.ac, src/Makefile.am, src/global.h: Keymap path is now
configurable via configure script
2003-01-29 14:15 tsauter
* .cvsignore: Ignore vim swapfiles/ depcomp binary from automake
2003-01-21 20:28 tsauter
* grdesktop.spec: Include updated rpm-spec file
2003-01-20 20:23 tsauter
* AUTHORS, configure.ac, po/es.po: Insert spanish translation
2003-01-18 01:14 tsauter
* configure.ac: Make new version 0.18
2003-01-10 21:54 tsauter
* src/optbox.c: BUX: Fix some copy'n'paste errors
2002-12-23 14:58 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: Insert
support for -D switch (hide wm decoration)
2002-12-23 14:44 tsauter
* src/global.h: Change default keymap path
2002-12-21 00:52 tsauter
* AUTHORS: Insert new thanks to
2002-12-20 12:09 tsauter
* src/run.c: make grdesktop compatible to latest rdesktop cvs
version
2002-11-14 12:05 tsauter
* AUTHORS, configure.ac, po/fr.po: Include french translation
2002-11-11 21:57 tsauter
* configure.ac, po/de.po: Include new translations for 0.17 release
2002-11-07 13:33 tsauter
* src/run.c: Fix: logfiles are now deleted (we have the correct pid
now)
2002-11-07 13:28 tsauter
* src/run.c: Delete the logfile after the user has got the error
dialog
2002-11-07 13:25 tsauter
* src/run.c: Now we known, if the rdesktop doesnt exit successfull
2002-11-06 12:09 tsauter
* doc/Makefile.am: Fix make abort, if the upper case manpage was
not found
2002-11-06 12:06 tsauter
* doc/Makefile.am: Move generated man-pages to lower cases if
needed
2002-11-06 12:01 tsauter
* configure.ac, doc/Makefile.am: First use the docbook-to-man
command, because it generates better man-pages, cleanup docbook
dummy files
2002-11-06 11:41 tsauter
* src/: global.h, optbox.c, options.c, options.h, run.c: we can now
handle both keymap types
2002-11-06 11:23 tsauter
* src/: global.h, main.c, options.c, options.h: Fill keymap list
with available languages for oldworld
2002-11-06 00:30 tsauter
* src/: optbox.c, options.c, options.h: Create two new functions
for oldworld and newworld rdestkop versions to set the correct
keymap parameter
2002-11-05 23:20 tsauter
* src/run.c: Set the window title of rdesktop only on newer
versions
2002-11-05 23:15 tsauter
* src/run.c: create the final rdesktop nicer
2002-11-05 22:41 tsauter
* src/rdesktop.c: use rdesktop binary from global.h, so we can do
easier debugging
2002-11-05 17:56 tsauter
* src/: rdesktop.c, rdesktop.h: Finish simple rdesktop version
detection
2002-11-05 17:55 tsauter
* src/: main.c, main.h: Try to detect rdesktop version at startup
2002-11-05 17:54 tsauter
* doc/.cvsignore: Ignore created dummy manpage files
2002-11-05 17:17 tsauter
* src/: Makefile.am, rdesktop.c, rdesktop.h: Include new source
files for rdesktop handling
2002-11-05 17:14 tsauter
* src/options.c: spell errors
2002-11-05 16:29 tsauter
* src/: rdpparse.c, rdpparse.h: Fix error while reading rdpfiles
and blanks in keys/ fix compiler warnings
2002-11-05 16:28 tsauter
* src/options.h: Fix compiler warnings
2002-11-05 16:01 tsauter
* src/.cvsignore: Ignore test rdp files
2002-11-05 16:01 tsauter
* src/: run.c, rdpparse.c: Change debug options
2002-11-05 16:00 tsauter
* src/main.c: Autostart the connection
2002-11-05 15:31 tsauter
* src/main.c: Autostart only with valid rdp file from commandline
2002-11-05 15:28 tsauter
* src/: main.c, main.h: Include functions for help and usage
2002-11-05 12:38 tsauter
* src/main.c: Parse now the command line options
2002-11-05 11:51 tsauter
* src/: main.c, main.h: Load an rdpfile if given on commandline
2002-11-05 11:51 tsauter
* src/: rdpparse.c, rdpparse.h: Dont parse the rdpfile in signal
handlers, create a separat function to allow us the loading of
rdpfiles from commandline
2002-11-05 11:32 tsauter
* src/: options.c, options.h: User gtk_get_user_name instead of
pwd.h functions
2002-11-01 15:32 tsauter
* AUTHORS: Include realname of che
2002-11-01 14:24 tsauter
* TODO: Remove todo tasks, done in latest release
2002-11-01 14:16 tsauter
* AUTHORS, grdesktop.spec: Include redhat rpm spec-file
2002-11-01 01:46 tsauter
* configure.ac: Create new release
2002-11-01 01:44 tsauter
* po/de.po: Modify german translation file
2002-11-01 01:43 tsauter
* po/.cvsignore: Ignore vi lockfiles
2002-11-01 01:06 tsauter
* src/rdpparse.c: Fix problem with newline characters and gtk
2002-11-01 01:01 tsauter
* src/: rdpparse.c, rdpparse.h: Writing rdp files, and print
override warning
2002-11-01 00:27 tsauter
* src/options.c: Fix screensize error: 600->640
2002-10-31 19:39 tsauter
* src/rdpparse.c: Print an error message if no file was selected
2002-10-31 18:24 tsauter
* src/run.c: Remove comments and insert new one
2002-10-31 18:22 tsauter
* src/options.c: Load also the hostnames from options and rdp-files
2002-10-31 18:10 tsauter
* src/: global.h, main.c, optbox.c, options.c, options.h,
rdpparse.c: Create an extra function to load the options into the
dialog, and call this function also to load rdp files
2002-10-31 15:45 tsauter
* src/: rdpparse.c, rdpparse.h: parse and set now all available
options for rdesktop
2002-10-31 14:56 tsauter
* src/: rdpparse.c, rdpparse.h: Sample entries from rdp file are
now stored into hash table
2002-10-31 14:24 tsauter
* src/: rdpparse.c, rdpparse.h: Reading rdp files by file
(unicode/non-unicode)
2002-10-31 11:27 tsauter
* configure.ac, doc/Makefile.am: Check for both docbook2man and
docbook-to-man commands
2002-10-29 23:04 tsauter
* src/: optbox.c, optbox.h, rdpparse.c, rdpparse.h: Create the
fileboxes and signals
2002-10-29 22:28 tsauter
* TODO: Remove task for rwin, because rdesktop 2 will be released
soon
2002-10-29 22:27 tsauter
* src/: Makefile.am, rdpparse.c, rdpparse.h: Start supporting of
microsoft rdp-files
2002-10-29 22:24 tsauter
* src/btnbox.c: Display the about dialog without image (maybe to
long on other languages
2002-10-29 22:22 tsauter
* src/: btnbox.c, global.h, main.c, optbox.c: Remove the widget
hash and replace it with global variables.
2002-10-29 21:10 tsauter
* .cvsignore, po/.cvsignore, src/.cvsignore: include more files in
cvsignore files, and resort the entries
2002-10-29 21:06 tsauter
* aclocal.m4, config.guess, config.h.in, config.sub, configure.ac,
configure.in, install-sh, ltconfig, ltmain.sh, missing,
mkinstalldirs: Make new autoconf/automake configuration and
remove all unused dynamic generated files from cvs.
2002-10-29 20:56 tsauter
* src/: aboutbox.h, btnbox.h, config.h, errmsg.h, global.h, main.h,
optbox.h, options.h, run.h, srvsel.h: replace the config.h file
with global.h. $(topdir)/config.h file is now used.
2002-10-29 20:53 tsauter
* src/Makefile.am: Create new autoconf/automake configuration
2002-10-28 14:52 tsauter
* src/: aboutbox.c, btnbox.c, config.h, errmsg.c, main.c, optbox.c,
run.c, srvsel.c: Make everything now workable, but sometimes with
global variables
2002-10-27 13:08 tsauter
* doc/grdesktop.sgml: Change license to Free Document License
2002-10-27 13:04 tsauter
* doc/Makefile.am, doc/grdesktop.sgml, pixmaps/Makefile.am: Insert
copyright notices in all nontrivial files
2002-10-27 12:59 tsauter
* AUTHORS, ChangeLog, INSTALL, Makefile.am, NEWS, README, TODO,
config.h.in, configure.in, src/Makefile.am, src/main.c,
src/options.c: Insert copyright notices in all nontrivial files
2002-10-27 00:51 tsauter
* src/: btnbox.c, config.h, main.c, optbox.c, run.c, run.h: Store
most of the global widgets in hash-table: NOT WORKING correct
2002-10-26 23:43 tsauter
* src/options.c: Skipping doubbled options
2002-10-26 23:37 tsauter
* src/: btnbox.c, config.h, main.c, optbox.c, options.c, run.c,
srvsel.c: Store option values now in hash-table
2002-10-26 17:26 tsauter
* src/optbox.c: Implement signals fir the open/save buttons
2002-10-26 17:09 tsauter
* pixmaps/Makefile.am, pixmaps/folder.png, src/optbox.c,
src/optbox.h: Insert save and load buttons; minor fixes in gui
2002-10-26 15:37 tsauter
* src/btnbox.c: Remove old unsed comments
2002-10-26 15:30 tsauter
* TODO, src/aboutbox.c, src/btnbox.c, src/errmsg.c: include icons
in buttons
2002-10-26 14:58 tsauter
* src/options.c: Fix pointer compiler errors
2002-10-26 14:49 tsauter
* src/: btnbox.c, optbox.c, options.c, run.c, run.h: Fix read
options/rename connect function to run_rdesktop
2002-10-26 13:14 tsauter
* src/: Makefile.am, btnbox.c, btnbox.h, main.h, run.c, run.h: Move
some generic funtions from btnbox.c to run.c
2002-10-26 13:04 tsauter
* src/: aboutbox.c, aboutbox.h, btnbox.c, btnbox.h, config.h,
errmsg.c, errmsg.h, main.c, main.h, optbox.c, optbox.h,
options.c, options.h, srvsel.c, srvsel.h: Ooops wrong lizenze
text in source files-> should be GPL and not LGPL
2002-10-26 12:52 tsauter
* TODO: Yeah. this task has been finished :-)
2002-10-26 12:51 tsauter
* doc/Makefile.am: Dont stop, if we have no docbook-to-man! (quick
and dirty hack)
2002-10-26 12:47 tsauter
* src/config.h: Change gint and gboolean to non-pointer elements
2002-10-26 12:23 tsauter
* src/optbox.c: Insert EN as keymap, if the directory doesnt
exists/ select EN if no other keymap was loaded
2002-10-26 12:19 tsauter
* src/.cvsignore: Ignore *bsd core dumps
2002-10-26 12:07 tsauter
* src/Makefile.am, .cvsignore, config.h.in, configure.in, ltconfig:
Include privat intl-dir if we have no system-wide libintl tools
2002-10-26 12:06 tsauter
* src/config.h: fix problems on platforms which have MAXHOSTNAMELEN
defined
2002-10-26 12:05 tsauter
* src/btnbox.h: include signal.h to avoid compiler warnings in obsd
2002-10-26 00:28 tsauter
* src/: btnbox.c, config.h, optbox.c, optbox.h, options.c: Include
special options, fix some prefious made errors
2002-10-26 00:10 tsauter
* pixmaps/: Makefile.am, settings.png: Include new icons for
settings register
2002-10-26 00:02 tsauter
* src/btnbox.c: Set the window title in the started rdesktop
2002-10-25 23:59 tsauter
* src/: btnbox.c, config.h, optbox.c, optbox.h, options.c: Insert
support for working directory in program register
2002-10-25 22:36 tsauter
* src/optbox.c: Get and set the keyboard selection: works now!
2002-10-25 21:22 tsauter
* src/optbox.c: Set minimum size for keyboard selection
2002-10-25 17:30 tsauter
* src/optbox.c: Replace the keyboard combo box with treeview: NOT
full working
2002-10-25 16:15 tsauter
* src/: optbox.c, options.c, options.h: Replace the color combo-box
with option menu
2002-10-25 15:05 tsauter
* src/optbox.c: Align all labels left, and insert the top
description
2002-10-25 13:18 tsauter
* src/optbox.c: Include top lables on top of the frame
2002-10-25 11:43 tsauter
* src/optbox.c: Reorder the widgets in program frame, and include
top label
2002-10-22 22:12 tsauter
* po/de.po: Fix error in character spec
2002-10-22 21:51 tsauter
* configure.in: Make new release: 0.15
2002-10-22 21:50 tsauter
* po/de.po: Merge new/changed gui elements
2002-10-22 17:46 tsauter
* doc/sample.rdp: Include sample microsoft rdp file
2002-10-22 17:27 tsauter
* TODO: again: add more tasks
2002-10-22 17:26 tsauter
* TODO: add more tasks
2002-10-22 17:20 tsauter
* src/: btnbox.c, config.h, optbox.c, optbox.h, options.c: Include
an runprog checkbox
2002-10-22 16:58 tsauter
* src/optbox.c: Dont store empty strings in config file
2002-10-22 16:56 tsauter
* pixmaps/Makefile.am, pixmaps/program.png, src/btnbox.c,
src/config.h, src/optbox.c, src/optbox.h, src/options.c: Include
support to start program on remote host
2002-10-22 16:18 tsauter
* src/: options.c, options.h: Preset username, if no username
option found
2002-10-22 16:03 tsauter
* src/btnbox.c: Show warnings only in debug mode
2002-10-22 15:48 tsauter
* src/btnbox.c: Gray the buttons, if we are in connect mode
2002-10-22 15:46 tsauter
* src/btnbox.c: Make sure child scucture is initialized with zero,
wait longer before respawn
2002-10-22 15:35 tsauter
* src/btnbox.c: After some time, we are going to sleep between the
check interval to ingrease processor time
2002-10-22 15:27 tsauter
* src/: btnbox.c, btnbox.h, config.h, main.c: Implement alarm
signal to kill rdesktop after max connection time
2002-10-22 13:31 tsauter
* src/: btnbox.c, config.h: Make better performance while
connecting, handle now everything over sigchild signal
2002-10-21 13:46 tsauter
* src/: btnbox.c, btnbox.h, config.h, main.c: Implement fork
support, to display dialog betweem connection
2002-10-20 15:29 tsauter
* pixmaps/Makefile.am, pixmaps/host.png, pixmaps/keyboard.png,
pixmaps/monitor.png, src/optbox.c: Include icons for the option
dialog
2002-10-20 02:31 tsauter
* src/: btnbox.c, btnbox.h: Start reading the fork() code, to hide
the mainwindow
2002-10-20 02:09 tsauter
* src/: config.h, main.c: Load now both images on startup/ and show
or hide it later
2002-10-20 01:17 tsauter
* src/: config.h, main.c: Load pixbuf animation
2002-10-20 00:57 tsauter
* po/de.po: Change german po file
2002-10-20 00:51 tsauter
* src/options.c: Set default colorsize, of no option was found
2002-10-18 23:20 tsauter
* pixmaps/: Makefile.am, animation.gif: Include image for animation
2002-10-18 22:18 tsauter
* src/aboutbox.c: Replace aboutdlg should fix errors on hppa arch
2002-10-18 22:14 tsauter
* src/errmsg.c: Remove unused comments
2002-10-18 22:12 tsauter
* src/errmsg.c: Create my own erro dialog and fix error
2002-10-18 21:39 tsauter
* doc/Makefile.am: Remove created man-pages on distclean
2002-10-15 18:04 tsauter
* configure.in: Make new release: 0.14
2002-10-15 17:38 tsauter
* src/options.c: Fix segfault
2002-10-15 17:38 tsauter
* src/optbox.c: Fill server list only, if we have servers
2002-10-15 17:31 tsauter
* po/de.po, src/optbox.c: Make some strings multilang/ insert these
strings into po files
2002-10-15 17:24 tsauter
* src/: optbox.c, options.c: Fix segfaults
2002-10-15 16:19 tsauter
* po/de.po: Create new translation
2002-10-15 16:19 tsauter
* po/POTFILES.in: Include new source files
2002-10-15 15:52 tsauter
* TODO, src/Makefile.am, src/aboutbox.c, src/aboutbox.h,
src/btnbox.c, src/btnbox.h: Change help btn to about; include
simple aboutbox
2002-10-15 14:16 tsauter
* src/btnbox.c: Hide rdesktop output and print warning on error
2002-10-15 14:04 tsauter
* src/: btnbox.c, optbox.c, options.c: Code cleanup, release all
allocated memory
2002-10-15 13:46 tsauter
* src/: btnbox.c, main.c, options.c: Store and load, if we shoudl
display the option box
2002-10-15 12:37 tsauter
* src/: btnbox.c, config.h, optbox.c, optbox.h: Syncronize the two
serversel boxes
2002-10-15 11:51 tsauter
* src/options.c: Don't print warnings on comment lines
2002-10-15 11:50 tsauter
* src/options.c: Print warning into config file/ don't try to split
comment lines
2002-10-15 11:45 tsauter
* src/optbox.c: Using english as default keymap
2002-10-15 11:41 tsauter
* src/: config.h, optbox.c, optbox.h: Load and store selected
keymap
2002-10-15 11:17 tsauter
* src/: btnbox.c, options.c, options.h: Executing the rdesktop
command with colorsize (corrently not supported by rdesktop, so
do nothing)
2002-10-15 11:08 tsauter
* src/optbox.c: Rais signal after loading color options to set
image
2002-10-15 10:55 tsauter
* pixmaps/: Makefile.am, colors_1.png, colors_2.png, colors_3.png,
colors_4.png: Replace color image with 265 colors/ insert new
truecolor images
2002-10-15 10:54 tsauter
* src/: config.h, main.c, optbox.c, options.c, options.h: Read and
store colorsel values, fix segfault in keyboard glist
2002-10-14 16:26 tsauter
* src/optbox.c: Remove colorsel, its not supported by rdesktop and
doesnt work :)
2002-10-14 16:06 tsauter
* pixmaps/: Makefile.am, colors.png, colors_1.png: Change pixmap
name
2002-10-14 16:04 tsauter
* src/: config.h, main.c, optbox.c, optbox.h, options.c, options.h:
Fill the color list, and load pixmap
2002-10-14 14:50 tsauter
* src/: optbox.c, options.c, options.h: Fix compiler warnings
2002-10-14 14:04 tsauter
* src/: optbox.c, optbox.h, options.c: Fix error with, screensize
loading
2002-10-14 13:54 tsauter
* src/: btnbox.c, optbox.c, options.c, options.h: Store and load
last selected screensize
2002-10-14 13:23 tsauter
* src/optbox.c: Store selected screensize in infos array
2002-10-14 12:41 tsauter
* src/optbox.c: Display selected screensize in label
2002-10-14 12:40 tsauter
* src/options.c: Load only screensizes lower than current screen
2002-10-14 11:47 tsauter
* src/: optbox.c, optbox.h, options.c, options.h: Fill screensize
page with proper values
2002-10-14 11:46 tsauter
* src/config.h: Make screensize label global, create screensize
glist
2002-10-14 11:46 tsauter
* src/main.c: Fill screen array
2002-10-14 10:51 tsauter
* src/options.c: Read the savepw value from config file
2002-10-14 10:26 tsauter
* src/: optbox.c, options.c: store savepw option in config file/
set savepw optbox
2002-10-14 10:21 tsauter
* src/: btnbox.c, options.c: store password only, if savepw is true
2002-10-14 10:16 tsauter
* src/: optbox.c, optbox.h: make the
username/password/domain/savepw elements working
2002-10-14 10:06 tsauter
* src/config.h: insert an new config value to save passwords
2002-10-13 21:42 tsauter
* src/: config.h, optbox.c, optbox.h: Reading the available keymaps
from rdesktop and fill the list
2002-10-13 21:07 tsauter
* src/: optbox.c, optbox.h: Include keyboad selection tab
2002-10-13 14:15 tsauter
* src/: optbox.c, optbox.h: Start createing the detailed dialog,
all elements are now displayed, but without any function
2002-10-13 14:01 tsauter
* src/: srvsel.c, srvsel.h: Remove the functions to created detail
elements. Should be in the optionbox files
2002-10-13 14:00 tsauter
* src/btnbox.c: Remove the comment, activate the detail box :)
2002-10-13 13:59 tsauter
* src/: config.h, main.h: Move PIXDIR definitian into global
config.h
2002-10-13 13:59 tsauter
* TODO: Remove the detail dialog, and inser about btn
2002-10-13 13:58 tsauter
* pixmaps/: Makefile.am, colors.png: Include new image for colorsel
2002-10-13 01:59 tsauter
* src/Makefile.am: $id$ -> $grdesktop$
2002-10-13 01:58 tsauter
* ChangeLog, .cvsignore: Fix error from autoconf
2002-10-13 01:55 tsauter
* .cvsignore, ChangeLog, Makefile.in, configure, doc/.cvsignore,
doc/Makefile.in, pixmaps/.cvsignore, pixmaps/Makefile.in,
po/ChangeLog, src/.cvsignore, src/Makefile.in: Again... remove
autogenerated files
2002-10-13 01:35 tsauter
* po/: .cvsignore, Makefile, Makefile.in, POTFILES: Remove some
autogenerated files
2002-10-13 01:35 tsauter
* po/POTFILES.in: Include new source file
2002-10-13 01:32 tsauter
* po/Makefile.in.in: Remove the generated .gmo files while
distclean
2002-10-13 00:22 tsauter
* src/: config.h, errmsg.c, errmsg.h, main.c, main.h, optbox.c,
optbox.h, options.c, options.h, srvsel.c, srvsel.h: $id$ ->
$grdesktop$
2002-10-13 00:17 tsauter
* src/: btnbox.c, btnbox.h: $id$ -> $grdesktop$
2002-10-12 22:47 tsauter
* ChangeLog: Update the ChangeLog file
2002-10-12 22:41 tsauter
* po/de.po: Replace with better translations
2002-10-12 13:24 tsauter
* configure, configure.in: New minor release: 0.12
2002-10-12 13:22 tsauter
* src/btnbox.c: Comment out the option button, for new release
2002-10-12 12:49 tsauter
* TODO, src/options.c, src/options.h: Replace all important
error/warning messages with the new errmsg dialogbox
2002-10-12 12:27 tsauter
* src/btnbox.c: FIX: display also an error, if hostame is empty
2002-10-12 12:25 tsauter
* configure, src/Makefile.am, src/Makefile.in, src/btnbox.c,
src/btnbox.h, src/errmsg.c, src/errmsg.h: Insert an error dialog
to display generic error messages and warnings
2002-10-12 12:02 tsauter
* doc/options.samples: Update the samples
2002-10-12 11:59 tsauter
* TODO: FIX: spelling error
2002-10-12 11:58 tsauter
* TODO, src/options.c, src/options.h: Files are now read/write
locked
2002-10-12 11:57 tsauter
* TODO: Insert new todo task
2002-10-12 00:17 tsauter
* Makefile.in, configure, configure.in: create new minor version
0.11
2002-10-12 00:13 tsauter
* TODO: Include the TODO file
2002-10-12 00:10 tsauter
* po/de.po: convert from iso8859-1 to utf8 (iconv)
2002-10-12 00:04 tsauter
* src/: btnbox.c, main.h: Remove all debug flages
2002-10-12 00:04 tsauter
* po/de.po: Create german po-file for current strings
2002-10-11 23:52 tsauter
* src/: btnbox.c, main.c, optbox.c, options.c, srvsel.c: Include
support for each string, change fprintf functions to g_error,
remove newlines in g_* functions
2002-10-11 23:38 tsauter
* ABOUT-NLS, Makefile.am, Makefile.in, aclocal.m4, configure,
configure.in, doc/Makefile.in, pixmaps/Makefile.in,
po/.cvsignore, po/ChangeLog, po/Makefile, po/Makefile.in,
po/Makefile.in.in, po/POTFILES, po/POTFILES.in, po/de.po,
src/Makefile.am, src/Makefile.in, src/btnbox.c, src/config.h,
src/main.c, src/options.c: Insert basic support for localization
2002-10-11 12:38 tsauter
* .cvsignore, Makefile.in, configure, doc/.cvsignore,
doc/Makefile.in, pixmaps/.cvsignore, pixmaps/Makefile.in,
src/.cvsignore, src/Makefile.in: Allow configure without running
autoconf/automake after checkout
2002-10-11 12:25 tsauter
* src/: btnbox.c, options.c, options.h: Write options to config
file
2002-10-11 10:48 tsauter
* src/options.c: Remove whitespaces from server line, and skip
comments
2002-10-11 10:43 tsauter
* src/options.c: Make the options parser more safe for whitespaces
and comments
2002-10-11 09:47 tsauter
* src/: btnbox.c, config.h, options.c: Change the type of
geometry/keymap to gchar/ read this values from config file
2002-10-10 12:32 tsauter
* configure.in: Fix configure gtk2 error message
2002-10-10 09:50 tsauter
* pixmaps/: Makefile.am, icon.xpm: Include icon in xpm format for
window managers
2002-10-10 08:54 tsauter
* configure.in: FIX: remove old testing binary name from rdesktop
test in configure
2002-10-09 23:40 tsauter
* configure.in: Make new major release: 0.10
2002-10-09 23:23 tsauter
* src/options.c: FIX: segfault on close
2002-10-09 18:01 tsauter
* doc/: options.samples, servers.samples: Include sample
configuration files
2002-10-09 16:31 tsauter
* src/: btnbox.c, btnbox.h, main.c, options.c: Try fixing segfault
on quit
2002-10-09 16:20 tsauter
* src/options.c: Start writing a simple file parser for options
2002-10-09 15:01 tsauter
* src/: btnbox.c, config.h, options.c, options.h: Create command
string from options/ Start reading default options from config
file
2002-10-09 15:00 tsauter
* src/main.c: Load default options
2002-10-09 14:59 tsauter
* configure.in: Check for rdesktop, and set new prog version
2002-10-09 14:59 tsauter
* doc/Makefile.am: Fix missing make target
2002-10-09 13:51 tsauter
* configure.in: New version 0.02
2002-10-09 12:16 tsauter
* configure.in: Change version number to more portable format
2002-10-09 12:15 tsauter
* src/: btnbox.c, optbox.c, options.c: FIX: rereading of entries
after writing
2002-10-09 11:18 tsauter
* src/options.c: Free alocated memory
2002-10-09 09:38 tsauter
* Makefile.am, configure.in, doc/.cvsignore, doc/Makefile.am:
Create the manpages during compile time. Check for docbook-to-man
in configure
2002-10-09 09:16 tsauter
* pixmaps/: Makefile.am, icon.png, icon.xcf: Include logo for
window managers
2002-10-08 23:34 tsauter
* doc/: .cvsignore, grdesktop.sgml: Include manpage for grdesktop
2002-10-08 22:52 tsauter
* src/btnbox.c: Storing return code from rdesktop
2002-10-08 17:37 tsauter
* src/: btnbox.c, options.c: Include last selected host into
popdown list
2002-10-08 17:30 tsauter
* src/: btnbox.c, config.h, srvsel.c: Reload server entries after
saving
2002-10-08 17:14 tsauter
* src/options.c: Remove debug printf
2002-10-08 17:07 tsauter
* src/options.c: FIX: double reading server entries
2002-10-08 16:52 tsauter
* src/btnbox.c: Extend the error message
2002-10-08 13:34 tsauter
* src/btnbox.c: Print an error message if no host selected
2002-10-08 12:36 tsauter
* src/: options.c, options.h: Create the config directory in ~
2002-10-08 12:25 tsauter
* src/: options.c, srvsel.c: FIX: load the server config file;
remove debug strings
2002-10-08 12:23 tsauter
* src/: Makefile.am, btnbox.c, config.h, options.c, options.h,
srvsel.c, srvsel.h: Include separate functions/module to load and
save the entries from server-listbox
2002-10-08 10:02 tsauter
* pixmaps/: topimage.png, topimage.xcf: Change the yellow gradient
2002-10-08 09:54 tsauter
* src/srvsel.h: Remove param include, and define MAXHOSTNAMELEN
direct
2002-10-08 09:17 tsauter
* .cvsignore: Ignore config.cache
2002-10-08 09:10 tsauter
* src/btnbox.c: Remove debugging texts
2002-10-08 09:10 tsauter
* pixmaps/Makefile.am: Install pixmaps to pixmaps/grdesktop
2002-10-07 23:17 tsauter
* src/: main.c: Include cvs tag id
2002-10-07 23:08 tsauter
* src/: btnbox.c, btnbox.h, srvsel.c, srvsel.h: Prepare to store,
the server list into config file.
2002-10-07 23:01 tsauter
* src/: btnbox.c, srvsel.c: Remove old unused code in sources
2002-10-07 22:57 tsauter
* src/: config.h, srvsel.c, srvsel.h: Extend the server config
parser
2002-10-07 22:31 tsauter
* .cvsignore: Ignore autoconf/automake files
2002-10-07 21:40 tsauter
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
aclocal.m4, config.guess, config.sub, configure.in, install-sh,
ltmain.sh, missing, mkinstalldirs, pixmaps/.cvsignore,
pixmaps/Makefile.am, pixmaps/topimage.png, pixmaps/topimage.xcf,
pixmaps/topimage2.png, pixmaps/topimage2.xcf, po/Makefile.in.in,
po/POTFILES, po/POTFILES.in, po/de.po, src/.cvsignore,
src/Makefile.am, src/btnbox.c, src/btnbox.h, src/config.h,
src/main.c, src/main.h, src/optbox.c, src/optbox.h, src/srvsel.c,
src/srvsel.h: Initial import
|