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
|
commit 822e903ec533b89e856bab25f1bd47206d40b863
Author: chrysn <chrysn@fsfe.org>
Date: Thu Jan 12 16:55:26 2023 +0100
Ready for release 0.1.11
commit 4ff888564a101cf9aabdc182a3ec0b03fe71b51e
Author: Rowan Hart <rowanbhart@gmail.com>
Date: Thu Jan 12 16:20:26 2023 +0100
Fix Python 3.11 compatibility by replacing getargspec with getfullargspec
Merges: https://gitlab.com/arandr/arandr/-/merge_requests/10
commit 807c9284c10acffeeb57f9c0fa578f87348a280f
Author: chrysn <chrysn@fsfe.org>
Date: Tue Apr 23 11:00:58 2019 +0200
README: Note dependency on cairo
I'm not 100% sure where in the gi-mediated imports this becomes
essential (as it is not imported explicitly), but the cairo module does
get loaded in the course of running arandr.
Closes: https://gitlab.com/arandr/arandr/issues/33
commit f24a67137fc5723aacae7e4e6c477157d38325c6
Author: chrysn <chrysn@fsfe.org>
Date: Tue Apr 16 16:08:26 2019 +0200
README: fix latest release link
commit 4cdde43c31e2c4458e42b5966ae362f0d5439384
Author: chrysn <chrysn@fsfe.org>
Date: Mon Apr 15 14:54:45 2019 +0200
Update release instructions
avoid cluttering my own branch names into change log
commit 664720bc9458db24e057a7e43820fddfc69c6d61
Author: chrysn <chrysn@fsfe.org>
Date: Mon Apr 15 14:47:37 2019 +0200
Ready for release 0.1.10
commit 29cdb0f106e5e31b4c8ef1331b4ce8b0fc46c97b
Author: chrysn <chrysn@fsfe.org>
Date: Mon Apr 15 14:22:57 2019 +0200
gui: Don't force a resize on scale changes
commit 3c3dc307ab55530a3b4c5a39f2d6c3ddfc938051
Merge: f948704 e944fca
Author: chrysn <chrysn@fsfe.org>
Date: Mon Apr 15 14:45:21 2019 +0200
Update README: links, communication means, branches
commit f948704227e628fcaf72156b0deab43644585acc
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 22 00:33:45 2019 +0100
Update translation and contributor copyrights
commit 5dc51175c238fbfe58ac23df5641cc322cd9e6f8
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 22 00:31:02 2019 +0100
setup: Missing fixes for Python 3
commit 24b3a6026e699b3a89871a1bb1ab0b66a1aa4d2d
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 22 00:27:47 2019 +0100
README: Remove outdated references
commit 5cfd41e4324e2e1c1ff561f550c0f16d4b1d4057
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 22 00:20:53 2019 +0100
README: Update declared dependencies
commit 7539c8ddfa7ef7298d661c01a5b82d3b16a32ce1
Merge: 1814550 7e1d5d4
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 21 23:41:00 2019 +0100
New translations from weblate
New languages:
* Chinese
* Finnish
* Galician
* Hebrew
* Indonesian
* Norway
* Sardinian
* Sorani
* Swedish
Updates:
* Breton
* Greek
* Japanese
* Kannada
* Lithuanian
* Romanian
* Slovak
* Turkish
commit 1814550874e7dc0b496360560edc0f13a5124a4f
Merge: dfde50b 2edc680
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 21 23:24:50 2019 +0100
README: Updated installation instructions and links
commit dfde50b1e0343c80a772cc55de1ed49784721af6
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 21 23:23:46 2019 +0100
setup: be more tolerant towards unknown languages, follow pycountry changes
commit da0ebacc22ba478b8d7aedc3d6a6bbe426059dc5
Merge: 3927414 46f567b
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 21 22:09:34 2019 +0100
Port to GTK3 and Python3, drop Metacity keybindings
This includes PEP8/pylint and general variable renaming.
commit 3927414848003c7ffcfa7f00a97a87e76dbd7b9a
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 1 01:25:45 2019 +0100
README: Change URIs from alioth to GitLab
commit a79876a3c7e5573546cf76f8893d0f0fc04bed90
Author: Gareth Pulham <garethpulham@gmail.com>
Date: Sat May 26 16:40:00 2018 +0200
snapping: Snap on center lines as well
commit 95913c9ccfbd35bf7b6fae1dffbb828433fc9006
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 16:42:48 2016 +0100
Release procedure update
commit 1d9eb6e749a5b71d18ab63682f5b7cf615159019
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 16:40:01 2016 +0100
Drop long-unused transifex config
commit 790cd346bbd57426930a2b3beb654cf3a39712fd
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 13:46:20 2016 +0100
ready for release 0.1.9
commit 655ba80b7123acb327244cd891add32a6dea552c
Merge: 05e9175 9110440
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 13:38:39 2016 +0100
Update copyright notes, acknowledge new translators
This is now done semi-automatically, supported by setup.py
commit 05e9175affefbea12f11ad93510ca40025176dec
Merge: 204b9f0 2394f0f
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 10:12:27 2016 +0100
Add xrandr 1.5 to the list of supported versions
This does not include GUI for xrandr's new features, but the classical
XRandR features are unaffected.
commit 204b9f0925f1cfd787bf2199a320ba1be208fd15
Merge: f59a06c da6d617
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 10:06:58 2016 +0100
README / Website updates
commit f59a06c3ebe0c65696fdfddbbb69cac8630a9ccb
Merge: 465df4e 7b81d62
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 24 10:02:54 2016 +0100
New translations from weblate after introducing new string
New languages:
* Albanian (sq)
Updates:
* Danish (da)
* Ukrainian (uk)
Covering new strings:
* Catalan (ca)
* Russian ru)
* Spanish (es)
* Polish (pl)
* Persian (fa)
* Estonian (et)
* Chinese (China; zh_CN)
* Dutch (nl)
commit 465df4eb26979ccfbcd747755c95e26c0500d6ab
Author: chrysn <chrysn@fsfe.org>
Date: Fri Jun 26 11:02:46 2015 +0200
Ready for relase 0.1.8
commit 879afd50f6026ebcc98719e613d4121bb17790be
Author: chrysn <chrysn@fsfe.org>
Date: Fri Jun 26 08:27:07 2015 +0200
List Johannes as contributor
he added the --primary feature and OK'd email inclusion on the web page
in <mid:555E469F.1010902@update.uu.se>
commit 77434dc914f2dfa3dcb955cbff3f5a57e6fdcd17
Merge: 88ecf3b 72fb31a
Author: chrysn <chrysn@fsfe.org>
Date: Fri Jun 26 10:11:28 2015 +0200
README / Website updates
commit 88ecf3ba61e95f5714afbc4f3c3753ee93d4f5e3
Author: chrysn <chrysn@fsfe.org>
Date: Fri Jun 26 10:10:19 2015 +0200
Update translator acknowledgements in credits
commit 500f021bf5b87a4fe08765732bf82e3d34c58aea
Merge: 67093a8 2e6cffa
Author: chrysn <chrysn@fsfe.org>
Date: Fri Jun 26 09:23:45 2015 +0200
New translations from weblate after introducing new string
New languages:
* Serbian (sr)
Updates:
* Arabig (ar)
Covering new strings:
* German (de)
* Italian (it)
* Portuguese (Brazil) (pt_BR)
* Korean (kr)
Bugfixes:
* French (fr)
commit 67093a84f7d6754aaed35e498cd539aabcdb0cd2
Merge: e001776 53fc666
Author: chrysn <chrysn@fsfe.org>
Date: Fri Jun 26 08:45:14 2015 +0200
New translations from weblate
New languages:
* Sardian (sc)
* Estonian (et)
* Czech (cs)
Updated translations:
* Greek (el)
* Persian (fa)
* Korean (ko_KR)
* Polish (pl)
* Russian (ru)
* Hungarian (hu)
* French (fr)
Bugfixes:
* Breton (br)
* Romanian (ro)
* Italian (it)
* Swedish (sv)
* German (de)
* Portuguese (Brazil) (pt_BR)
* Ukrainian (uk)
* Kannada (kn)
commit e001776260dbddb26337f8b9d4bead0a68a99e00
Author: chrysn <chrysn@fsfe.org>
Date: Thu Jun 4 12:31:11 2015 +0200
Work around plain text formatting conflict between GPL and GTK
GtkAboutDialog formats the plain text license by matching angular
brackets as email addresses, while the GPL is formatted to wrap all URLs
(and some other text) in them.
This patch re-formats the license text to use different angular bracket
characters, and set them off from the URLs (otherwise they'd be part of
the requested address).
This patch does not apply to the 0.2 branch, as GTK3 has different
license handling anyway.
Closes: https://bugs.launchpad.net/ubuntu/+source/arandr/+bug/1461749
commit 80878ca78f223d5f9eb0515588a7c7631b16dca8
Author: chrysn <chrysn@fsfe.org>
Date: Thu May 21 10:04:34 2015 +0200
new strin in messages.pot: 'Primary'
this commit was created after ./setup.py update_pot
commit 227dafa67593b48cdb2c5e8f6781024a0877fe30
Author: Johannes Holmberg <johannes@update.uu.se>
Date: Sun May 3 22:54:32 2015 +0100
Add support for choosing the primary output
Introduces a simple feature structure to keep track of features supported
by the system. Currently the only known feature is "PRIMARY" which is
supported by xrandr 1.3 and newer.
commit 34c0bbbcef350631c8284d1c77e0024cfa43be1e
Author: chrysn <chrysn@fsfe.org>
Date: Thu Jun 27 20:34:02 2013 +0200
use "save" button in the file-save dialog
commit 846451d14cfde701277d6ec0d9ebce0600dcbab1
Author: chrysn <chrysn@fsfe.org>
Date: Mon Mar 4 18:15:55 2013 +0100
ready for release 0.1.7.1
commit 08e7739ec5b96dabcb055704bbf79954c83329d7
Merge: f7f44c7 e10ca80
Author: chrysn <chrysn@fsfe.org>
Date: Mon Mar 4 18:12:38 2013 +0100
some fixes for website/readme
commit f7f44c735321e6d09d452824eaaaf492dcf160b5
Author: chrysn <chrysn@fsfe.org>
Date: Mon Mar 4 17:57:07 2013 +0100
setup.py: be installable even without locales
the install_data step previously failed in absence of translations. the
build/locale directory is now built by build_trans unconditionally,
making everything work even without present translations.
the problem came up in gentoo, where translation files are deleted
selectively to only install what the user wants.
commit 2fa045379e3e9652701861a491a46806fcee52e1
Author: chrysn <chrysn@fsfe.org>
Date: Mon Mar 4 17:31:42 2013 +0100
fix unassigned variable error
manifests in "AttributeError: 'Size' object has no attribute '_size'"
when different modes with the same name have different screen sizes.
commit 8535870c4cda27e4d23dd4f0802006fb6ba7ef28
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 1 13:47:14 2013 +0100
disable the output submenu instead of the checkbox
result of feedback from the OpenSUSE package maintainer Stefan Seyfried.
this makes it easier for graphics cards with many outputs to see which
one was just plugged in and can be activated.
commit 74e5fba2b2f2b7f303699ca2c20b7b1d9c9a230b
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 19:12:46 2013 +0100
ready for release 0.1.7
commit 615607eb6796345d946e0fae8fdaf8680758b95e
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 18:27:48 2013 +0100
bugfix for uninitialized variable
was tricky to find because it occurs only if the first output is
inactive.
thanks to Sid Karuaratne for pointing finding it.
commit 0fe7a5d650d0a3ed2116acdbc87bfcd7e60d5fc1
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 17:26:08 2013 +0100
changed attribution of ukrainian translation
as requested by rax himself
commit 3d4646344cfe8dbac6bc95c6cf934cd2e4dc59c4
Merge: 98c5117 09928da
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 11:42:51 2013 +0100
update README / website
* acknowledge weblate as the new translation tool
* move cglita branch to "similar programs" (as it's partially merged to fix the
bug)
commit 98c5117b09e72c8e656cd27c0190a8ad2dd3ba46
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 11:26:38 2013 +0100
bugfix: remove duplicate modes
the "minimal cglita" merge intoduced a bug where named screen modes with
more than one actual modes are shown more than once; this patch detects
and drops duplicates.
commit fd3dc6fd3f714b2571707c2bf108bad77498a39b
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 04:56:23 2013 +0100
ignore 'primary' in xrandr output
since 1.4.0, xrandr indicates which output is currently primary; this
patch ignores that and restores xrandr 1.4.0 compatibility.
note that the version detection didn't work for the affected users, as
--version also prints the server's xrandr version, which was still 1.3.
commit dad11f9ced9bc4fdb8632a992bf731ebf1efca40
Merge: 123355d b5d1446
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 04:33:59 2013 +0100
merge parts of the cglita branch
closes the most common arandr issue
commit 123355d4cc8f1199b233a432c2f770fee5dbc251
Merge: 2dc9952 467e077
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 01:40:21 2013 +0100
translations from transifex
new: ko_KR
commit 2dc9952600a1fa22f1aaa98fef50280fe5b1b932
Merge: 801e664 09745e4
Author: chrysn <chrysn@fsfe.org>
Date: Thu Feb 28 01:39:17 2013 +0100
translations from launchpad
new: uk, hu, el
updated: lt
commit 801e66476f1ac1cca227a0919cf081e003b0d820
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jun 2 15:49:21 2012 +0200
ready for release 0.1.6
commit ac32856738c3a8bfcc43eeb7a23e48c3ca5ac241
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jun 2 15:33:03 2012 +0200
work around new behavior of python-gconf
gconf's get_string used to return "" on undefined objects and now
returns None. there was no visible impact on functionality, but
exceptions flew out of the main loop when the metacity window was
created.
no measures were taken to find out exactly when the change was
introduced, as the fix is easy enough to just be applied.
commit 8657fa5e5e5146443026a8ce850f639c5520bef2
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jun 2 15:19:40 2012 +0200
updated translations for uniform about dialog
commit d6c078117c650cee5a2ccf29acd17b62356e97f9
Merge: f073439 1b0040e
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jun 2 15:15:00 2012 +0200
translations from launchpad
new: gl, jp, sv, bs
updated: de, fa, es
commit f0734394e6fa72596567b87459896578626c3313
Merge: f7ad7be f592f12
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jun 2 13:16:25 2012 +0200
new todo items
commit f7ad7beae7202d56ddb2340e738f2dc8f1824d50
Merge: 611d544 cff6c89
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jun 2 13:01:59 2012 +0200
translation updates: added li, br
commit 611d544d14152dc62201b23f799e73e501aa13dd
Author: chrysn <chrysn@fsfe.org>
Date: Mon Oct 17 22:50:31 2011 +0200
dropped the 'release-preparation' mechanism for launchpad
commit df7fb9e0e3d98111bf4a1675bda5aa560bdd9994
Author: chrysn <chrysn@fsfe.org>
Date: Sun Oct 9 16:04:02 2011 +0200
fixed clean 'target' to remove unxrandr man page
commit 86b9d589f28065b881e7da5c8e58d75ea891c462
Author: chrysn <chrysn@fsfe.org>
Date: Sun Oct 9 15:44:03 2011 +0200
removed duplicate translation credit from README and meta.py
commit 40d7c96992292e59ba2ce881f5e6301ff4f96b6a
Author: chrysn <chrysn@fsfe.org>
Date: Sun Oct 9 15:24:31 2011 +0200
ready for release 0.1.5
commit ac7084f87c3fed55fe0edc5bb2a41aa6d803edd7
Author: chrysn <chrysn@fsfe.org>
Date: Sun Oct 9 15:17:53 2011 +0200
added reference to gentoo package
commit 223a8cb7274d6ad0bb3fa66a74db7aae5d3a7ef1
Author: chrysn <chrysn@fsfe.org>
Date: Tue Oct 4 23:54:20 2011 +0200
translations are now also accepted via launchpad
commit 908e8504e35d9d16f83f2153b86e0a18e9f7f4e6
Merge: e929014 e372c5a
Author: chrysn <chrysn@fsfe.org>
Date: Tue Oct 4 23:46:49 2011 +0200
modifications on translation files (due to launchpad integration)
commit e9290143962c40fb34df72dcf252e7548d38af51
Merge: da24c0d cfba8db
Author: chrysn <chrysn@fsfe.org>
Date: Tue Oct 4 16:19:46 2011 +0200
minor changes to release process
commit da24c0d4a5f9bf6d1557793988481f4f4faf2b38
Author: chrysn <chrysn@fsfe.org>
Date: Sat Oct 1 17:14:27 2011 +0200
news file catch-up
commit b47c332431e5877d67f3313d6734754604123910
Author: chrysn <chrysn@fsfe.org>
Date: Sat Oct 1 17:14:16 2011 +0200
new unxrandr tool
commit 24c1ef0b57f54e6046b04ac75b54d242f1b41ed5
Author: chrysn <chrysn@fsfe.org>
Date: Sat Oct 1 16:01:37 2011 +0200
add copyright header to arandr executable
(was missed in 8ec86e)
commit f1bee8c958440c8efdb51570d9a2d21983d00a21
Merge: 8ec86e2 ba658b1
Author: chrysn <chrysn@fsfe.org>
Date: Sat Oct 1 15:42:49 2011 +0200
translation updates: added fa, updated fr and ro
commit 8ec86e2d716cc805cf60e676b239ed6efade19ff
Author: chrysn <chrysn@fsfe.org>
Date: Sat Oct 1 14:08:11 2011 +0200
added gpl copyright headers to all source files
redhat needs it for inclusion[1], and it's preferred in debian anyway,
so why not...
[1] https://bugzilla.redhat.com/show_bug.cgi?id=739088
commit bd70c60c61ada665131fb9e21f171f076b3e006b
Merge: 18e1263 1c46577
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jul 16 11:40:39 2011 +0200
several website fixes, especially concerning cglita's branch
commit 18e12636c5b7d509319b84d94e9db040b4530400
Merge: 9bfa3c7 7b4ea10
Author: chrysn <chrysn@fsfe.org>
Date: Sat Jul 16 11:39:55 2011 +0200
included slovak translation
commit 9bfa3c7708c1a85e535a2b9c181648094064884f
Merge: f7c04a1 9db23ec
Author: chrysn <chrysn@fsfe.org>
Date: Sun Feb 20 16:02:33 2011 +0100
included romanian translation
commit f7c04a1ec86f621767c5d41ad9912f2f57e9e0ab
Merge: a11418f ed230ea
Author: chrysn <chrysn@fsfe.org>
Date: Sun Jan 2 12:33:10 2011 +0100
included dutch translation
commit a11418fb774a00a43dd5ae71f0b014d841fe3569
Author: chrysn <chrysn@fsfe.org>
Date: Mon Dec 13 23:03:46 2010 +0100
new slackware package
commit 0486530cd14348976c76f8b68789172aa9839cd0
Author: chrysn <chrysn@fsfe.org>
Date: Mon Dec 13 16:02:42 2010 +0100
transifex url changed
commit fc46ccc80d530e4dcb0db5eebe2ff57fb9cb85c2
Author: chrysn <chrysn@fsfe.org>
Date: Mon Dec 13 16:02:32 2010 +0100
arandr is now in arch
commit 9d2ce88ad4a38cba8ffdea7629626d1e2115a66d
Author: chrysn <chrysn@fsfe.org>
Date: Sat Dec 11 16:08:35 2010 +0100
release checklist fixes from last release
fixed typo, added reminder to upload tarball
commit 51f9184224e666fbed0e6fc9b7d8ebff5848c0fc
Author: chrysn <chrysn@fsfe.org>
Date: Sat Dec 11 15:49:33 2010 +0100
ready for release 0.1.4
commit 4c5a1a39593cd5be36aad6f344ad1156369a1b06
Author: chrysn <chrysn@fsfe.org>
Date: Sat Dec 11 15:47:13 2010 +0100
checklist adaptions to new metadata file
commit e97a1611970f33c79e9b4396e99ffb5970aa520b
Author: chrysn <chrysn@fsfe.org>
Date: Sat Dec 11 15:39:46 2010 +0100
hot fix for "unknown connection" issue
the solution is not ideal, but for an ideal solution there will be the
--verbose parsing.
commit 4a9f75a8d0ea2aeeb345ef1a5741e8c3cea135ff
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 12:19:56 2010 +0100
migration to new transifex version
why the hell did they drop vcs support?
commit 139e6d64a438554fb9291a7b5e0edaa5b9e60af6
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 11:25:46 2010 +0100
changes from ./setup.py update_po
commit 16d847b64ff7f1a53d3cbf014fe4d61aa7385399
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 11:24:29 2010 +0100
don't wrap generated .po files
the majority of translations generated using transifex seems not to be
wrapped, so this change creates smaller diffs when updating the .po
files from a changed .pot.
commit 995997a0e5319ef177c6e7d5eba7a322aa3c54f2
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 11:16:27 2010 +0100
update pot to changed line numbers and source files
commit b10e447f7a8afd381c87bb6ff7893ae0a47232ab
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 11:15:03 2010 +0100
restructured metadata into own file
commit 8209204c20e4133362843fffb64f96d3b321a1d1
Merge: 9b79ac0 8c8d74a
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 11:07:53 2010 +0100
some new todo items
commit 9b79ac03cdb707c92eb2ec157d0a09f564e19483
Merge: 2afa6e1 e1e0544
Author: chrysn <chrysn@fsfe.org>
Date: Tue Dec 7 10:58:57 2010 +0100
imported arabic updates and chinese translation
commit 2afa6e169f4d03c79a7d803e18f3ae0c2b32ad78
Merge: 09a8de7 9c3c9c8
Author: chrysn <chrysn@fsfe.org>
Date: Sun Oct 17 13:28:18 2010 +0200
added catalan translation by el_libre
commit 09a8de7f569b59800e2cb319f5059c08b7c06af4
Merge: 3fdb4f1 bc2608d
Author: chrysn <chrysn@fsfe.org>
Date: Fri Sep 17 13:51:55 2010 +0200
addes spanish translation by Ricardo A. Hermosilla Carrillo
commit 3fdb4f1e10ac55e4114297fb2b03ec0d93a590bd
Author: chrysn <chrysn@fsfe.org>
Date: Tue Sep 7 11:25:11 2010 +0200
summarize changes since last release
commit 9b3881afd20a63554139ff7faf130bed21042aa4
Merge: dd1dda4 6780a65
Author: chrysn <chrysn@fsfe.org>
Date: Tue Sep 7 11:15:33 2010 +0200
added arabic and turkish translations
commit dd1dda468e64757de5b2c93b9e4a636d5cd9bc9b
Merge: 48f40fc 1bf631a
Author: chrysn <chrysn@fsfe.org>
Date: Tue Sep 7 11:14:55 2010 +0200
various fixes for website
mainly new todo stuff
commit 48f40fcc89d1111951e923a7f5e284756d8cc3cb
Author: chrysn <chrysn@fsfe.org>
Date: Wed Jun 9 16:47:05 2010 +0200
added transifex token
the README.transifex file is added as by request of transifex, the
online translation platform used by arandr. they use this file to make
sure their translation pushing agent doesn't abuse its powers by
pushing commits from another transifex user's project to the arandr
repository.
commit 13a6089790627a077a016aafcd8ef49dde106a95
Merge: 59ae5b6 827a666
Author: chrysn <chrysn@fsfe.org>
Date: Wed Jun 9 16:29:43 2010 +0200
included polish translations by RooTer
(and updates on danish translation)
commit 59ae5b656566ea9ed77aa2274609ec8f0881dc14
Author: chrysn <chrysn@fsfe.org>
Date: Sat Mar 27 18:56:30 2010 +0100
abandoned svn
commit 548ece5997d7eaa7a62f7c33f235f59043c77036
Merge: 46d68cb b201303
Author: chrysn <chrysn@fsfe.org>
Date: Sat Mar 27 14:11:02 2010 +0100
Added french translation by c. démoulins
commit 46d68cbed78b9945e47acf99d1b1bab2cac46468
Author: chrysn <chrysn@fsfe.org>
Date: Mon Mar 22 22:37:47 2010 +0100
minor readme updates
* added missing xrandr 1.3 note
* removed Status section (used to indicate beta status)
commit d7dcee58282221b871774bfbf7366de0b11fdc6b
Merge: cd0193b f5fe05f
Author: chrysn <chrysn@fsfe.org>
Date: Sat Mar 20 00:05:41 2010 +0100
new translation: russian by HsH
(and some updates to pt_BR)
commit cd0193b05002938e4a8cd8485246da4fedf16f89
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 19 23:06:59 2010 +0100
add reminder to use desktop-file-install instead of copying it manually
commit 8883ae8a8050a6e6ec95916ca322bfcd76c55548
Author: chrysn <chrysn@fsfe.org>
Date: Sat Mar 13 00:01:20 2010 +0100
(typo fixes)
commit 1f09bbdc96daae96b096387c33cd24897d49b58e
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 12 23:01:29 2010 +0100
prevent creating tar bomb at release
commit 7736d4a305019f1b9d99a389ca23956715f0dbb5
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 12 22:30:40 2010 +0100
modified release checklist after release
commit c5dcf2710d9b4030da7685349c1248549d020039
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 12 21:12:37 2010 +0100
ready for release 0.1.3
commit c5f8e86f3fa5b3d327237a39e370381099088b58
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 12 14:36:42 2010 +0100
add changelog handling to release checklist
commit 7468f4aaeec9bf4c63525b768f9a1e55af5cbee3
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 12 13:40:15 2010 +0100
addedd newsfile (including old changes)
commit 9629ac3d18552aad69f197bce94a1970c1466671
Author: chrysn <chrysn@fsfe.org>
Date: Fri Mar 12 00:26:15 2010 +0100
update release checklist: use release branch
commit 315178aac62d145986203d13282f0b0da636890a
Author: chrysn <chrysn@fsfe.org>
Date: Thu Mar 11 23:54:20 2010 +0100
update copyright range
commit cb76e5f75e20623017e4a1527edeb1f2cfed51f8
Author: chrysn <chrysn@fsfe.org>
Date: Thu Mar 11 23:39:21 2010 +0100
don't request too large a window size
recent x servers tend to allocate huge virtuals, causing
bigger-than-screen windows. with the current configuration, this can
still happen, but will now only happen if there are about three screens
connected (depending on relative sizes) -- and for those cases, there is
the zoom function.
commit 5351dcbdaedc36014e2f5545b20d1c8cb42ca49b
Author: chrysn <chrysn@fsfe.org>
Date: Thu Mar 11 23:05:55 2010 +0100
use pangocairo for text display
solves problems with exotic scripts (previous version just displayed
rectangles instead of characters when run with kannada language)
does not affect dependencies (comes with python-gtk2)
commit bd66d76d30cdd1590d281d054525de0d57da9299
Merge: b516954 4ec04ca
Author: chrysn <chrysn@fsfe.org>
Date: Thu Mar 11 20:28:44 2010 +0100
new kannada translations
including updates everywhere languages are involved and minor updates
for the european languages to follow the new translation hints
commit b516954c4b821174106e69c9d622bb3ce606fb9c
Merge: 5462c04 94d448d
Author: chrysn <chrysn@fsfe.org>
Date: Wed Mar 3 14:44:27 2010 +0100
import cosmetic updates in pt_BR translation
commit 5462c0474ead793d9f7524be8b4ac8edffba5d30
Merge: 0b9b2ef fec6e22
Author: chrysn <chrysn@fsfe.org>
Date: Wed Mar 3 14:39:42 2010 +0100
better use of gettext
* support for ## comments that show up in .pot
* update mechanism for .po files
* make arandr use local translations when called locally
* update *.po{t,}
commit 0b9b2ef13e72561e1130414c9fe46b6deaee9863
Merge: e2e8476 ea5bc07
Author: chrysn <chrysn@fsfe.org>
Date: Wed Feb 10 14:50:05 2010 +0100
included danish translation by Joe Hansen <joedalton2@yahoo.dk>
commit e2e8476f55b9a6ee8a6212ecdb0fca041a488baa
Merge: 9910d2e ed1abcb
Author: chrysn <chrysn@fsfe.org>
Date: Wed Jan 27 21:40:19 2010 +0100
man page fixes by albert dengg and new man page build system
commit 9910d2e0eb2f807e651fb5ca883d0cce1a4bd81f
Author: chrysn <chrysn@fsfe.org>
Date: Wed Jan 27 01:52:44 2010 +0100
improved installation instructions for slackware
commit 13c2ea04c017ffae2180dd87f3b12ee3ba4cdc03
Merge: 9c5ab17 570f524
Author: chrysn <chrysn@fsfe.org>
Date: Wed Jan 27 01:49:56 2010 +0100
portuguese (brasilian) translation added
commit 9c5ab179047a9f602e98df61c327d8eb5398056d
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 26 15:27:10 2010 +0100
add installation instructions for slackware
commit 804c2c11f18198b7f0f37910fcd19b2f3e88e858
Merge: 90d427f a81e7b8
Author: chrysn <chrysn@fsfe.org>
Date: Thu Jan 21 01:16:34 2010 +0100
italian translation added
commit 90d427f9c36c8c4f9e283da21799bab1eb6cb6d8
Merge: a1c7001 9ce9cae
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 18 20:49:04 2010 +0100
Merge branch 'translations': first test changes
commit a1c7001a4c07275e38513f985ccfa060ddeed078
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 18 20:37:50 2010 +0100
fix setup.py clean to ignore missing files
commit 57b4b7efe9f5a5fea8e716d2320ff05fc1c4de74
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 18 20:06:14 2010 +0100
add pot file creation and pot file
pot file is kept in the source for better transifex integration and
because it might be relevant to have a reference pot if po merging is to
be done.
commit 00952727014b197c59b2884e16d31e098c98c45f
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 18 18:34:37 2010 +0100
(fixed link)
commit f689d99f09a091456a0f4bb23df9259f119f8920
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 18 18:28:49 2010 +0100
added contributing to readme
including some hypterlink fixes
commit 7ff67baa4a2f95e919eedfb115211a2ff87502be
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 11 17:16:39 2010 +0100
minor changes hinted at by pychecker
what remains are the "Parameter (widget) not used" complaints, mostly
from gtk integration which often passes unnecessary parameters and a "No
method arguments, should have self as argument" from a flexible
decorator.
commit 91f2885dbb2f349f29948283ce273cee9da512b2
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 11 16:56:43 2010 +0100
pep 8 fix: use spaces (recommended)
commit 776dac913555b6cc3745e62f454174304d4ceffc
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 5 00:45:58 2010 +0100
`./setup.py clean -a`: remove manually created files
as the build target creates translation and man page files, these have
to be cleaned up in the clean target.
commit f0feede688480240a015e53d5fe635c6858a8de6
Author: chrysn <chrysn@fsfe.org>
Date: Tue Jan 5 00:45:30 2010 +0100
(don't rely on garbage collector to close file)
commit 464905529534f441cf7d2827286d08aa233001f3
Author: chrysn <chrysn@fsfe.org>
Date: Mon Jan 4 23:39:39 2010 +0100
add working event demo
(as of now, this is a standalone file; pulling this into arandr will
introduce a dependency on xcb)
commit 2e7c6123c148d7893bc9452838fdf739509a884b
Author: chrysn <chrysn@fsfe.org>
Date: Sat Nov 28 21:21:05 2009 +0100
README and TODO updates
reformatting, updated links, removed TODO item
commit 17e56521d333dc1a5fcdcd7e9f4b0881a6f4b1c5
Author: chrysn <chrysn@fsfe.org>
Date: Sat Nov 28 20:56:08 2009 +0100
change official source to git hosted on gitorious
commit b6ce6ae289a60169bece5a757022792962cc8d5c
Author: chrysn <chrysn@fsfe.org>
Date: Wed Nov 25 21:38:08 2009 +0100
readme updates
* new debian package available
* acknowledge bug with unusual modes
commit d845551631d997c43bf10d007b9a4440ecc2daaf
Author: chrysn <chrysn@fsfe.org>
Date: Wed Nov 25 18:21:39 2009 +0100
release process changes to `git archive`
while previous tar balls were built using `setup.py sdist`, in future
they will be created using `git archive`. this avoids differences
between the tar ball and the last commit (with which the debian branch
is merged).
commit 6210593441e07ca81f26e6ed43ac2c9c8c872708
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Wed Nov 25 15:20:05 2009 +0000
german translation update
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@160 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit c7206c8d2108887742abbd655f1e539e076a22dc
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Wed Nov 25 15:20:04 2009 +0000
minor cleanups
* whitespace fixes
* pep8 enhancements
* comment / docstring / message updates
* destroy dialogs instead of hiding them
* remove stale code
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@159 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit c4cffa4fda5a85632fd8ee4f333198d70f17e8e8
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Wed Nov 25 15:20:03 2009 +0000
more todo items
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@158 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit e1730007aa6ecb7ba74f1ec3bfae8b48d1d3bfde
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Thu Apr 16 21:46:16 2009 +0000
more missing version changes
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@154 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit b4744267e20966d692992569a802d412cecf7da7
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Thu Apr 16 13:16:44 2009 +0000
README/TODO changes to reflect new version
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@153 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit f8893378c549afdc8803191895a019135b1680b8
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Mon Apr 13 13:46:57 2009 +0000
accept xrandr 1.3, added --force-version
by default, arandr only accepts xrandr versions it has been tested with.
this patch adds 1.3 to these versions, and adds a --force-version switch
to override this check for future upgrades.
no changes for new 1.3 features have been made.
to be released as 0.1.2.
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@150 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit b93477fd0a033f09f1f113bcd95f894ba9c8419f
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Mon Jul 21 20:56:14 2008 +0000
* translation updates
* fix uncaught ImportError
* increase vresion to 0.1.1 for bugfix release
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@136 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 6e04d1b114595df8c3ac1d68998457dda57c43d4
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Mon Jul 21 19:14:20 2008 +0000
* added gettext support to modules which did not already used it
* caught import error of gconf (which is no declared dependency, neither should be)
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@135 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 779044ba2f6b5e81746eaadf7d4c5ffd490d1105
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Fri Jun 13 12:47:44 2008 +0000
fixed python gtk dependency
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@133 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit cbc6bb0ae3c913357c0395c4abfd02e202cec62c
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Tue Jun 10 12:52:21 2008 +0000
added arch reference
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@132 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 6fcba91a65d88a01aa2b206a3c0d13ba6af2bec8
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Fri Jun 6 22:20:29 2008 +0000
url to debian file changed in readme part 2
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@128 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit e3a2f82e915238bbd8cf0ceb007d012cf6e767bc
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Fri Jun 6 22:19:47 2008 +0000
path to debian file changed in readme
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@127 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 54a233bd2367bed75483b5a8026ea270e1ee083d
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Fri Jun 6 22:17:42 2008 +0000
fixed bug in optparse usage
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@126 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit c428375a65a0b023abc27421410cef021723c5db
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Fri Jun 6 21:21:18 2008 +0000
added --randr-display option
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@125 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 8858606de32cfca964e235c032990e9deaf5eb71
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Thu Jun 5 21:54:12 2008 +0000
change to readme
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@124 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 9db813a33cf0a35eb38fced7e9acbdaa9fa2d4e0
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Thu Jun 5 21:50:55 2008 +0000
added tarball download option
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@123 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit 176879a00f176b6093929a1875e8067a90dfa270
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Thu Jun 5 21:49:12 2008 +0000
changed readme file for 0.1 release
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@122 84c1553d-868a-485e-9ebb-c7de0e225ff1
commit e7fa91464b1655228b6827ff6a20626155a5e9de
Author: chrysn <chrysn@84c1553d-868a-485e-9ebb-c7de0e225ff1>
Date: Thu Jun 5 21:42:03 2008 +0000
added trunk
git-svn-id: http://svn.amsuess.com/svn/tools/arandr/trunk@121 84c1553d-868a-485e-9ebb-c7de0e225ff1
|