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
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
|
2009-09-15 McCabe Maxsted <hakushakukun@gmail.com>
* Applied patch by Robin Cornelius for VWR-11128 - Python not always detected by develop.py.
modified: linden/indra/cmake/Python.cmake
* Applied patch by Robin Cornelius for VWR-11138 - Make develop.py play nicely with express editions of Visual Studio.
modified: linden/indra/develop.py
2009-09-14 McCabe Maxsted <hakushakukun@gmail.com>
* Small improvement to hide selection outlines in LLSelectMgr.
modified: linden/indra/newview/llselectmgr.cpp
* Small performance change from Emerald viewer in LLVLComposition.
modified: linden/indra/newview/llvlcomposition.cpp
* Applied BlockClickSit debug setting from Emerald to block sit click action.
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/lltoolpie.cpp
* Fixed unhandled exception in llviewerobjectlist.cpp
modified: linden/indra/newview/llviewerobjectlist.cpp
2009-09-13 McCabe Maxsted <hakushakukun@gmail.com>
* Added prev/next buttons for windlight presets, cleaned up some stuff.
modified: linden/indra/newview/llfloaterwindlight.cpp
modified: linden/indra/newview/llfloaterwindlight.h
modified: linden/indra/newview/llwindlightremotectrl.cpp
modified: linden/indra/newview/llwlparammanager.cpp
modified: linden/indra/newview/llwlparammanager.h
modified: linden/indra/newview/skins/default/textures/textures.xml
modified: linden/indra/newview/skins/default/xui/en-us/floater_windlight_options.xml
* Fixed World options not showing up when windlight remote expanded.
modified: linden/indra/newview/skins/default/xui/en-us/panel_windlight_remote_expanded.xml
* Added missing left/right arrow textures.
new file: linden/indra/newview/skins/default/textures/arrow_left.tga
new file: linden/indra/newview/skins/default/textures/arrow_right.tga
new file: linden/indra/newview/skins/silver/textures/arrow_left.tga
new file: linden/indra/newview/skins/silver/textures/arrow_right.tga
2009-09-12 McCabe Maxsted <hakushakukun@gmail.com>
* Clarified 'show in search' in profile.
modified: linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml
* Fixed windlight toolbar not updating windlight floater pulldown.
modified: linden/indra/newview/llfloaterwindlight.cpp
modified: linden/indra/newview/llwindlightremotectrl.cpp
modified: linden/indra/newview/llwlparammanager.cpp
modified: linden/indra/newview/llwlparammanager.h
* Fixed windlight toolbar presets not applying when region default.
modified: linden/indra/newview/llwindlightremotectrl.cpp
2009-09-11 McCabe Maxsted <hakushakukun@gmail.com>
* Applied inventory Search menu from Emerald viewer (still ugly).
modified: newview/app_settings/settings.xml
modified: newview/llfolderview.cpp
modified: newview/llfolderview.h
modified: newview/llinventoryactions.cpp
modified: newview/llinventoryview.cpp
modified: newview/skins/default/xui/en-us/floater_inventory.xml
* Applied patch for long distance opensim hypergrid tps (SVC-2491)
(Feature currently disabled in OpenSim)
modified: linden/indra/newview/llviewermessage.cpp
* Fixed browser window showing wrong title.
modified: linden/indra/newview/skins/default/xui/en-us/floater_media_browser.xml
* Fixed double click tp from working on HUDs.
modified: linden/indra/newview/lltoolpie.cpp
* Added minimize to snapshot window.
modified: linden/indra/newview/skins/default/xui/en-us/floater_snapshot.xml
* Upped the max bandwidth setting to 5000kbps (default 1000kbps).
modified: linden/indra/newview/llviewerthrottle.cpp
modified: linden/indra/newview/skins/default/xui/en-us/panel_preferences_network.xml
modified: linden/indra/newview/app_settings/settings.xml
* Applied patch to wear multiple attachments at once (VWR-5063).
modified: linden/indra/newview/llinventoryactions.cpp
modified: linden/indra/newview/llinventorybridge.cpp
* Fixed profile account info spacing.
modified: indra/newview/skins/default/xui/en-us/panel_avatar.xml
* Applied patch by Latif Khalifa for VWR-5370 (Detached "Contacts" panel cannot be hidden/closed via menu or shortcut (Ctrl/Cmd-Shift-F))
modified: linden/indra/newview/llfloaterchatterbox.h
* Applied and modified Emerald viewer feature that shows what groups are hidden in your profile.
modified: linden/indra/newview/llpanelavatar.cpp
modified: linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml
2009-09-10 McCabe Maxsted <hakushakukun@gmail.com>
* Created new toolbar control for windlight presets and options.
new file: linden/indra/newview/llwindlightremotectrl.cpp
new file: linden/indra/newview/llwindlightremotectrl.h
new file: linden/indra/newview/skins/default/xui/en-us/panel_windlight_controls.xml
new file: linden/indra/newview/skins/default/xui/en-us/panel_windlight_remote.xml
new file: linden/indra/newview/skins/default/xui/en-us/panel_windlight_remote_expanded.xml
modified: linden/indra/newview/CMakeLists.txt
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/llfloaterwindlight.cpp
modified: linden/indra/newview/lloverlaybar.cpp
modified: linden/indra/newview/lloverlaybar.h
modified: linden/indra/newview/llpaneldisplay.cpp
modified: linden/indra/newview/llpaneldisplay.h
modified: linden/indra/newview/llwlparammanager.cpp
modified: linden/indra/newview/llwlparammanager.h
modified: linden/indra/newview/skins/default/xui/en-us/panel_overlaybar.xml
modified: linden/indra/newview/skins/default/xui/en-us/panel_preferences_graphics1.xml
* Fixed missing 'm' for draw distance slider.
modified: linden/indra/newview/skins/default/xui/en-us/panel_windlight_remote_expanded.xml
2009-09-09 McCabe Maxsted <hakushakukun@gmail.com>
* Backported clickable object names from 1.23.
new file: llcommon/llcursortypes.cpp
new file: llcommon/llcursortypes.h
new file: newview/llfloaterobjectiminfo.cpp
new file: newview/llfloaterobjectiminfo.h
new file: newview/skins/default/xui/en-us/floater_object_im_info.xm
modified: llcommon/CMakeLists.txt
modified: llcommon/llchat.h
modified: llui/llpanel.cpp
modified: llui/llpanel.h
modified: llui/lltextbox.cpp
modified: llui/lltextbox.h
modified: llui/lltexteditor.cpp
modified: llui/lltexteditor.h
modified: llui/llview.cpp
modified: llui/llview.h
modified: llwindow/llwindow.h
modified: newview/CMakeLists.txt
modified: newview/app_settings/settings.xml
modified: newview/llfloaterabout.cpp
modified: newview/llfloaterchat.cpp
modified: newview/llgroupnotify.cpp
modified: newview/llimpanel.cpp
modified: newview/llstylemap.cpp
modified: newview/llstylemap.h
modified: newview/llviewermessage.cpp
modified: newview/skins/default/colors_base.xml
modified: newview/skins/silver/colors_base.xml
* Applied ReinstateShowTextureUUID Cool Viewer patch (reverts the "fix" for VWR-1919).
Patch by Henri Beauchamp, modified by McCabe Maxsted.
modified: linden/indra/newview/lltexturectrl.cpp
modified: linden/indra/newview/llviewermenu.cpp
* Fixed unlink option enabling when selecting textures.
modified: linden/indra/newview/llfloatertools.cpp
modified: linden/indra/newview/llviewermenu.cpp
* Redid layout of profile window, added group invite button.
modified: linden/indra/newview/llpanelavatar.cpp
modified: linden/indra/newview/llpanelavatar.h
modified: linden/indra/newview/skins/default/xui/en-us/floater_profile.xml
modified: linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml
deleted: linden/indra/newview/skins/silver/xui/en-us/panel_avatar.xml
* Admin options now only show for other people's profiles.
modified: linden/indra/newview/llpanelavatar.cpp
2009-09-08 McCabe Maxsted <hakushakukun@gmail.com>
* Created my own version of Emerald's chat channel tool.
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/llchatbar.cpp
modified: linden/indra/newview/llchatbar.h
modified: linden/indra/newview/llfloaterchat.cpp
modified: linden/indra/newview/llfloaterchat.h
modified: linden/indra/newview/llprefschat.cpp
modified: linden/indra/newview/llprefsim.cpp
modified: linden/indra/newview/skins/default/xui/en-us/panel_chat_bar.xml
modified: linden/indra/newview/skins/default/xui/en-us/panel_preferences_chat.xml
modified: linden/indra/newview/skins/default/xui/en-us/floater_chat_history.xml
* New chat channel preference should change only on apply.
modified: linden/indra/newview/llprefschat.cpp
modified: linden/indra/newview/skins/default/xui/en-us/panel_preferences_chat.xml
* Commented out permissions button
(todo: backport this if there's time).
modified: linden/indra/newview/skins/default/xui/en-us/floater_tools.xml
2009-09-07 McCabe Maxsted <hakushakukun@gmail.com>
* Fixed tool brush size.
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/llfloatertools.cpp
modified: linden/indra/newview/lltoolbrush.cpp
modified: linden/indra/newview/lltoolbrush.h
modified: linden/scripts/messages/message_template.msg
* Applied and tweaked last owner in tools window from Emerald viewer.
modified: linden/indra/newview/llpanelpermissions.cpp
modified: linden/indra/newview/llpanelpermissions.h
modified: linden/indra/newview/skins/default/xui/en-us/floater_tools.xml
2009-09-06 McCabe Maxsted <hakushakukun@gmail.com>
* Applied sit anywhere feature from Emerald viewer.
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
* Applied phantom avatar feature from Emerald viewer.
modified: linden/indra/newview/llagent.cpp
modified: linden/indra/newview/llagent.h
modified: linden/indra/newview/llappviewer.cpp
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
* Start fetching inventory at startup.
modified: linden/indra/newview/llstartup.cpp
* Added Emerald viewer's animation list.
new file: linden/indra/newview/jcfloater_animation_list.cpp
new file: linden/indra/newview/jcfloater_animation_list.h
new file: linden/indra/newview/skins/default/xui/en-us/floater_animation_list.xml
modified: linden/indra/newview/CMakeLists.txt
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
* Added Emerald viewer's asset browser.
new file: linden/indra/newview/llfloaterassetbrowser.cpp
new file: linden/indra/newview/llfloaterassetbrowser.h
new file: linden/indra/newview/skins/default/xui/en-us/floater_asset_browser.xml
modified: linden/indra/newview/CMakeLists.txt
modified: linden/indra/newview/llfloaterassetbrowser.cpp
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
* Added LLScrollListCtrl::getSelectedIDs().
modified: linden/indra/llui/llscrolllistctrl.cpp
modified: linden/indra/llui/llscrolllistctrl.h
* Fixed reference to missing colors.xml entry.
modified: linden/indra/newview/jcfloater_animation_list.cpp
* Fixed ground sit menu entry missing check.
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
2009-09-05 Jacek Antonelli <jacek.antonelli@gmail.com>
* Converted RLVa menu items to XUI.
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
2009-09-04 Jacek Antonelli <jacek.antonelli@gmail.com>
* Applied Kitty Barnett's RLVa 1.0.1h (Restrained Life) patch.
Made a few non-functional changes to help it apply.
modified: linden/indra/llcommon/llchat.h
modified: linden/indra/newview/CMakeLists.txt
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/app_settings/settings_per_account.xml
modified: linden/indra/newview/llagent.cpp
modified: linden/indra/newview/llagent.h
modified: linden/indra/newview/llappviewer.cpp
modified: linden/indra/newview/llchatbar.cpp
modified: linden/indra/newview/llfloaterabout.cpp
modified: linden/indra/newview/llfloateractivespeakers.cpp
modified: linden/indra/newview/llfloaterbeacons.cpp
modified: linden/indra/newview/llfloaterchat.cpp
modified: linden/indra/newview/llfloaterinspect.cpp
modified: linden/indra/newview/llfloaterland.cpp
modified: linden/indra/newview/llfloaterland.h
modified: linden/indra/newview/llfloatermap.cpp
modified: linden/indra/newview/llfloatermap.h
modified: linden/indra/newview/llfloateropenobject.cpp
modified: linden/indra/newview/llfloaterproperties.cpp
modified: linden/indra/newview/llfloaterregioninfo.cpp
modified: linden/indra/newview/llfloaterregioninfo.h
modified: linden/indra/newview/llfloaterreporter.cpp
modified: linden/indra/newview/llfloatersettingsdebug.cpp
modified: linden/indra/newview/llfloaterwindlight.cpp
modified: linden/indra/newview/llfloaterworldmap.cpp
modified: linden/indra/newview/llglsandbox.cpp
modified: linden/indra/newview/llhoverview.cpp
modified: linden/indra/newview/llhudtext.cpp
modified: linden/indra/newview/llhudtext.h
modified: linden/indra/newview/llimpanel.cpp
modified: linden/indra/newview/llimview.cpp
modified: linden/indra/newview/llinventorybridge.cpp
modified: linden/indra/newview/llinventorymodel.cpp
modified: linden/indra/newview/llinventoryview.cpp
modified: linden/indra/newview/llinventoryview.h
modified: linden/indra/newview/llmaniptranslate.cpp
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/llnotify.cpp
modified: linden/indra/newview/lloverlaybar.cpp
modified: linden/indra/newview/llpanelavatar.cpp
modified: linden/indra/newview/llpanelclassified.cpp
modified: linden/indra/newview/llpanelcontents.cpp
modified: linden/indra/newview/llpaneldisplay.cpp
modified: linden/indra/newview/llpanelinventory.cpp
modified: linden/indra/newview/llpanelland.cpp
modified: linden/indra/newview/llpanellogin.cpp
modified: linden/indra/newview/llpanelobject.cpp
modified: linden/indra/newview/llpanelpermissions.cpp
modified: linden/indra/newview/llpanelpick.cpp
modified: linden/indra/newview/llprefsim.cpp
modified: linden/indra/newview/llpreviewscript.cpp
modified: linden/indra/newview/llselectmgr.cpp
modified: linden/indra/newview/llstartup.cpp
modified: linden/indra/newview/llstatusbar.cpp
modified: linden/indra/newview/lltoolbar.cpp
modified: linden/indra/newview/lltooldraganddrop.cpp
modified: linden/indra/newview/lltoolface.cpp
modified: linden/indra/newview/lltoolgrab.cpp
modified: linden/indra/newview/lltoolpie.cpp
modified: linden/indra/newview/lltoolplacer.cpp
modified: linden/indra/newview/lltoolselect.cpp
modified: linden/indra/newview/lltracker.cpp
modified: linden/indra/newview/llviewercontrol.cpp
modified: linden/indra/newview/llviewerdisplay.cpp
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/llviewermessage.cpp
modified: linden/indra/newview/llviewerobject.cpp
modified: linden/indra/newview/llviewertexteditor.cpp
modified: linden/indra/newview/llviewerwindow.cpp
modified: linden/indra/newview/llvoavatar.cpp
modified: linden/indra/newview/llvovolume.cpp
modified: linden/indra/newview/llworldmapview.cpp
modified: linden/indra/newview/pipeline.cpp
new file: linden/indra/newview/rlvevent.h
new file: linden/indra/newview/rlvextensions.cpp
new file: linden/indra/newview/rlvextensions.h
new file: linden/indra/newview/rlvfloaterbehaviour.cpp
new file: linden/indra/newview/rlvfloaterbehaviour.h
new file: linden/indra/newview/rlvhandler.cpp
new file: linden/indra/newview/rlvhandler.h
new file: linden/indra/newview/rlvhelper.cpp
new file: linden/indra/newview/rlvhelper.h
new file: linden/indra/newview/rlvmultistringsearch.cpp
new file: linden/indra/newview/rlvmultistringsearch.h
new file: linden/indra/newview/skins/default/xui/en-us/floater_rlv_behaviour.xml
2009-09-04 McCabe Maxsted <hakushakukun@gmail.com>
* Updated GStreamer and Zlib windows libs.
modified: linden/indra/cmake/CopyWinLibs.cmake
modified: linden/install.xml
* Fixed inability to minimize chat history.
modified: linden/indra/newview/skins/default/xui/en-us/floater_chat_history.xml
* Rebranded startup loading page to Imprudence.
modified: linden/indra/newview/skins/default/html/en-us/loading/loading.html
new file: linden/indra/newview/skins/default/html/en-us/loading/imprudence_loading.png
* Cherry-picked Armin's middle mouse copy branch.
* Cherry-picked Armin's double-click tp inworld branch.
* Added 'Go Here' to object pie menu.
modified: linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml
* Integrated 1.23's tool floater with link/unlink buttons.
modified: linden/indra/newview/llfloatertelehub.cpp
modified: linden/indra/newview/llfloatertools.cpp
modified: linden/indra/newview/llfloatertools.h
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/floater_tools.xml
* Fixed tree/grass label not hiding.
modified: linden/indra/newview/llfloatertools.cpp
2009-09-03 Jacek Antonelli <jacek.antonelli@gmail.com>
* Backported 1.23 fix for animation joint assertion crash.
modified: linden/indra/llcharacter/llkeyframemotion.cpp
* Updated object backup feature to Meerkat's SVN, imported floater.
modified: linden/indra/newview/primbackup.cpp
modified: linden/indra/newview/primbackup.h
new file: linden/indra/newview/skins/default/xui/en-us/floater_prim_import.xml
* Imported Meerkat's object backup feature.
modified: linden/indra/newview/CMakeLists.txt
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/llviewerobjectlist.cpp
new file: linden/indra/newview/primbackup.cpp
new file: linden/indra/newview/primbackup.h
modified: linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
* Updated some python scripts to not use deprecated modules.
modified: linden/indra/lib/python/indra/base/lluuid.py
modified: linden/indra/lib/python/indra/ipc/llmessage.py
modified: linden/scripts/install.py
2009-08-29 McCabe Maxsted <hakushakukun@gmail.com>
* Fixed OpenAL CMake error
modified: linden/indra/cmake/OPENAL.cmake
* Fixed CMake not finding GLib on windows.
modified: linden/indra/cmake/GStreamer.cmake
2009-06-14 McCabe Maxsted <hakushakukun@gmail.com>
* Added IM preference for showing IMs in either main or local chat.
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/llfloaterchat.cpp
modified: linden/indra/newview/llprefsim.cpp
modified: linden/indra/newview/skins/default/xui/en-us/panel_preferences_im.xml
* Online/Offline notifications now always show in IM windows.
modified: linden/indra/newview/llcallingcard.cpp
2009-06-13 McCabe Maxsted <hakushakukun@gmail.com>
* Added 'Show Map' option to the mini-map menu.
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/llnetmap.h
modified: linden/indra/newview/skins/default/xui/en-us/menu_mini_map.xml
* Moved mini-map tooltips to XML, added panning tooltip.
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/skins/default/xui/en-us/floater_mini_map.xml
modified: linden/indra/newview/skins/default/xui/en-us/panel_mini_map.xml
* Removed double click tp checkbox from preferences as it keeps the two maps more in sync,
and Show Map is in the minimap now. Keeping the debug setting.
modified: linden/indra/newview/skins/default/xui/en-us/panel_preferences_general.xml
* Forgot tooltip for map opening, fixed typo.
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/skins/default/xui/en-us/panel_mini_map.xml
* Show muted avatars as grey in the mini-map.
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/llworldmapview.cpp
modified: linden/indra/newview/skins/default/colors_base.xml
modified: linden/indra/newview/skins/silver/colors_base.xml
* Cleaned up some old unused references.
modified: linden/indra/newview/llappviewer.cpp
modified: linden/indra/newview/llappviewer.h
modified: linden/indra/newview/llfloaterreporter.cpp
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/llviewermessage.cpp
Aimee Trescothick <aimee@ama-zing.co.uk>
* VWR-4106: Mini-map beacon icon doesn't display correctly when beacon position above or below camera.
modified: linden/indra/newview/llworldmapview.cpp
modified: linden/indra/newview/llworldmapview.h
* VWR-12631: setting to adjust the maximum size of objects displayed on the minimap (MiniMapPrimMaxRadius).
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/llnetmap.cpp
modified: linden/indra/newview/llviewerobjectlist.cpp
Armin Weatherwax <email@unknown.com>
* Updated OpenJpeg to 1.3 for Linux.
modified: linden/indra/newview/viewer_manifest.py
modified: linden/install.xml
2009-06-12 McCabe Maxsted <hakushakukun@gmail.com>
* Applied patch by Robin Cornelius for VWR-12686:
LLTextureCache::writeToCache() does not cache textures smaller than TEXTURE_CACHE_ENTRY_SIZE
modified: linden/indra/newview/lltexturecache.cpp
Aimee Trescothick <aimee@ama-zing.co.uk>
* VWR-6918: Hide/Show Selection Outlines.
modified: indra/newview/app_settings/settings.xml
modified: indra/newview/llappviewer.cpp
modified: indra/newview/llselectmgr.cpp
modified: indra/newview/llselectmgr.h
modified: indra/newview/llviewermenu.cpp
modified: indra/newview/skins/default/xui/en-us/menu_viewer.xml
* VWR-13221: Allow panning of the mini-map.
modified: indra/newview/app_settings/settings.xml
modified: indra/newview/llnetmap.cpp
modified: indra/newview/llnetmap.h
modified: indra/newview/skins/default/xui/en-us/menu_mini_map.xml
2009-06-11 McCabe Maxsted <hakushakukun@gmail.com>
* Moved 'Duplicate' to the Tools menu.
* Renamed 'Select Tool' to 'Choose Tool', moved Selection options into a flyout menu.
* Renamed 'Set permissions on selected task inventory' to 'Set Bulk Permissions'.
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
* Added missing mini-map xui files.
new file: linden/indra/newview/skins/default/xui/en-us/floater_mini_map.xml
new file: linden/indra/newview/skins/default/xui/en-us/menu_mini_map.xml
new file: linden/indra/newview/skins/default/xui/en-us/panel_mini_map.xml
* Added patch and .pyc files to .gitignore.
modified: .gitignore
* Added Link/Unlink buttons to the Tools floater.
modified: linden/indra/newview/llfloatertools.cpp
modified: linden/indra/newview/llfloatertools.h
modified: linden/indra/newview/skins/default/xui/en-us/floater_tools.xml
* Fixed 'Unlink' not toggling in Tools menu.
modified: linden/indra/newview/llviewermenu.cpp
* Added Link/Unlink options to the object pie menu.
modified: linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml
* Double clicking inventory objects toggles wear/detach.
Patch originally by Nicholaz Beresford with additions by Henri Beauchamp.
modified: indra/newview/llinventorybridge.cpp
2009-06-10 McCabe Maxsted <hakushakukun@gmail.com>
* Fixed Communicate window not toggling from menu.
modified: indra/newview/llviewermenu.cpp
* Applied MJM's tree and grass pulldown list from the Hippo Viewer.
modified: linden/indra/newview/app_settings/grass.xml
modified: linden/indra/newview/app_settings/settings.xml
modified: linden/indra/newview/app_settings/trees.xml
modified: linden/indra/newview/llfloatertools.cpp
modified: linden/indra/newview/llfloatertools.h
modified: linden/indra/newview/lltoolplacer.cpp
modified: linden/indra/newview/llvograss.cpp
modified: linden/indra/newview/llvograss.h
modified: linden/indra/newview/llvotree.cpp
modified: linden/indra/newview/llvotree.h
modified: linden/indra/newview/skins/default/xui/en-us/floater_tools.xml
* Added pulldown label and fixed combobox not hiding.
modified: linden/indra/newview/llfloatertools.cpp
modified: linden/indra/newview/skins/default/xui/en-us/floater_tools.xml
* Applied Armin's patch to create an Advanced Menu menu item.
(Placed it in View and changed it to a check.)
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/llviewerwindow.cpp
modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
2009-06-09 McCabe Maxsted <hakushakukun@gmail.com>
* Backported 1.23's minimap conversion to XUI.
modified: indra/llui/llui.cpp
modified: indra/llui/llui.h
modified: indra/newview/CMakeLists.txt
modified: indra/newview/llagent.cpp
modified: indra/newview/llcolorscheme.cpp
modified: indra/newview/llcolorscheme.h
modified: indra/newview/llfloatermap.cpp
modified: indra/newview/llfloatermap.h
modified: indra/newview/llmenucommands.cpp
modified: indra/newview/llnetmap.cpp
modified: indra/newview/llnetmap.h
modified: indra/newview/llstartup.cpp
modified: indra/newview/llviewercontrol.cpp
modified: indra/newview/llviewermenu.cpp
modified: indra/newview/llviewerobject.cpp
modified: indra/newview/llviewerregion.cpp
modified: indra/newview/llviewerwindow.cpp
modified: indra/newview/llworldmapview.cpp
modified: indra/newview/skins/default/colors_base.xml
modified: indra/newview/skins/silver/colors_base.xml
2009-06-08 McCabe Maxsted <hakushakukun@gmail.com>
* Changed 'IM Received' button to '__ New IMs'.
modified: linden/indra/newview/llfloaterchatterbox.cpp
modified: linden/indra/newview/llimview.cpp
modified: linden/indra/newview/llimview.h
modified: linden/indra/newview/lloverlaybar.cpp
modified: linden/indra/newview/lloverlaybar.h
modified: linden/indra/newview/skins/default/xui/en-us/panel_overlaybar.xml
* Backported LL's version of VWR-2681 from 1.23.
modified: indra/newview/app_settings/settings.xml
modified: indra/newview/llfloateravatarpicker.cpp
modified: indra/newview/llfloateravatarpicker.h
modified: indra/newview/llfloatergodtools.cpp
modified: indra/newview/llglsandbox.cpp
modified: indra/newview/llnetmap.cpp
modified: indra/newview/llviewerobjectlist.cpp
modified: indra/newview/llworld.cpp
modified: indra/newview/llworld.h
modified: indra/newview/pipeline.cpp
modified: indra/newview/skins/default/xui/en-us/floater_avatar_picker.xml
* Fixed the Resident Chooser showing hair instead of calling cards.
modified: indra/newview/llfloateravatarpicker.cpp
2009-06-07 McCabe Maxsted <hakushakukun@gmail.com>
* Fixed CopyWinLibs.CMake errors (removed vivox).
modified: linden/indra/cmake/CopyWinLibs.cmake
modified: linden/install.xml
* Fixed VC++ error C2864: 'LLAudioEngine_OpenAL::WIND_BUFFER_SIZE_SEC' :
only static const integral data members can be initialized within a class.
modified: linden/indra/llaudio/audioengine_openal.cpp
modified: linden/indra/llaudio/audioengine_openal.h
* Fixed VC++ warning C4305: '=' : truncation from 'double' to 'float' for mVolume.
modified: linden/indra/llmedia/llmediaimplgstreamer.cpp
* Removed bad entries from copy_win_libs.
* Restored zlib1.dll (not a bad entry).
modified: linden/indra/cmake/CopyWinLibs.cmake
* Removed old linden glib entry that was interfering.
* Updated windows zlib archive.
* Updated windows iconv archive.
modified: linden/install.xml
* Placed the gstreamer plugins in newview where they belong.
modified: linden/indra/cmake/CopyWinLibs.cmake
modified: linden/install.xml
2009-05-30 Jacek Antonelli <jacek.antonelli@gmail.com>
* Updated Imprudence to be based on SL 1.22.11.
2009-04-26 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloaterbuyland.cpp:
Backported L$/sq meter info from 1.23.
* linden/indra/newview/llfloaterland.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_about_land.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_buy_land.xml:
Ditto.
2009-04-24 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloaterchatterbox.cpp:
Communicate window now shows the number of unread IMs.
* linden/indra/newview/llfloaterchatterbox.h:
Ditto.
* linden/indra/newview/llimpanel.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_chatterbox.xml:
Ditto.
2009-04-22 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llagent.cpp:
Backported fix from 1.23 for stop animations only being local (VWR-2850).
* linden/indra/newview/llagent.h:
Ditto.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Ditto.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.1.0 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2009-06-06 Jacek Antonelli <jacek.antonelli@gmail.com>
* Updated version/copyright info for Mac version.
modified: linden/indra/newview/English.lproj/InfoPlist.strings
modified: linden/indra/newview/Info-Imprudence.plist
* Set version to 1.1.0 (not RC).
modified: linden/indra/llcommon/llversionviewer.h
* Improved regex and formatting in build_version.py.
Handles empty test version strings better.
modified: linden/scripts/build_version.py
* Pie menu for HUD and Attachment should use "Attachment Touch".
modified: linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml
modified: linden/indra/newview/skins/default/xui/en-us/menu_hud_attachment.xml
* Fixed "Take" on the object pie menu not working.
modified: linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml:
2009-06-05 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloatersnapshot.cpp:
Fixed high res checkbox not hiding.
* linden/indra/newview/llselectmgr.cpp:
Redid pie menus based on feedback from VWR-8080.
* linden/indra/newview/lltoolpie.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_avatar.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_hud.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_land.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_self.xml:
Ditto.
* linden/indra/newview/llviewernetwork.cpp:
Menu bar now only changes color for Aditi.
2009-06-01 Jacek Antonelli <jacek.antonelli@gmail.com>
* Mute in Profile window triggers confirmation dialog too.
modified: linden/indra/newview/llpanelavatar.cpp
* Added confirmation dialogs for Mute from pie menu.
Dialog is for muting avatars and objects from the pie menu only.
modified: linden/indra/newview/llmutelist.cpp
modified: linden/indra/newview/llmutelist.h
modified: linden/indra/newview/llviewermenu.cpp
modified: linden/indra/newview/skins/default/xui/en-us/alerts.xml
2009-05-31 Jacek Antonelli <jacek.antonelli@gmail.com>
* Added a confirmation dialog for Take Off All Clothes.
modified: linden/indra/newview/llagent.cpp
modified: linden/indra/newview/llagent.h
modified: linden/indra/newview/skins/default/xui/en-us/alerts.xml
2009-05-25 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventorybridge.cpp (buildContextMenu):
Added a separator between Wear and Restore to Last Position.
* linden/indra/newview/skins/default/xui/en-us/menu_inventory.xml:
Ditto.
* linden/indra/newview/llinventorybridge.cpp:
Restore to Last Position has a confirmation dialog now.
* linden/indra/newview/llinventorybridge.cpp:
Added Restore to Last Position confirmation and callback methods.
LLItemBridge::restoreToWorldConfirm()
LLItemBridge::restoreToWorldCallback()
* linden/indra/newview/llinventorybridge.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Added ConfirmRestoreToWorld alert text.
* linden/indra/newview/llpanellogin.cpp:
User-initiated Toggle Fullscreen has a confirmation dialog now.
That's in the View menu and also Alt+Enter at login screen.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/newview/llviewerwindow.cpp:
Added Toggle Fullscreen confirmation and callback methods.
LLViewerWindow::toggleFullscreenConfirm()
LLViewerWindow::toggleFullscreenCallback()
* linden/indra/newview/llviewerwindow.h (LLWindowCallbacks):
Ditto.
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Added ConfirmToggleFullscreen alert text.
2009-05-24 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llfloaterworldmap.cpp:
User-initiated Teleport Home has confirmation dialog.
That's in the World menu and on the world map.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/newview/llagent.cpp:
Added Teleport Home confirmation and callback methods.
LLAgent::teleportHomeConfirm()
LLAgent::teleportHomeCallback()
* linden/indra/newview/llagent.h:
Ditto.
* linden/indra/newview/llagent.cpp:
Moved LLAgent::teleportHome() definition.
Was in llagent.h for no good reason, now in llagent.cpp.
* linden/indra/newview/llagent.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Added ConfirmTeleportHome alert text.
2009-05-18 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Changed the list of installed Mac gstreamer plugins.
Commented out libgstqtwrapper.so, since it causes issues with
MP3s (and perhaps other types).
Added:
libgstfilter.so
libgstmultifile.so
libgststereo.so
libgstvideobalance.so
libgstvideobox.so
libgstvideocrop.so
libgstvideoflip.so
libgstvideomixer.so
libgstvideorate.so
libgstvideosignal.so
2009-05-16 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Reverted Ctrl-D shortcut back to Edit > Duplicate.
No longer World > Create Landmark Here.
2009-05-02 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Added libgstqtwrapper.so to Mac manifest.
2009-04-28 McCabe Maxsted <hakushakukun@gmail.com>
* linden/install.xml:
Fixed gstreamer plugins windows library.
* linden/indra/cmake/CopyWinLibs.cmake:
Updated copy_win_libs for 1.1 RC3.
2009-04-27 Armin Weatherwax <email@unknown.com>
* linden/indra/newview/llchatbar.cpp:
Applied Armin's gesture manager patch.
* linden/indra/newview/skins/default/xui/en-us/panel_chat_bar.xml:
Ditto.
2009-04-20 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llaudio/audioengine_openal.cpp:
Imported GreenLife Emerald Viewer's OpenAL code. It works!
* linden/indra/llaudio/audioengine_openal.h:
Ditto.
* linden/indra/newview/viewer_manifest.py:
We'll use libopenal.1.dylib after all (yet again).
* linden/indra/cmake/OPENAL.cmake:
Help (force) Mac find the right OpenAL lib and header dir.
* linden/install.xml:
Mac viewer uses Thomas Shikami's OpenAL libs.
2009-04-18 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.h:
LLMediaImplGStreamer::startPlay() is protected, LLGstPlayThread friend.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Removed redundant play() from LLMediaImplGStreamer::navigateTo().
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
LLMediaImplGStreamer::play() is no-op if already playing.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Removed some useless code from LLMediaImplGStreamer::startPlay().
2009-04-17 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
GST_PLUGIN_PATH should only search plugin directories for Windows.
* linden/install.xml:
Removed 'https' from install.xml.
Updated Windows GStreamer plugin url.
Updated Windows GLib url.
Updated Windows GStreamer url.
Updated Windows libpng url.
2009-04-10 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Added libneon to Mac manifest.
* linden/indra/cmake/OPENAL.cmake:
Help Mac find the right libalut.0.dylib.
* linden/indra/cmake/GStreamer.cmake:
Help Mac find the right libxml2.2.dylib.
* linden/indra/newview/viewer_manifest.py:
Tweaked Mac lib manifest.
Removed pango, commented out libopenal, added libxml2.
2009-04-06 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Don't use LL_ERRS, it makes the viewer abort!
* linden/indra/llcommon/llerror.cpp:
Made LogLock mutex less likely to fail, hopefully.
* linden/indra/llcommon/llthread.cpp:
Converted BOOLs to bools in llthread.
* linden/indra/llcommon/llthread.h:
Ditto.
2009-04-05 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
LLMediaImplGStreamer creates new thread for playing.
This keeps the viewer responsive while GStreamer does its thing.
* linden/indra/llmedia/llmediaimplgstreamer.h:
Ditto.
* linden/indra/llmedia/llgstplaythread.cpp:
Added LLGstPlayThread class.
* linden/indra/llmedia/llgstplaythread.h:
Ditto.
* linden/indra/llmedia/CMakeLists.txt:
Ditto.
2009-04-04 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Refactored the heart of the GST play code to startPlay().
2009-04-02 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llviewermedia.cpp:
Apply saved MediaDebugLevel at media init time.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Plugged in LLMediaImplGStreamer::gstreamer_log().
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Implemented LLMediaImplGStreamer::gstreamer_log().
* linden/indra/llmedia/llmediaimplgstreamer.h:
Ditto.
* linden/indra/newview/llviewercontrol.cpp:
Implemented handleMediaDebugLevelChanged hook.
2009-04-01 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
Added MediaDebugLevel setting in XML (does nothing yet).
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Implemented LLMediaImplGstreamer::setDebugLevel().
* linden/indra/llmedia/llmediaimplgstreamer.h:
Ditto.
* linden/indra/llmedia/llmediaimplcommon.cpp:
Added LLMediaImplCommon::setDebugLevel().
* linden/indra/llmedia/llmediaimplcommon.h:
Ditto.
* linden/indra/llmedia/llmediabase.h:
Added LLMediaBase::EDebugLevel and setDebugLevel prototype.
2009-03-30 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Added libgstdecodebin.so plugin to Mac manifest.
2009-03-30 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Cleaned up logic for bad streams.
2009-03-29 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
set_gst_plugin_path now sets GST_PLUGIN_SYSTEM_PATH="".
This prevents GStreamer from looking for system-installed plugins,
which can have conflicts with our packaged ones.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Improved set_gst_plugin_path, now sets path on Mac too.
* linden/indra/cmake/GStreamer.cmake:
Using OpenAL framework on Mac after all. Maybe.
* linden/indra/cmake/GStreamer.cmake:
Tweaked the list of linked-in gstreamer libs for Mac.
* linden/indra/newview/viewer_manifest.py:
Removed the "2.0.0" named glib libs. Only using "2.0" now.
2009-03-29 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Added loading status to the log's plugin list.
set_gst_plugin_path now compiles for windows.
* linden/indra/newview/llappviewer.cpp:
Removed unnecessary headers.
* linden/indra/cmake/00-Common.cmake
Added VS optimizations to cmake
Added flag for multi-core compiling in VS2005
2009-03-28 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Improved set_gst_plugin_path, more comprehensive path.
Also tried to tidy up a bit.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Moved Windows GST_PLUGIN_PATH setup to LLMediaImplGStreamer.
LLAppViewer::gst_plugin_path -->
LLMediaImplGStreamer::set_gst_plugin_path
* linden/indra/llmedia/llmediaimplgstreamer.h:
Ditto.
* linden/indra/newview/llappviewer.h:
Ditto.
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Print out the plugins gstreamer finds, for debugging.
2009-03-27 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
Changed the login splash screen URL.
2009-03-27 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Fixed video streams freezing the viewer.
2009-03-26 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamervidplug.cpp:
Fixed/improved how slvideo gst plugin is registered.
* linden/indra/llmedia/llmediaimplgstreamer_syms.cpp:
Removed obsolete gstreamer_syms files.
* linden/indra/llmedia/llmediaimplgstreamer_syms.h:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer_syms_raw.inc:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer_syms_rawa.inc:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer_syms_rawv.inc:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Removed all that llgst and symbol grabbing silliness.
Some symbols require gstreamer >= 0.10.11.
* linden/indra/llmedia/llmediaimplgstreamervidplug.cpp:
Ditto.
* linden/indra/llmedia/CMakeLists.txt:
Ditto.
* linden/indra/cmake/GStreamer.cmake:
Link with some gstreamer core libs on Linux.
2009-03-16 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Visual Studio now ignores C4244 warnings in GStreamer.
Since the change was intentional, I thought it best to
continue using "treat warnings as errors" and ignore it.
* linden/indra/llmedia/llmediaimplgstreamer_syms.cpp:
Ditto.
* linden/indra/llmedia/llmediamanager.cpp:
Ditto.
2009-03-16 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Symlinks for Mac glib dylibs (2.0.0 -> 2.0).
* linden/indra/newview/viewer_manifest.py:
Added more Mac dylibs to manifest.
2009-03-13 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llaudio/audioengine_openal.cpp:
Added error checking when generating an OpenAL source.
2009-03-12 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/cmake/OPENAL.cmake:
Don't find specific OpenAL lib locations on Mac/Linux.
Linking that way is bad. Just use -lopenal -lalut instead.
2009-03-11 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/cmake/OPENAL.cmake:
Removed redundant/unnecessary OpenAL lib names and paths.
* linden/indra/newview/viewer_manifest.py:
Added Mac gstreamer plugins to viewer manifest.
* linden/indra/llaudio/CMakeLists.txt:
LLAudio's CMakeLists should include OPENAL.
* linden/indra/cmake/LLMedia.cmake:
Removed Quicktime-related cmake code.
* linden/indra/cmake/LLMedia.cmake:
Ditto.
* linden/indra/llmedia/CMakeLists.txt:
Ditto.
* linden/indra/newview/CMakeLists.txt:
Ditto.
2009-03-10 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llaudio/audioengine.cpp:
Changed startinternetstream() a bit to be clearer.
2009-03-09 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Manifest includes openal and gstreamer libs in Mac package.
* linden/indra/newview/CMakeLists.txt:
Mac app icon will be called viewer.icns instead of secondlife.icns.
* linden/indra/newview/Info-Imprudence.plist:
Ditto.
* linden/indra/newview/viewer_manifest.py:
Ditto.
2009-03-08 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Load the proper gstreamer lib type (dylib) on Mac.
* linden/indra/cmake/GStreamer.cmake:
Tweaked GStreamer.cmake to work on Mac.
2009-03-07 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/Info-SecondLife.plist:
Moved Info-SecondLife.plist to Info-Imprudence.plist.
* linden/indra/newview/viewer_manifest.py:
Ditto.
2009-03-07 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llimagej2coj/llimagej2coj.cpp:
Backported fix for VWR-4070 from 1.22.
* linden/indra/llaudio/audioengine.cpp:
Applied patch by Zwagoth Klaar for muting sounds before decoding.
* linden/indra/newview/llviewermessage.cpp:
Ditto.
* linden/indra/llmessage/llhttpclient.cpp:
Applied memleak patch from VWR-9400 by Henri and Carjay.
* linden/indra/newview/llvoavatar.cpp:
Use std::string for nametags, removed bizarre name stacking option.
2009-03-01 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloaterchat.cpp:
Backported fix for VWR-3060 (No way to hide IMs in chat console).
* linden/indra/newview/skins/default/xui/en-us/panel_preferences_im.xml:
Ditto.
2009-02-28 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/textures/textures.xml:
Fixed pause button texture showing up in certain instances.
* linden/indra/newview/skins/default/xui/de/panel_media_controls.xml:
Ditto.
* linden/indra/newview/skins/default/xui/fr/panel_media_controls.xml:
Ditto.
* linden/indra/newview/skins/default/xui/ja/panel_media_controls.xml:
Ditto.
* linden/indra/newview/skins/default/xui/ko/panel_media_controls.xml:
Ditto.
* linden/indra/newview/skins/silver/xui/en-us/panel_media_controls.xml:
Ditto.
* linden/indra/newview/llfilepicker.cpp:
Applied patch for VWR-5575 (crash in the file picker dealing
with accented characters and bad locale) by Alissa Sabre.
* linden/indra/newview/pipeline.cpp:
Backported possible crash fix while changing graphics settings from 1.22.
* linden/indra/llui/llfloater.cpp:
Backported possible crash fix in llfloater.cpp from 1.22.
* linden/indra/newview/lldrawable.cpp:
Backported fix for VWR-3871 (prim position appears to be off) from 1.22.
* linden/indra/newview/llcompilequeue.cpp:
Backported fix for SVC-2771 (script resetting can fail) from 1.22.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/llcharacter/llbvhloader.cpp:
Backported fix for VWR-996 (wrong visualisation of animations) from 1.22.
* linden/indra/newview/app_settings/keywords.ini:
Applied my patch for VWR-8454 (PARCEL_FLAG_ALLOW_CREATE_GROUP_OBJECTS
not highlighted in script editor).
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.1.0 RC2 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2009-02-27 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llcommon/llversionviewer.h:
Bumped test version to RC2.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Initialize gstreamer (if needed) when making LLMediaImplGStreamer.
Lets us find gstreamer version for "About Imprudence" before login.
* linden/indra/newview/llfloaterabout.cpp:
Get gstreamer reference from media manager.
Eliminates the need to include llmediaimplgstreamer.h,
which causes problems on Linux due to name clash between
libxml2 and expat's XMLCALLs.
* linden/indra/llui/CMakeLists.txt:
LLUI's CMakeList needs LLMedia cmake stuff.
* linden/indra/newview/viewer_manifest.py:
Added libgstpulse.so (PulseAudio) to Linux manifest.
McCabe Maxsted <hakushakukun@gmail.com>
* linden/install.xml:
Updated GStreamer libs to RC2.
2009-02-26 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llpreviewlandmark.cpp:
Fixed bad LM patch side-effect.
2009-02-25 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/menu_pie_hud.xml:
Forgot to add touch back in to menu_pie_hud.xml.
* linden/indra/cmake/CopyWinLibs.cmake:
Fixed copy_win_libs.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Likely fix for inventory folders re-opening. [#98]
2009-02-24 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Changed the show/hide shortcuts to be linux friendly.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_hud.xml:
Added menu_pie_hud.xml, removed legacy rate pie menu references.
* linden/indra/newview/CMakeLists.txt:
Ditto.
* linden/indra/newview/llselectmgr.cpp:
Ditto.
* linden/indra/newview/lltoolpie.cpp:
Ditto.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/newview/llviewermenu.h:
Ditto.
2009-02-17 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmessage/llpumpio.cpp:
Fixed crash in Top Scripts.
2009-02-16 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llui/llkeywords.cpp:
Fixed LSL comment coloring bleeding to next line. [#96]
McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Added GStreamer version info to About > Imprudence.
* linden/indra/llmedia/llmediaimplgstreamer_syms_raw.inc:
Ditto.
* linden/indra/newview/llfloaterabout.cpp:
Ditto.
* linden/indra/llaudio/audioengine.cpp:
Fixed some bad comment formatting.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Added error checking to play/stop/pause to prevent bad looping.
* linden/indra/llmedia/llmediaimplgstreamer_syms_raw.inc:
Ditto.
2009-02-15 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llcommon/llsdserialize.cpp:
Backported LLSD changes.
* linden/indra/llcommon/llsdserialize_xml.cpp:
Ditto.
* linden/indra/llmessage/message_prehash.cpp:
Added MonoScore to message_prehash.
* linden/indra/llmessage/message_prehash.h:
Ditto.
* linden/indra/newview/llfloatertopobjects.cpp:
Ditto.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llui/llkeywords.cpp:
Don't assume that start and end delimiters are same length.
2009-02-14 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
Fixed missing music prompt (streaming now enabled by default).
* linden/indra/newview/llviewerparcelmedia.cpp:
Ditto.
* linden/indra/newview/llviewerparcelmgr.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Ditto.
* linden/indra/newview/lloverlaybar.cpp:
Fixed music button not toggling on first run.
* linden/indra/newview/lloverlaybar.h:
Ditto.
* linden/indra/newview/llviewerparcelmgr.cpp:
Ditto.
* linden/indra/newview/llmediaremotectrl.cpp:
Removed useless music pause button.
* linden/indra/newview/skins/default/xui/en-us/panel_media_controls.xml:
Ditto.
* linden/indra/newview/llviewergesture.cpp:
Gestures now muted with sounds.
2009-02-13 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Removed junk code from GStreamer.
* linden/indra/llmedia/llmediaimplgstreamer.h:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamervidplug.cpp:
Ditto.
* linden/indra/newview/app_settings/settings.xml:
Fixed sound settings not being correctly muted.
* linden/indra/newview/llviewermessage.cpp:
Ditto.
* linden/indra/newview/llviewerobject.cpp:
Ditto.
* linden/indra/newview/llvoavatar.cpp:
Ditto.
Armin Weatherwax <email@unknown.com>
* linden/indra/newview/llpreviewlandmark.cpp:
Removed search for non-existant floater_preview_new_landmark.xml.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Added artist/title tag info support.
* linden/indra/llmedia/llmediaimplgstreamer_syms_raw.inc:
Ditto.
Anders Arnholm <anders@arnholm.se>
* linden/indra/llui/lltexteditor.cpp:
Fixed crash in LLTextEditor::findHTML
2009-02-12 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloatertopobjects.cpp:
Backported Top Objects changes from 1.22.
* linden/indra/newview/skins/default/xui/en-us/floater_top_objects.xml:
Ditto.
2009-02-04 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/cmake/CopyWinLibs.cmake:
develop.py should now work again under windows.
* linden/indra/cmake/GStreamer.cmake:
Ditto.
* linden/indra/cmake/OPENAL.cmake:
Ditto.
* linden/install.xml:
Ditto.
2009-02-03 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llviewermenu.cpp:
Fixed llSetTouchText().
* linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml:
Ditto.
* linden/indra/cmake/CopyWinLibs.cmake:
Updated CMake to RC1.
* linden/indra/cmake/OPENAL.cmake:
Ditto.
* linden/install.xml:
Ditto.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.1.0 RC1 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2009-02-02 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Added linux gstreamer libs, dependencies, and plugins.
* linden/indra/newview/viewer_manifest.py:
Removed some unused libs from Linux manifest.
* linden/indra/newview/viewer_manifest.py:
Get AL libs from real libs dir, not vivox.
* linden/indra/newview/viewer_manifest.py:
Removed redundant packaging of text files.
2009-01-30 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llmath/llcalc.cpp:
Tweaked build math variable names for consistency.
X/Y/Z go at end of variables, e.g. XP --> PX.
* linden/indra/newview/llpanelobject.cpp:
Made build math taper/hole size correct for box/etc. [#62]
* linden/indra/llaudio/audioengine_openal.cpp:
Disabled spammy loadWAV error for nonexistent files.
* linden/indra/newview/llviewerregion.cpp
Fix crash with two instances logged in to opensim.
Patch by Armin Weatherwax.
McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Updated build math cheat sheet to new variable names.
* linden/indra/newview/app_settings/settings.xml:
Fixed default communicate size being too small.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message.xml:
Ditto.
2009-01-29 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Removed spammy gstreamer debug messages.
* ChangeLog.txt
Armin Weatherwax, not Armin.
* linden/indra/newview/llfloatersnapshot.cpp:
Added TGA to snapshot options.
* linden/indra/newview/llfloatersnapshot.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_snapshot.xml:
Ditto.
* linden/indra/newview/llviewermessage.cpp:
llLoadUrl scripts now respect browser preferences.
2009-01-27 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Vetoed shortcut for Show XUI Names (Ctrl-Shift-X).
It's just not used often enough to justify a shortcut.
Partial revert of earlier commit 2dd736ab.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Moved View > Show HUD Attachments to Advanced menu.
New location is:
Advanced > Rendering > Features > HUD Attachments
Also removed keyboard shortcut.
* linden/indra/newview/llviewermenu.cpp:
Restored View > Toolbar and Show HUD Attachments.
Partial revert of earlier commit e79a1cc5.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
Ditto.
* linden/indra/newview/linux_tools/wrapper.sh:
Set GST_PLUGIN_PATH for Linux.
McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llappviewer.cpp:
Plugin path set via string.
* linden/indra/newview/llfloatersnapshot.cpp:
Fixed high res snapshots not working from the snapshot window
2009-01-26 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/cmake/CopyWinLibs.cmake:
Added GStreamer to Cmake.
* linden/indra/cmake/GStreamer.cmake:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamervidplug.h:
Ditto.
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/install.xml:
Ditto.
2009-01-24 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloaterhtmlhelp.cpp:
Fixed 'open in external browser' button.
2009-01-23 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llui/lltexteditor.cpp:
Backported Qarl's fix for VWR-8773: Closing parenthesis breaks urls.
* linden/indra/llcommon/llstring.h:
Backported fix for VWR-5529: group chat scrolls up when logging enabled.
* linden/indra/llui/lltexteditor.cpp:
Ditto.
* linden/indra/llui/lltexteditor.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_chat_history.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message_ad_hoc.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message_group.xml:
Ditto.
* linden/indra/llui/llkeywords.cpp:
Fixed single line comment highlighting.
2009-01-22 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llappviewer.cpp:
Windows version sets its own gstreamer environment variable.
* linden/indra/newview/llappviewer.h:
Ditto.
2009-01-21 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Added link to wiki tutorial and missing variables to build cheat sheet.
2009-01-20 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/floater_media_browser.xml:
Fixed browser button layout.
* linden/indra/newview/app_settings/settings.xml:
Added new setting 'HelpSupportURL' for support homepage.
* linden/indra/newview/skins/default/xui/en-us/strings.xml:
Added translatable message for 'Set As Home' button.
* linden/indra/newview/llfloaterhtmlhelp.cpp:
Browser window now toggles from the menu, removed legacy F1 help code.
* linden/indra/newview/llfloaterhtmlhelp.h:
Ditto.
* linden/indra/newview/llfloaterhtml.cpp:
Deleted legacy browser window.
* linden/indra/newview/llfloaterhtml.h:
Ditto.
* linden/indra/newview/skins/default/xui/de/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/es/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/fr/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/ja/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/ko/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/pt/floater_html.xml:
Ditto.
* linden/indra/newview/skins/default/xui/zh/floater_html.xml:
Ditto.
* linden/indra/newview/CMakeLists.txt:
Ditto.
* linden/indra/newview/llfloaterchat.cpp:
Removed legacy include for llfloaterhtml.h
* linden/indra/newview/llwebbrowserctrl.cpp:
Ditto.
* linden/indra/newview/llimpanel.cpp:
Ditto.
* linden/indra/newview/llpanellogin.cpp:
Ditto.
* linden/indra/newview/llurldispatcher.cpp:
Ditto.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/newview/llviewerparcelmgr.cpp:
Ditto.
* linden/indra/newview/llviewerstats.cpp:
Ditto.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llfolderview.cpp:
VWR-508/VWR-2199: Create "Worn Items" tab in Inventory
Patch by Vadim Bigbear.
* linden/indra/newview/llfolderview.h:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Ditto.
* linden/indra/newview/llinventoryview.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Ditto.
2009-01-18 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llpanelinventory.cpp:
LLFolderViewEventListener has type NIT_FOLDER.
This fixes folders always showing when filtering.
2009-01-17 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llfolderview.cpp:
Replaced some 0xffffffff's with NIT_ALL.
2009-01-16 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llgroupnotify.cpp:
Fixed group notice popup showing wrong item type.
Attachment was showing texture icon regardless of type.
* linden/indra/newview/llfloateravatarpicker.cpp:
Fixed Resident chooser not showing calling cards.
* linden/indra/newview/lltexturectrl.cpp:
Fixed texture picker not showing textures.
* linden/indra/newview/llinventoryview.cpp:
Cosmetic code cleanup in LLInventoryViewFinder.
* linden/indra/newview/llinventoryview.cpp:
Removed some dead code in LLInventoryViewFinder.
* linden/indra/newview/llinventoryview.cpp:
Removed now-useless LLInventoryViewFinder::draw().
* linden/indra/newview/llinventoryview.h:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Use UI callbacks to initiate rebuilding filter.
Instead of rebuilding from draw() every frame.
* linden/indra/newview/llinventoryview.h:
Ditto.
McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llviewermenu.cpp:
Removed Toolbar and Show HUD options.
* linden/indra/newview/llpanelgeneral.cpp:
Moved Reset UI Size to Default to Preferences > General.
* linden/indra/newview/llpanelgeneral.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/panel_preferences_general.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Placed Zoom options in a submenu.
2009-01-15 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/lscript/lscript_compile/indra.l:
Added compile support for multiline comments.
* linden/indra/llui/llkeywords.cpp:
Added viewer support for multiline comments.
* linden/indra/llui/llkeywords.h:
Ditto.
* linden/indra/newview/app_settings/keywords.ini:
Ditto.
* linden/indra/llui/llkeywords.cpp:
Fixed crash bug while loading keywords.
* linden/indra/newview/app_settings/keywords.ini:
Ditto.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llvoavatar.cpp:
VWR-8012: Avatars rendered too dark.
Patch posted by CG Linden.
* linden/indra/newview/llfolderview.cpp:
Fixed folders expanding when Show Filters is opened.
* linden/indra/newview/llinventoryview.cpp:
Simplified rebuildFilter() a bit.
* linden/indra/newview/llinventoryview.cpp:
LLInventoryViewFinder::rebuildFilter().
Refactored from draw().
* linden/indra/newview/llinventoryview.h:
Ditto.
2009-01-14 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmath/llmodularmath.h:
Updated llmessage.
* linden/etc/message.xml:
Ditto.
* linden/indra/lib/python/indra/ipc/llsdhttp.py:
Ditto.
* linden/indra/lib/python/indra/ipc/mysql_pool.py:
Ditto.
* linden/indra/lib/python/indra/ipc/servicebuilder.py:
Ditto.
* linden/indra/lib/python/indra/ipc/siesta.py:
Ditto.
* linden/indra/lib/python/indra/util/llmanifest.py:
Ditto.
* linden/indra/lib/python/indra/util/llversion.py:
Ditto.
* linden/indra/lib/python/indra/util/named_query.py linden/indra/llcommon/llstat.cpp:
Ditto.
* linden/indra/llcommon/llstat.h linden/indra/llmessage/llcircuit.cpp:
Ditto.
* linden/indra/llmessage/llcircuit.h linden/indra/llmessage/llcurl.cpp:
Ditto.
* linden/indra/llmessage/llhttpassetstorage.cpp linden/indra/llmessage/llhttpclient.cpp:
Ditto.
* linden/indra/llmessage/llhttpclient.h linden/indra/llmessage/lliohttpserver.cpp:
Ditto.
* linden/indra/llmessage/llmail.cpp linden/indra/llmessage/llmail.h:
Ditto.
* linden/indra/llmessage/llmessagetemplate.cpp:
Ditto.
* linden/indra/llmessage/llmessagetemplate.h:
Ditto.
* linden/indra/llmessage/llmessagethrottle.cpp:
Ditto.
* linden/indra/llmessage/llnamevalue.cpp:
Ditto.
* linden/indra/llmessage/llnamevalue.h linden/indra/llmessage/llpumpio.cpp:
Ditto.
* linden/indra/llmessage/llregionflags.h linden/indra/llmessage/message.cpp:
Ditto.
* linden/indra/llmessage/message.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message.xml:
Added the 'Return to World' inventory option.
* linden/indra/llcommon/indra_constants.h:
Ditto.
* linden/scripts/messages/message_template.msg:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_inventory.xml:
Ditto.
* linden/indra/lib/python/indra/base/llsd.py linden/indra/newview/llinventorybridge.cpp:
Ditto.
* linden/indra/newview/llinventorybridge.h:
Ditto.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Don't show empty folders when using filter.
This is the old behavior, but I had broken it.
* linden/indra/llinventory/llinventorytype.h:
Added inventory ntype for folders.
* linden/indra/llinventory/llinventory.cpp:
Ditto.
2009-01-13 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message.xml
Added text to IM window about inventory transfers.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message_group.xml
Fixed the 'Join' button being too small.
* linden/install.xml
Removed bad Windows Glib package.
2009-01-12 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llcommon/llversionviewer.h
Changed version to RC1.
* linden/indra/lib/python/indra/base/llsd.py:
Updated changes to LLSD.
* linden/indra/lib/python/indra/util/fastest_elementtree.py:
Ditto.
* linden/indra/llcommon/llkeythrottle.h:
Ditto.
* linden/indra/llinventory/llsaleinfo.cpp:
Ditto.
* linden/indra/llmessage/llurlrequest.cpp:
Backported message timeout changes.
* linden/indra/llmessage/lliosocket.cpp:
Ditto.
* linden/indra/llmessage/llpumpio.cpp:
Ditto.
* linden/indra/llmessage/llpumpio.h:
Ditto.
* linden/indra/llmath/llcalc.cpp:
Added cheat sheet help buttons in tools window.
* linden/indra/newview/llpanelface.cpp:
Ditto.
* linden/indra/newview/llpanelface.h:
Ditto.
* linden/indra/newview/llpanelobject.cpp:
Ditto.
* linden/indra/newview/llpanelobject.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Tweaked the layout a bit.
2009-01-11 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llvieweraudio.cpp:
Wind disabled by default, ambient wind muting fixed, added debug setting 'MuteAudio'.
* linden/indra/newview/llvieweraudio.h:
Ditto.
* linden/indra/newview/app_settings/settings.xml:
Ditto.
Aimee Trescothick <aimee@ama-zing.co.uk>
* linden/indra/llmath/llcalc.cpp:
Ability to do simple math in build editor.
* linden/indra/llmath/llcalc.h:
Ditto.
* linden/indra/llmath/llcalcparser.cpp:
Ditto.
* linden/indra/llmath/llcalcparser.h:
Ditto.
* linden/indra/llmath/CMakeLists.txt:
Ditto.
* linden/indra/llui/lllineeditor.cpp:
Ditto.
* linden/indra/llui/lllineeditor.h:
Ditto.
* linden/indra/llui/llspinctrl.cpp:
Ditto.
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/indra/newview/llpanelface.cpp:
Ditto.
* linden/indra/newview/llpanelobject.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Ditto.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/cmake/GStreamer.cmake:
Added more gstreamer include paths.
* linden/install.xml:
Added glib package to install.xml.
* linden/indra/newview/CMakeLists.txt:
Use BOOST_SIGNALS_LIB in newview/CMakeLists.
* cmake/DBusGlib.cmake:
Removed references to unused dbusglib.
* newview/CMakeLists.txt:
2009-01-10 Armin Weatherwax <email@unknown.com>
* linden/indra/newview/llviewermenu.cpp:
Added 'create landmark' to land pie menu.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_land.xml:
Ditto.
* linden/indra/newview/app_settings/settings.xml:
Double clicking minimap tps.
* linden/indra/newview/llnetmap.cpp:
Ditto.
* linden/indra/newview/llpanelgeneral.cpp:
Ditto.
* linden/indra/newview/llpanelgeneral.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/panel_preferences_general.xml:
Ditto.
McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llviewermenu.cpp:
Backported 'report abuse' avatar pie menu option.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_avatar.xml:
Ditto.
* linden/indra/newview/llmaniptranslate.h:
Fixed bottom HUD arrow (from VWR-5518, possible memory leak in linden code).
2009-01-08 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/cmake/CopyWinLibs.cmake:
Added openal32.dll and alut.dll to CopyWinLibs.cmake.
* linden/indra/newview/viewer_manifest.py:
Added openal32.dll and alut.dll to viewer_manifest.py.
2009-01-06 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llmedia/CMakeLists.txt:
Streaming music/video now works on Windows.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer.h:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer_syms.cpp:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamer_syms.h:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamervidplug.cpp:
Ditto.
* linden/indra/llmedia/llmediaimplgstreamervidplug.h:
Ditto.
* linden/indra/llmedia/llmediamanager.cpp:
Ditto.
* linden/indra/llwindow/llwindowsdl.cpp:
Ditto.
* linden/indra/newview/llviewermenu.cpp:
Added shortcut and message to landmark creation.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/strings.xml:
Ditto.
2008-12-30 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llaudio/audioengine_openal.cpp:
Fixed a compile problem in VS2005.
* linden/indra/llaudio/audioengine_openal.h:
Ditto.
* Merged in balp's openal branch.
* linden/indra/CMakeLists.txt:
"Added fix for VWR-10392 as well as other fixes.
* linden/indra/cmake/00-Common.cmake:
Ditto.
* linden/indra/cmake/APR.cmake:
Ditto.
* linden/indra/cmake/CopyWinLibs.cmake:
Ditto.
* linden/indra/cmake/DirectX.cmake:
Ditto.
* linden/indra/cmake/FindMono.cmake:
Ditto.
* linden/indra/cmake/GooglePerfTools.cmake:
Ditto.
* linden/indra/cmake/LLXML.cmake:
Ditto.
* linden/indra/cmake/Linking.cmake:
Ditto.
* linden/indra/cmake/NDOF.cmake:
Ditto.
* linden/indra/cmake/Python.cmake:
Ditto.
* linden/indra/cmake/QuickTime.cmake:
Ditto.
* linden/indra/develop.py:
Ditto.
* linden/indra/newview/CMakeLists.txt:
Ditto.
* linden/indra/cmake/DBusGlib.cmake:
Ditto.
2008-12-29 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/CMakeLists.txt:
Removed llkdu from cmake.
* linden/indra/cmake/CopyWinLibs.cmake:
Ditto.
* linden/indra/cmake/LLKDU.cmake:
Ditto.
* linden/indra/newview/CMakeLists.txt:
Ditto.
* linden/indra/newview/viewer_manifest.py:
Ditto.
* linden/install.xml:
Ditto.
2008-12-24 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llwindebug.cpp:
Rebranded windows crash dump filenames.
* linden/indra/newview/llfloaterworldmap.cpp:
llMapDestination and map floater can now tp up to 4096m.
* linden/etc/message.xml:
Added inventory changes for one method of inventory
loss and upcoming new inv capabilities.
* linden/indra/llcommon/indra_constants.h:
Ditto.
* linden/indra/llinventory/llinventory.cpp:
Ditto.
* linden/indra/newview/llinventorymodel.cpp:
Ditto.
* linden/indra/newview/llinventorymodel.h:
Ditto.
* linden/indra/newview/llstartup.cpp:
Ditto.
* linden/indra/newview/llviewerinventory.cpp:
Ditto.
2008-12-22 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llviewermenu.cpp:
Buy and Take now separated in the pie menu.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml
Moved Buy to the top level.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_self.xml
Replaced 'Go' with 'Inventory'.
* linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml
Added menu items useful for prim-based avatars.
2008-12-16 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
Enabled lip sync by default.
* linden/indra/newview/llfloatersnapshot.cpp:
Moved "High-res snapshot" to the snapshot floater.
* linden/indra/newview/skins/default/xui/en-us/floater_snapshot.xml:
Ditto.
* linden/indra/newview/llviewermenu.cpp:
Moved "High-res snapshot" to the snapshot floater.
Removed "Compress Snapshot to disk".
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Changed "Rebake Textures" to "Refresh Appearance" and placed it in Edit.
Added "Ctrl-Shift-X" as a shortcut to "Show XUI names").
* linden/indra/newview/llviewerwindow.cpp:
Removed "Compress Snapshot to disk".
* linden/indra/newview/skins/default/xui/en-us/panel_preferences_input.xml:
Moved "Disable Camera Constraints" to Preferences > Input/Camera.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llselectmgr.cpp:
VWR-1582: Local ruler mode wrong for linked objects.
Also VWR-11103 (regression of above).
2008-12-15 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/install.xml:
Switched OpenJPEG package to a tar.bz2.
The install.py script doesn't support .zip files.
Maybe later we could add support for that.
* linden/indra/newview/llworld.cpp:
VWR-9352: Prim falls to 256m height when moved outworld.
Patch by Aimee Trescothick.
2008-12-13 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/scripts/build_version.py:
Version string generator now includes test label.
This is used for naming packages on Linux, among other things.
* linden/indra/llcommon/llversionviewer.h:
Bumped version to 1.1.0 alpha.
2008-12-12 Balp Allen <Anders@Arnholm.se>
* Bumped version to RC3
* Applied patches from Henri's CoolViewer:
Possible to discard much more given items.
2008-12-11 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloaterinspect.cpp:
VWR-10823: Right click > Inspect crashes viewer.
Backported from LL's 1.22 RC3.
2008-12-10 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Use NType to find inventory icon name.
* linden/indra/newview/llinventoryview.h:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Clearing search shouldn't clear filter type.
2008-12-09 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Start fetching inventory when quick filter changes.
* linden/indra/newview/llinventoryview.cpp:
Refresh filter text when quick filter changes.
* linden/indra/newview/llfolderview.cpp:
Refactored; added LLInventoryFilter::rebuildFilterText().
* linden/indra/newview/llfolderview.h:
Ditto.
* linden/indra/newview/llfolderview.cpp:
Updated Inventory window filter text generation.
It was putting the wrong types in the title when
filtering. [#25]
2008-12-08 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Hooked up Body Parts quickfilter and checkbox.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Added Quick Filter item for Body Parts.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml:
Added Show Filters checkbox for Body Parts.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml:
Converted Show Filters window to relative positioning.
* linden/indra/newview/llfolderview.cpp:
Inventory filtering is now done by NType.
* linden/indra/newview/llinventorybridge.cpp:
LLInvFVBridge and derived classes have NTypes.
* linden/indra/newview/llinventorybridge.h:
Ditto.
* linden/indra/newview/llpanelinventory.cpp:
Ditto.
* linden/indra/newview/llfolderview.h:
Added LLFolderViewEventListener::getNInventoryType()
Pure virtual method, overridden in derived classes.
* linden/indra/newview/llinventoryview.cpp:
LLInventoryView uses new inventory type.
* linden/indra/llinventory/llinventory.cpp:
Recalculate ntype when changing type or flags.
* linden/indra/llinventory/llinventory.cpp:
Added LLInventoryItem::recalcNInventoryType().
* linden/indra/llinventory/llinventory.h:
Ditto.
* linden/indra/llinventory/llinventory.cpp:
Added calc_ntype() function.
* linden/indra/llinventory/llinventory.h:
Ditto.
* linden/indra/llinventory/llwearabletype.h:
Moved enum EWearableType to its own file.
Was in newview/llwearable.h, now in llinventory/llwearabletype.h.
This allows it to be used in llinventory code.
* linden/indra/newview/llwearable.h:
Ditto.
2008-12-07 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llinventory/llinventory.cpp:
Added LLInventoryItem::mNInventoryType (new type) field.
Will always by NIT_NONE so far.
* linden/indra/llinventory/llinventory.h:
Ditto.
* linden/indra/llinventory/llinventorytype.h:
New bitfield enumerator for inventory types.
2008-12-05 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llappviewer.cpp:
Windows defaults to settings_imprudence.xml when run from the .exe.
2008-12-01 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
Added "Select Only Copyable Objects" menu option.
* linden/indra/newview/llselectmgr.cpp:
Ditto
* linden/indra/newview/llviewermenu.cpp:
Ditto
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Ditto
2008-11-24 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloatergroupinvite.cpp:
Add group name to group invite window.
* linden/indra/newview/llfloatergroupinvite.h:
Ditto.
2008-11-23 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/notify.xml:
VWR-4826 (ability to ignore friendship offers).
* linden/indra/newview/app_settings/settings.xml:
Beacons no longer persist between sessions.
That distressed users who accidentally enabled them,
since not even relogging would disable them.
* linden/indra/newview/llviewerwindow.cpp:
Ditto.
* linden/indra/newview/pipeline.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message.xml:
Moved 'Offer Teleport' in IM to be on the left side.
* linden/indra/newview/skins/default/xui/en-us/panel_groups.xml:
Switched Invite and Leave buttons in group panel.
Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Read filter labels from LLTrans, no hard-coding.
* linden/indra/newview/skins/default/xui/en-us/strings.xml:
Defined strings for filter types (to allow translation).
2008-11-22 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml:
Cleaned up Show Filters floater XML.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Added separators to Quick Filter.
* linden/indra/llui/llcombobox.cpp:
Combobox widget now supports separators in XUI.
* linden/indra/newview/llinventoryview.cpp:
Renamed "Clothing" filter to "Clothing / Body Parts".
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Renamed "Show All Items" filter to "All Types".
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Renamed "Show All Items" to "All Types".
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Bogus quick filter strings should be ignored.
* linden/indra/newview/llinventoryview.cpp:
Disabled testing output when changing quick filter.
* linden/indra/newview/llinventoryview.cpp:
Quick Filter combo box refreshes properly.
* linden/indra/newview/llinventoryview.h:
Ditto.
2008-11-22 McCabe Maxsted <hakushakukun@gmail.com>
* linden\indra\newview\skins\default\colors_base.xml:
Added full comments to default skin colors.
* linden\indra\newview\skins\silver\colors_base.xml:
Added full comments to silver skin colors.
2008-11-22 McCabe Maxsted <hakushakukun@gmail.com>
* indra/newview/llcolorscheme.cpp:
Added minimap glyph color to colors.xml.
* indra/newview/llcolorscheme.h:
Ditto.
* indra/newview/llnetmap.cpp:
Ditto.
* indra/newview/llnetmap.h:
Ditto.
* indra/newview/llworldmapview.cpp:
Ditto.
* indra/newview/llworldmapview.h:
Ditto.
* indra/newview/skins/default/colors_base.xml:
Ditto.
* indra/newview/skins/silver/colors_base.xml:
Ditto.
2008-11-21 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llnetmap.cpp:
Friends show yellow in minimap (VWR-3336).
2008-11-11 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Show Filters window refreshes properly.
2008-11-08 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llinventoryview.cpp:
Added 'Custom' filter option (opens filters window).
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Ditto.
* linden/indra/newview/llinventoryview.cpp:
Quick Filter works, but is a bit rough.
It doesn't refresh its display when you change tabs,
and the Show Filters window doesn't refresh either.
* linden/indra/newview/llinventoryview.cpp:
Added commit callback for Quick Filter.
* linden/indra/newview/llinventoryview.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml:
Added XUI for the Quick Filter combo box.
2008-10-18 McCabe Maxsted <hakushakukun@gmail.com>
* linden\indra\newview\skins\default\xui\en-us\menu_viewer.xml:
Added menu option for inworld browser.
* linden\indra\newview\llviewermenu.cpp:
Ditto.
* linden/indra/newview/app_settings/settings.xml:
Added Home button functionality to the web browser.
* linden/indra/newview/llfloaterhtmlhelp.cpp:
Ditto.
* linden/indra/newview/llfloaterhtmlhelp.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_media_browser.xml:
Ditto.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.0.0 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2008-12-12 Jacek Antonelli <jacek.antonelli@gmail.com>
* Imprudence 1.0.0 finalized.
* RELEASE_NOTES.txt:
Added release notes.
* linden/indra/newview/viewer_manifest.py:
Ditto.
* linden/indra/llcommon/llversionviewer.h:
Blanked the test version string. Not RC anymore.
* linden/install.xml:
Windows build uses OpenJPEG 1.3.
Fixes half-opaque skirts/textures issue.
* linden/indra/newview/viewer_manifest.py:
README.txt will stay that name; README-linux.txt removed.
2008-12-11 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llfloaterabout.cpp:
Simplified release notes URL scheme.
Now uses e.g. "wiki/Release Notes/1.0.0-RC2",
which is set up as a wiki redirect.
* linden/indra/newview/llfloaterabout.cpp:
Fixed bad string comparison (rel notes url) [#28]
Reported by Balp Allen.
2008-12-10 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llpanellogin.cpp:
Fix grid selector having a duplicate entry. [#24]
Patch by Balp Allen.
* linden/indra/newview/llpanellogin.h:
Ditto.
* linden/indra/newview/llstartup.cpp:
Ditto.
* linden/indra/newview/llurlhistory.cpp:
Better warning when url_history.xml save fails.
* linden/indra/newview/llviewernetwork.cpp:
Fixed bad string comparison (grid code name). [#22]
Reported by Balp Allen.
2008-12-06 Jacek Antonelli <jacek.antonelli@gmail.com>
* ChangeLog:
Added banners in ChangeLog to set versions apart.
Entries should be placed in the section for the
version into which they were merged. Entries within
a section should be sorted chronologically.
This is important for keeping track of changes which
weren't merged until a later release than they were
written. (Mixing them in chronologically would cause
confusion about which changes were included in a
release.)
* linden/indra/llmessage/llhttpclient.cpp:
VWR-9400b (memleak whenever an LSL script is uploaded)
Patch by Henri Beauchamp.
* linden/indra/llmessage/llhttpclient.cpp:
VWR-9400 (memleak whenever an LSL script is uploaded)
Patch by Carjay McGinnis.
* linden/indra/llimage/llimagetga.cpp:
VWR-10837 (use delete [] in LLImageTGA)
Patch by Aleric Inglewood.
* linden/indra/llmedia/llmediaimplgstreamer.cpp:
VWR-10759 (use delete [] in LLMediaImplGStreamer)
Patch by Aleric Inglewood.
* linden/indra/llaudio/audioengine.cpp:
Updated audio engine to LL's openal branch r1532.
* linden/indra/llaudio/audioengine.h:
Ditto.
* linden/indra/llaudio/audioengine_openal.cpp:
Ditto.
* linden/indra/llaudio/audioengine_openal.h:
Ditto.
* linden/indra/newview/llaudiosourcevo.cpp:
Ditto.
* linden/indra/newview/llpreviewsound.cpp:
Ditto.
* linden/indra/newview/llstartup.cpp:
Ditto.
* linden/indra/newview/llviewermessage.cpp:
Ditto.
* linden/indra/newview/llviewertexteditor.cpp:
Ditto.
* linden/indra/newview/llvoavatar.cpp:
Ditto.
2008-11-21 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/cmake/OPENAL.cmake:
Cross-platform checking for OpenAL libs.
* linden/indra/cmake/LLAudio.cmake:
Ditto.
2008-11-20 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/cmake/OPENAL.cmake:
Enable OpenAL by default.
Configure with -DOPENAL:BOOL=OFF to disable.
2008-11-19 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Package up OpenAL libs.
* indra/llaudio/audioengine_openal.cpp:
VWR-2662: OpenAL support (patch by Tofu Linden)
* indra/llaudio/audioengine_openal.h: Ditto.
* indra/llaudio/listener_openal.cpp: Ditto.
* indra/llaudio/listener_openal.h: Ditto.
* indra/llaudio/windgen.h: Ditto.
* indra/cmake/LLAudio.cmake: Ditto.
* indra/llaudio/CMakeLists.txt: Ditto.
* indra/llaudio/audioengine.h: Ditto.
* indra/llaudio/audioengine_fmod.cpp: Ditto.
* indra/llaudio/audioengine_fmod.h: Ditto.
* indra/llaudio/listener_fmod.h: Ditto.
* indra/newview/CMakeLists.txt: Ditto.
* indra/newview/llappviewer.cpp: Ditto.
* indra/newview/llstartup.cpp: Ditto.
2008-12-06 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llcommon/llversionviewer.h:
Added test version info.
* linden/indra/newview/llfloaterabout.cpp:
Ditto.
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/indra/newview/llpanellogin.cpp:
Ditto.
2008-12-05 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/llcommon/llsecondlifeurls.cpp:
Changed Release Notes link to point to Imprudence.
* linden/indra/newview/llfloaterabout.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_login.xml:
Rebranded login menu. [#23]
* linden/indra/newview/llurlhistory.cpp:
Fixed blank url_history.xml creation. (VWR-5808)
2008-12-01 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Fixed indentation for 'skins' prefix.
* linden/indra/newview/viewer_manifest.py:
Doc packaging moved to platform-independent manifest.
* Imported license files for libraries and artwork.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.0.0 RC2 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2008-12-04 Jacek Antonelli <jacek.antonelli@gmail.com>
* Imprudence 1.0.0 RC2 released.
* linden/indra/newview/llviewernetwork.cpp:
Use 127.0.0.1 for local opensim, not 0.0.0.0.
2008-11-30 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Package up README.txt, etc. on Linux.
* linden/indra/llmedia/llmediamanager.cpp:
Disable llmozlib-dependent code when not available.
Patch by Stephen Zenith. [#12]
* linden/indra/llwindow/llwindowsdl.cpp:
Fixed passing nonliteral strings to *printf functions.
gcc 4.3 rejects that as being unsafe.
Patch by Stephen Zenith. [#11]
* linden/indra/linux_crash_logger/llcrashloggerlinux.cpp:
Ditto.
* linden/indra/lscript/lscript_compile/lscript_tree.cpp:
Ditto.
2008-11-29 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llpanellogin.cpp:
Remove preprocessor condition for grid selector.
The grid selector on the login screen will always show,
instead of only showing when the viewer was compiled
as LL_RELEASE_FOR_DOWNLOAD.
* linden/indra/newview/llappviewer.cpp:
Stop console window from always showing up.
2008-11-29 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llfloaterdirectory.cpp:
Fixed search window not refreshing in RelWithDebInfo builds.
2008-11-25 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llstartup.cpp:
Rearranged grid selectors so main grid is first.
* linden/indra/newview/llviewernetwork.cpp:
Ditto.
* linden/indra/newview/llviewernetwork.cpp:
Ditto.
* linden/indra/newview/llpanellogin.cpp:
Added "code name" field for grid selections.
The code name is used to fetch the proper splash page.
This decouples the user-visible label from the name
expected by the SL web server.
* linden/indra/newview/llviewernetwork.cpp:
Ditto.
* linden/indra/newview/llviewernetwork.h:
Ditto.
2008-11-24 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llpanellogin.cpp:
Changed the grid selector options at login.
Renamed "Agni" to "SL Main Grid", etc. and removed private
LL grids from the list. Also added "Local OpenSim" option.
* linden/indra/newview/llviewernetwork.cpp:
Ditto.
* linden/indra/newview/llviewernetwork.h:
Ditto.
2008-11-21 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/lldrawable.cpp:
Likely fix for VWR-8920 (disappearing attachments).
From http://svn.secondlife.com/trac/linden/changeset/1393
2008-11-19 McCabe Maxsted <hakushakukun@gmail.com>
* linden/install.xml:
Fixed inworld browser crash in Windows.
2008-11-18 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llcrashlogger/llcrashlogger.cpp:
Changed to Imprudence.exec_marker to match llappviewer.cpp.
* linden/indra/llcrashlogger/llcrashlogger.cpp:
Changed app dir (for cache, etc.) to Imprudence.
* linden/indra/llvfs/lldir.cpp:
Ditto.
* linden/indra/llvfs/lldir_mac.cpp:
Ditto.
* linden/indra/newview/llappviewer.cpp:
Ditto.
2008-11-18 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/panel_group_invite.xml:
VWR-9007: Group UI uses "Person" instead of "Resident".
* linden/indra/newview/skins/default/xui/en-us/panel_group_roles.xml:
Ditto.
2008-11-18 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llrender/llrender.h:
Fix VWR-9507: bad typedef breaks build on gcc 4.3.
Suggested by Alissa Sabre.
* linden/indra/llrender/llgl.cpp:
Likely fix for VWR-9358 (palletized textures).
Suggested by Angus Boyd.
2008-11-16 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/skins/silver/xui/en-us/floater_tools.xml:
Removed floater_tools.xml from silver skin.
It was out of sync with the default version, and the only
changes that LL had made to it were tiny tweaks to button size
and position. It will now correctly inherit from default skin.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.0.0 RC1 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2008-11-15 Jacek Antonelli <jacek.antonelli@gmail.com>
* Imprudence 1.0.0 RC1 released.
2008-11-05 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/viewer_manifest.py:
Remove reference to nonexistent First Look Mac icon.
2008-11-04 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/mac_crash_logger/CMakeLists.txt:
Fix Mac crash logger & updater missing Info.plist.
Suggested by Aimee Trescothick (Aimee Walton).
* linden/indra/mac_updater/CMakeLists.txt:
Ditto.
2008-11-02 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/scripts/build_version.py:
Script finds Imprudence version numbers for packaging.
* linden/indra/lib/python/indra/util/llversion.py:
Ditto.
2008-11-01 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llwindow/llwindowsdl.cpp:
Use Imprudence icon on Linux.
* linden/indra/newview/CMakeLists.txt:
Package up Imprudence icons.
* linden/indra/newview/viewer_manifest.py:
Ditto.
* linden/indra/newview/res/imprudence_icon.png
Imported Imprudence icon graphics.
* linden/indra/newview/res-sdl/imprudence_icon.BMP
Ditto.
* linden/indra/newview/viewer_manifest.py:
Package only our free fonts.
2008-10-31 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
Use Vera Mono and Liberation Sans fonts.
2008-10-17 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/cmake/FMOD.cmake:
Disable fmod by default.
You can give -DFMOD=ON at configure time to turn it on.
* linden/indra/newview/CMakeLists.txt:
Use FMOD_LIBRARY variable. It's there for a reason.
* linden/indra/newview/viewer_manifest.py:
Commented out fmod from viewer manifest.
Commented out kdu from viewer manifest.
Commented out vivox / SLVoice from viewer manifest.
* Updated to SL source 1.21.6.
2008-10-17 McCabe Maxsted <hakushakukun@gmail.com>
* linden\indra\newview\skins\default\xui\en-us\menu_viewer.xml:
Rebranded the Help menu to point to Imprudence sites, removed issue tracker.
* linden\indra\newview\skins\default\xui\en-us\alerts.xml:
Ditto.
* linden\indra\newview\llappviewer.cpp:
Fixed windows compile bug.
2008-10-14 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/installers/windows/installer_template.nsi:
Rebranded Windows-specific installer/support files.
Replaced instances of "Second Life" with "Imprudence", etc.
* linden/indra/newview/installers/windows/lang_de.nsi:
Ditto.
* linden/indra/newview/installers/windows/lang_en-us.nsi:
Ditto.
* linden/indra/newview/installers/windows/lang_ja.nsi:
Ditto.
* linden/indra/newview/installers/windows/lang_ko.nsi:
Ditto.
* linden/indra/newview/res/viewerRes.rc:
Ditto.
* linden/indra/copy_win_scripts/start-client.py:
Ditto.
* linden/indra/win_updater/updater.cpp:
Ditto.
* linden/indra/mac_updater/mac_updater.cpp:
Rebranded Mac-specific installer/support files.
Replaced instances of "Second Life" with "Imprudence", etc.
* linden/indra/newview/English.lproj/InfoPlist.strings:
Ditto.
* linden/indra/newview/Info-SecondLife.plist:
Ditto.
* linden/indra/newview/SecondLife.nib/objects.xib:
Ditto.
* linden/indra/cmake/UnixInstall.cmake:
Rebranded Linux-specific installer/support files.
Replaced instances of "Second Life" with "Imprudence", etc.
* linden/indra/linux_crash_logger/llcrashloggerlinux.cpp:
Ditto.
* linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh:
Ditto.
* linden/indra/newview/linux_tools/wrapper.sh:
Ditto.
* linden/indra/CMakeLists.txt:
Rebranded platform-independent/shared installer/support files.
Replaced instances of "Second Life" with "Imprudence", etc.
* linden/indra/cmake/00-Common.cmake:
Ditto.
* linden/indra/develop.py:
Ditto.
* linden/indra/llcrashlogger/llcrashlogger.cpp:
Ditto.
* linden/indra/newview/CMakeLists.txt:
Ditto.
* linden/indra/newview/ViewerInstall.cmake:
Ditto.
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/indra/newview/viewer_manifest.py:
Ditto.
2008-10-01 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/llcommon/llversionviewer.h:
Added Imprudence-specific version numbers.
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/indra/newview/llpanellogin.cpp:
Ditto.
* linden/indra/newview/llfloaterabout.cpp:
Ditto.
* linden/indra/llcommon/llversionviewer.h:
Changed viewer and channel name to "Imprudence".
* linden/indra/newview/llappviewer.cpp:
Ditto.
* linden/indra/cmake/Variables.cmake:
Ditto.
* linden/indra/newview/app_settings/settings.xml:
Ditto.
2008-09-28 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llviewermenu.cpp:
Added event callbacks for Attached Lights and Attached Particles.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Updated XUI menu entries for Attached Lights and Attached Particles
to use the new event callbacks. Those menu entries now work.
* Updated to SL source 1.21.2.
2008-09-23 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llfloaterfriends.cpp:
'Offer Teleport' button in friends list is now enabled
even when the selected user(s) appear to be offline.
Mostly for consistency, but also to allow a work-around
for times when presence is flakey.
2008-09-22 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llpanelavatar.cpp (setOnlineStatus):
'Offer Teleport' button in avatar profile is now always enabled,
regardless of whether the other person is known to be online.
* linden/indra/newview/llimpanel.cpp:
'Offer Teleport' button in IM panel is now always enabled,
regardless of whether the other person is known to be online.
Fixes crash introduced by VWR-2072 when IMing someone not on
your friends list, and makes the feature useful in more cases.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Increased maximum settable transparency from 90% to 100%.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Changed "Select Texture" to "Select Faces to Texture".
2008-09-22 Aimee Trescothick <aimee@ama-zing.co.uk>
* linden/indra/newview/lloverlaybar.cpp:
VWR-8341: Bring back a UI indicator of 'Flycam' text.
* linden/indra/newview/lloverlaybar.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/panel_overlaybar.xml:
Ditto.
* linden/indra/newview/app_settings/settings.xml:
VWR-8430: Usability improvements to the land tools floater.
* linden/indra/newview/llfloatertools.cpp:
Ditto.
* linden/indra/newview/llfloatertools.h:
Ditto.
* linden/indra/newview/llpanelland.cpp:
Ditto.
* linden/indra/newview/llpanelland.h:
Ditto.
* linden/indra/newview/lltoolbrush.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/alerts.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Ditto.
2008-09-21 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Reindented and cleaned up menu XML for code readability.
2008-09-20 Michelle2 Zenovka <robin.cornelius@gmail.com>
* linden/indra/newview/llfloaterbulkpermission.h:
VWR-5082: 'Set permissions on selected task inventory' feature.
* linden/indra/newview/llfloaterbulkpermission.cpp:
Ditto.
* linden/indra/newview/llviewermenu.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_bulk_perms.xml:
Ditto.
2008-09-20 Paul Churchill <pnolan@dsl.pipex.com>
* linden/indra/newview/llimpanel.cpp:
VWR-2072: New Feature -> UI -> IM -> Teleport (other person) Button.
* linden/indra/newview/llimpanel.h:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_instant_message.xml:
Ditto.
2008-09-19 Gigs Taggart <gigstaggart@gmail.com>
* linden/indra/newview/app_settings/settings.xml:
VWR-2331: Terraform tool variable "strength".
Contributing authors: Gigs Taggart, Aimee Trescothick, Which Linden.
* linden/indra/newview/llfloatertools.cpp:
Ditto.
* linden/indra/newview/llfloatertools.h:
Ditto.
* linden/indra/newview/lltoolbrush.cpp:
Ditto.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Ditto.
2008-09-19 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/panel_groups.xml:
VWR-8024: simplify group invites: invite to group from groups list.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
VWR-1363: Add "Return Object" to the Tools menu.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
VWR-7877: Change the default cut increment from 0.05 to 0.025.
* linden/indra/newview/skins/default/xui/en-us/panel_groups.xml:
VWR-8024: simplify group invites: invite to group from groups list.
2008-09-19 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/llviewermenu.cpp:
VWR-2947: Create event callbacks for Advanced menu functions.
Part of VWR-2896: Convert "Advanced" menu to XUI.
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
VWR-2948: Create XUI-based Advanced menu.
Part of VWR-2896: Convert "Advanced" menu to XUI.
* linden/indra/SConstruct:
New optional SConstruct flag to specify an exact path to build
directory: BUILD_DIR. For convenience until we switch to CMake.
* linden/indra/SConstruct:
VWR-2865: New SConstruct flag to (not) make tarball after compiling.
For convenience until we switch to CMake.
* linden/indra/newview/viewer_manifest.py:
Ditto.
2008-09-17 Nicholaz Beresford <nicholaz@blueflash.cc>
* linden/indra/newview/llviewerjointattachment.h (LLViewerJoint):
VWR-2685: Possible crash in bounding box (getBoundingBoxAgent())
from hud attachments.
* linden/indra/newview/llfloateractivespeakers.cpp (updateSpeakerList):
VWR-2683: Possible crash accessing dead llviewerregion.
* linden/indra/newview/llviewerobjectlist.cpp (killObjects):
Ditto.
* linden/indra/newview/lltooldraganddrop.cpp (dragOrDrop):
VWR-2003: Possible crash in lltooldraganddrop.cpp.
2008-09-16 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/lltexturecache.cpp (purgeTextureFilesTimeSliced):
Skip "N files scheduled for deletion" message when nothing scheduled.
2008-09-16 Nicholaz Beresford <nicholaz@blueflash.cc>
* linden/indra/newview/lltexturecache.cpp:
VWR-3878: Purging cache textures causes viewer to pause for many
seconds, with heavy disk activity.
* linden/indra/newview/lltexturecache.h:
Ditto.
* linden/indra/llmessage/llassetstorage.cpp:
VWR-3877: A nasty possible memory overwrite and two minor leaks.
2008-09-07 McCabe Maxsted <hakushakukun@gmail.com>
* linden/indra/newview/llpanelobject.cpp:
VWR-7827: Allow Dimple/Profile Cut for boxes and box-based prims
in the UI.
* linden/indra/newview/skins/default/xui/en-us/floater_tools.xml:
Ditto.
2008-09-07 Jacek Antonelli <jacek.antonelli@gmail.com>
* linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml:
VWR-8056: Clean up menu_viewer.xml (main menu XUI).
|