forked from jacek/imprudence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE_NOTES.txt
1960 lines (1322 loc) · 72.6 KB
/
RELEASE_NOTES.txt
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
Release Notes for the Imprudence Viewer
http://imprudenceviewer.org
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.3.0 BETA 2 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
RELEASE HIGHLIGHTS
* Temporary (Free) Texture Uploads. When uploading an image,
select "Temporary Image (Free)" to upload it for free, but with
some caveats (see below). Thanks to the Emerald viewer for this
feature, and Armin for porting it!
- Temporary textures are intended for testing and preview
purposes only. They exist only on the sim they are uploaded
to, will disappear from your inventory when you log off, and
may disappear from the sim when it restarts.
* Breast Physics. By popular demand, we have ported breast
physics simulation (i.e. jiggly boobs) from the Emerald Viewer.
Thanks to Danny Nolan and the Emerald devs for creating this
feature, and Armin for porting it!
- Currently, this feature can only be configured via Debug
Settings: EmeraldBreastPhysicsToggle (to disable/enable the
feature entirely), EmeraldBoobMass, EmeraldBoobHardness,
etc.
* SpeedRez. After teleporting, the viewer will temporarily
decrease the draw distance to encourage nearby objects and
textures to rez first. Thanks for the patch, Henri Beauchamp!
- You can disable this feature by setting the SpeedRez debug
setting to FALSE, or adjust the timing by editing the
SpeedRezInterval debug setting (smaller numbers restore the
old draw distance sooner).
* Building hotkeys to cycle through prims in a link set
(SNOW-97). See the "Tools > Select Linked Parts" menu. Thanks
for the patch, Thickbrick Sleaford!
KNOWN ISSUES
* Linux: The viewer may crash on some Ubuntu Karmic 64-bit
installs, most likely due to a bug in glib2. As a work around,
users affected by this issue can modify the "imprudence" launch
script to add the following code near the top of the script
(for example on the second line):
export LL_WRAPPER='strace -o /dev/null'
* All known issues listed for 1.3.0 beta 1 still apply to this
this version.
CHANGES
In addition to the Release Highlights above, this version of
Imprudence also includes the following changes, as compared to
Imprudence 1.3.0 beta 1.
FEATURES / IMPROVEMENTS
* Opening SLURLs ("secondlife://...") from another application
is now handled nicely on Linux. If Imprudence is already
running, the SLURL will open in the current instance of
Imprudence. Otherwise, it will launch a new instance of
Imprudence. Thanks, Armin!
* The notecard editor now has Search/Replace functionality.
Thanks for the patch, Kitty Barnett!
* The notecard editor now has an "Edit" menu. Thanks for the
patch, Henri Beauchamp!
* The password field on the login screen now uses solid black
circles (•) instead of asterisks (*), for a cleaner look.
Thanks, Geneko Nemeth!
* Added PrivateLookAtTarget debug setting. When enabled, the
viewer will no longer tell other users where your avatar is
looking. Thanks for the patch, Henri Beauchamp!
BUG FIXES
* Fixed: Possible crash related to ShowLookAt targets. Thanks, Armin!
* Fixed: Pie menu remains after switch to Mouselook (VWR-2425).
Thanks for the patch, Kitty Barnett!
* Fixed: Some menu entries were missing from the Advanced menu.
Thanks, Jacek!
- Advanced > UI > Use default system color picker
- Advanced > UI > Show search panel in overlay bar
- Advanced > UI > Show Matrices
- Advanced > XUI > Font Test...
* Fixed: Clicking the "Advanced > UI > Double-Click Auto-Pilot"
menu entry would crash the viewer, so it has been removed.
(As of Imprudence 1.2, double-click autopilot is configured
in "Preferences > Input & Camera.) Thanks, Jacek!
* Applied several bug fixes from Henri Beauchamp. Thanks, Henri!
- Fixed: The viewer would sometimes crash when touching or
focusing the camera on an object that was being rezzed.
- Fixed: The viewer did not properly use the .tga file
extension when saving textures to your computer.
- Fixed: The viewer would sometimes crash when encountering
avatars using "extra" attachment points (multiple
attachments on the same body part).
* Fixed: Some pop-up notifications behaved incorrectly: Build
Math Expressions help pop-ups, and the "Restore to Last
Position" warning.
* Fixed: Several cases where the viewer could pause or freeze
when downloading textures (SNOW-196, SNOW-408, SNOW-434,
SNOW-435, SNOW-485). Thanks for the patches, Aleric
Inglewood, Merov Linden, Robin Cornelius, and Vex Streeter!
OTHER CHANGES
* ELFIO has been reactivated on 64-bit Linux. It had been
disabled in 1.3.0 beta 1 as a possible fix for a crash for
some 64-bit Linux users, but the problem turned out to be
something else (see Known Issues, above). Thank, Armin!
* Linux: You can now disable disable DBUS support by passing
the "--disableDBUS" command line option or setting the
"DisableDBUS" Debug Setting to TRUE. This is meant as a
work-around for users who crash when using DBUS. Thank,
Armin!
* The pre-packaged 32-bit GStreamer plugins will be now be
available to GStreamer when running the 32-bit Linux build on
a 64-bit Linux system. Thank, Armin!
* To save developers' time and effort, the ChangeLog.txt file
is now automatically generated from Git commit messages,
instead of being edited by hand. Thanks, Jacek!
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.3.0 BETA 1 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
RELEASE HIGHLIGHTS
* Textures and objects now rez more quickly, due to improved
texture and object engines from Snowglobe. Thanks to the
Snowglobe devs for creating it, and Armin and Jacek for porting
it!
* Imprudence's code base has been updated to Second Life 1.23.5.
That means Imprudence has gained most of the new features and
bug fixes from SL 1.23. Thanks to Linden Lab for writing it,
and to Jacek, McCabe, and Armin for their hard work merging it!
Thanks also to Lilly Zenovka for her assistance.
* Optional legacy pie menus. Enable "Preferences > General > Use
legacy pie menus" to switch to a pie menu layout similar to SL
1.22 and earlier. Thanks, McCabe!
* Clothing layer protection and client identification from
Meerkat/Emerald. See the Client Identification page on our wiki
for information about these features. Thanks to the Meerkat and
Emerald teams for creating them, and Armin for porting them!
KNOWN ISSUES
* Imprudence may crash on Linux when changing "Antialiasing" or
"Anisotropic Filtering" in "Preferences > Graphics > Hardware
Settings".
- This is a known bug in SL 1.23 (VWR-13286). We will try our
best to fix it.
- As a work around, you can open "Advanced > Debug Settings",
modify RenderFSAASamples (antialiasing) and
RenderAnisotropic (anisotropic filtering), then restart the
viewer.
* The "View > Web Browser" menu entry does not work.
* Legacy pie menus always appear in English, even if you are
using another language.
* The "File > Import + Upload" menu item's price always says
"L$10 per texture", even when uploads are actually free, such
as on OpenSim.
CHANGES
In addition to the Release Highlights above, this version of
Imprudence also includes the following changes, as compared to
Imprudence 1.2.1.
FEATURES / IMPROVEMENTS
* You can now type in an optional message when paying L$ to a
Resident (SNOW-436, formerly VWR-9597). The message will
appear in that Resident's transaction history online. Thanks,
Jacek!
- The layout for the Pay Resident and Pay Object windows
have been cleaned up, too. Thanks, Jacek!
* You can now adjust numerical sliders with the mouse wheel.
Position the mouse pointer over a slider (e.g. sound volume,
draw distance, etc.) and scroll the mouse wheel up and down.
Thanks, Armin!
- You can change the direction and speed by editing the
SliderScrollWheelMultiplier debug setting. Thanks, Jacek!
* In the IM window, the "Profile" button now has a drop-down
menu with "Pay" and "Offer Teleport" options. Thanks, McCabe!
* User profiles now have a "Copy Key" button to copy that
user's key (agent UUID) to your clipboard. You can then paste
it into a script, for example. Thanks, McCabe!
* Color chooser widgets now display opacity in a way that makes
sense. Thanks, Geneko Nemeth!
* The Script editor's Help menu now has a link to the
Autoscript scripting helper, to help generate .
* You can now drag-and-drop inventory items anywhere on
someone's profile to send them. In Imprudence 1.2, you had to
drag to specific area in the bottom right corner. Thanks,
McCabe!
* There is now a new debug setting to save inventory scripts as
Mono (SNOW-378). If you enable SaveInventoryScriptsAsMono in
Debug Settings, new scripts that you create in your inventory
will default to Mono. Thanks, Henri Beauchamp!
* You can now set a custom "world search" URL to use instead of
SL's search pages. See "Preferences > Web > World Search".
This is mostly useful for users of third-party grids. We hope
to provide per-grid search URLs in the future.
BUG FIXES
* Fixed the login screen not allowing login names longer than
16 letters. It now allows up to 31 letters per name, like it
should.
* Fixed #155: Double clicking your avatar triggers a TP
request. Thanks, Armin!
* Fixed #184: Opening notecards resets the camera. Thanks,
Armin!
* Fixed #197: Windlight toolbar can't be hidden. Thanks, Jacek!
* Fixed VWR-4232: Some particles don't disappear when UI is
hidden. Thanks, Admiral Admiral and Mm Alder!
* Fixed VWR-14267: Clicking send in an IM window does not add
the sent text to the line editor history. Thanks, Aimee
Trescothick!
* Fixed VWR-14278: Gesture auto-completion adds uncommitted
suggestions to the line editor history. Thanks, Aimee
Trescothick!
* Fixed VWR-11172: A source coding mistake prevents number-pad
keys from specifying Ctrl+digit shortcuts on Windows. Thanks,
Alissa Sabre!
* Fixed VWR-14475: Load from XML is broken. Thanks, Admiral
Admiral and Mm Alder!
* Fixed VWR-15310: Save to XML doesn't set proper XML tags.
Thanks, Admiral Admiral and Mm Alder!
* Fixed SNOW-376: Clean up handling of the maximum length of
chat messages. Thanks, Admiral Admiral and Mm Alder!
* Fixed SNOW-413: Potential null pointer exception in
multi-slider control. Thanks, Admiral Admiral and Mm Alder!
* Fixed SNOW-488: Malformed animation crash. Thanks, Robin
Cornelius!
* Fixed SNOW-492: LLDataPacker::unpackstring() is unsafe.
Thanks, Robin Cornelius!
* Fixed a rare crash from textures with too many components.
(This has only been observed in the Lbsa Plaza sim on OSGrid,
so far.) Thanks, Armin!
OTHER CHANGES
* To help protect our users' privacy, the viewer no longer
sends "ViewerStats" to Linden Lab's servers. This was a
feature of the SL viewer which would collect and send various
pieces of information to Linden Lab without the user's active
consent. Thanks, Patrick Sapinski!
* The Linux (32 and 64 bit) builds are no longer distributed
with Pango or GDK-PixBuf, due to a number of bugs that was
causing. Linux users should install the following on their
systems:
- Pango 1.26 (or compatible), including freetype support.
- GTK+ 1.16 (or compatible)
* The "Notify when Linden dollars (L$) spent or received"
checkbox has been moved to "Preferences > Popups". Thanks,
McCabe!
* Removed unnecessary XUI files from the Silver skin. This
helps keep the UI layouts of both skins in sync. Thanks,
McCabe!
* There have been numerous changes and improvements to the
viewer compile system and software libraries. Thanks to
Armin, Jacek, McCabe, and Patrick Sapinski, and the Snowglobe
devs!
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.2.1 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Imprudence 1.2.1 is a small bugfix release, which updates and fixes
some libraries that are distributed with Imprudence.
Please see the Imprudence 1.2.0 Release Notes for information about
the changes in Imprudence 1.2.
CHANGES
* Updated OpenAL on Windows to fix error messages flooding the
logs.
* Recompiled GStreamer, GStreamer plugins, and liboil on Linux,
to use the correct version of glibc.
* libxml2 is now distributed with Imprudence on Linux. It was
accidently left out of past releases.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.2.0 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
A BRIEF GUIDE TO IMPRUDENCE 1.2
Imprudence 1.2 adds many new features, fixes, and improvements to
the viewer experience. Here are a just few of the new features
and improvements since Imprudence 1.1:
* Backup your builds, your scripts, and your avatar's shape. If
you created it, you have the right to back it up or move it to
a different grid.
* Double-click Teleport and Autopilot. We've taken the popular
double-click teleport feature and improved upon it. The default
behavior can now be set in Preferences > Input & Camera. We've
also added an ignorable confirmation dialog to reduce the
chance of accidental teleportations.
* Improved minimap with built-in radar. The minimap now has
enhanced zooming and panning, a built-in avatar radar to see
who is nearby, plus optional chat notices when avatars enter or
leave chat range or the sim. (Enable minimap notify in
Preferences > General.)
* Improved OpenSim support. We've added a list of popular grids
to connect to, as well as a grid manager so you can add your
own. You can also enjoy many building benefits when using
OpenSim, such as the ability to build and edit prims larger
than 10m on a side!
* Restrained Life support. Thanks to RLVa by Kitty Barnett,
Imprudence now supports the Restrained Life API for BDSM items
and scripted gadgets.
* Windlight toolbar. We've added a new tab along the bottom of
the screen for quick access to your Windlight presets and
certain graphics options. We've also added a variety of
Windlight presets from Ana Lutetia, CodeBastard Redgrave, and
Torley Linden!
* Numerous other features that improve the viewer experience,
such as double-click to wear attachments in Inventory, optional
vertical IM tabs (in Preferences > Communication), unread IM
count, search inventory by creator or description, better
profile window layout, select default chat channel, Link/Unlink
in the Build window, sim avatar counts on the World Map, and
many more.
KNOWN ISSUES
* "Advanced > Logout" may cause issues and is unsupported. Use at
your own risk.
* If you use the "--loginuri" command line flag, you need to also
use "--login FirstName LastName Password" to bypass the login
screen, or your server setting will be ignored.
* Remaining issues from 1.2.0 beta 2:
- Property lines for land parcels flash when you have selected
an avatar in the minimap radar.
- Many new UI additions only provide English text. We'd love
to have some bilingual users help us translate them. If you
can help, please post in the forums.
- OpenSim 0.6.4 or lower causes the viewer to crash when other
avatars are present. We strongly encourage all OpenSim grid
operators to upgrade to OpenSim 0.6.5 or higher.
- "File > Upload & Import" should have a confirmation dialog
warning people about how much it will cost to upload all the
textures.
CHANGES
This version of Imprudence includes the following changes, as
compared to Imprudence 1.2.0 beta 2.
FEATURES / IMPROVEMENTS
* Added saving and loading scripts to disk in the script
editor. Thanks to the Meerkat team for this feature, and
McCabe for porting it.
* Added avatar shape Import/Export. You can only export shapes
that you created and have full perms for. Thanks to the
Meerkat team for this feature, and McCabe for porting and
tweaking it.
* Added an option for vertical IM tabs (Preferences >
Communication > Vertical IM tabs). Thanks to the Emerald team
for this feature, and McCabe for porting it.
* The 'minimap radar can now be hidden via the arrow button in
the bottom left corner of the minimap. Thanks so much for
that, Jacek!
* You can now search inventory by item description (Inventory >
Search > By Description). Thanks to the Emerald team for this
feature, and McCabe for porting it.
* Added new options to configure double-click teleport and
autopilot in Preferences > Input & Camera, and Disabled
double-click teleport by default. Thanks, Jacek!
- For the old "Double-Click Teleport" behavior, set
Double-Click Action to "Autopilot", and Autopilot Style to
"Teleport".
- For the old "Double-Click Autopilot" behavior, set
Double-Click Action to "Autopilot", and Autopilot Style to
"Move".
- Note: Autopilot Style also affects "Go Here/Go To" in the
pie menu.
* The Windlight Water window now has next/previous preset
buttons, like the Sky window does. Thanks, McCabe!
* Added "Max Particles" slider to the Windlight/Graphics tab on
the bottom toolbar. Thanks, McCabe!
* Added Check All/Uncheck All to the Make Outfit window. Thanks
to the Meerkat team for this feature, and McCabe for porting
it.
* Windows only: Added "History" button to the IM and Group Chat
windows to view your past chat logs with that person/group.
Thanks to the Emerald team for this feature, and McCabe for
porting and tweaking it.
* Updated RLVa to 1.0.5e. Thanks for the update, Kitty Barnett!
* Raised the World Map maximum teleport height to 4096m (it was
1000m). Thanks, McCabe!
BUG FIXES
* Fixed RLVa not initializing in certain instances. Thanks,
Kitty Barnett!
* Fixed copy & paste and file selection dialogs not working for
some Linux users. Thanks, Jacek!
* Fixed "avatar_skeleton.xml cannot be parsed" error. You rock,
Lilly Zenovka!
* Fixed muting objects with same name as avatar mutes
ScriptDialogs from avatar. Thanks for the patch, Geneko
Nemeth!
* Fixed some Build Math issues, related to the boost library.
Thanks, McCabe!
* Fixed Hide Group Titles option not working. Thanks, McCabe
and Geneko!
* Partial fix for the parcel border flashing when a name is
selected in the minimap radar. Thanks, McCabe!
* Partial fix for avatar names not displaying at heighs above
1024m. Thanks, McCabe!
* Set the upper limit of the chat channel selector to 1,000,000
(1 million) to work around a tricky rounding bug with higher
channel numbers. To chat on higher channels, use e.g.
"/1234567890 hi" in chat. Thanks, Jacek!
* Fixed the login screen's grid selector box displaying the
wrong grid after logging out. Thanks, McCabe!
* Fixed grid selection box not remembering the last logged in
grid (defaulted to secondlife). Thanks, McCabe!
* Fixed grid selection box not updating the splash screen.
Thanks, McCabe!
* Fixed some branding issues in alerts and notifications
("Second Life" where it should be "Imprudence"). Thanks,
Jacek!
* Fixed "Sunset" mislabeled as "Midday" in Windlight Toolbar.
Thanks, McCabe!
* Fixed several compilation errors and warnings. Thanks to
Geneko and Jacek, and to Alissa Sabre for VWR-12620.
* Fixed some issues with "Advanced > Consoles > Fast Timers"
(SNOW-108, VWR-10214). Thanks for the patch, Robin Cornelius!
OTHER CHANGES
* Moved "File > Logout" to the Advanced menu and added a note
that it's unstable. Use this feature at your own risk!
* Disable camera constraints also disables constraints when
zooming out/zooming in and editing appearance. Thanks,
McCabe!
* The keyboard shortcut for View > Advanced Menu is now
Ctrl-Alt-Shift-D on Linux. Mac and Windows shortcuts have not
changed. Thanks, McCabe!
* "Go Here" in the pie menu no longer asks for confirmation.
Thanks, Jacek!
* Ported the notecard security fix from SL 1.23.5. Thanks to
McCabe for porting it.
* Tweaked import menu item names: "File > Import Object..." and
"File > Import + Upload (L$10 per texture)". Thanks, Jacek!
* Added "File > Export Selected Objects". Thanks, Jacek!
* Disabled facelight in Appearance mode when local lighting is
disabled. Thanks, McCabe!
* Combined the Mute and Unmute buttons in the minimap radar.
Good idea, McCabe!
* Changed the snapshot postcard text not to mention Second
Life, like Meerkat does. Thanks to McCabe for porting it.
* Applied patch for VWR-6787 by Alissa Sabre - 'none' text in
group window not translatable. Thanks, Alissa!
* Added "Advanced > Allow Multiple Instances" (allow multiple
copies of Imprudence to run at the same time, for testing
purposes). Thanks, McCabe!
* Changed default UIScaleFactor to 1.002 as a workaround to
some font rendering issues. Thanks, McCabe!
* Updated the Linux version of fontconfig. Linux users may
notice some minor differences in font appearance. Thanks,
Jacek!
* Updated several other Linux software libraries. Thanks,
Jacek!
* Finally packaged up the Mac development libraries. It should
now be possible for (Intel) Mac users to compile Imprudence
if they want to. Thanks for finally tackling that, Jacek!
* Updated and fixed copyright and licensing information for
many software libraries. Thanks, Jacek!
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.2.0 BETA 2 -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
ATTENTION: PIE MENU CHANGES
* The pie menu when right clicking on objects has been rearranged
slightly:
- "Buy" now appears in the first menu tier.
- "Create" has been renamed "Build" and moved to the second
menu tier.
- "Return" and "Wear" have new locations in the second menu
tier.
KNOWN ISSUES
* Don't use "File > Logout". It still causes lots of problems:
- Logging out causes alerts (pop-up dialogs) to not work, and
may even crash the viewer.
- Logging out and then logging in to another grid causes the
Groups window to show groups from both grids.
- In OpenSim, right clicking clothing in the inventory and
selecting Edit will cause a crash after logout.
- Chat sometimes shows up on the login screen after logging
out.
* Property lines for land parcels flash when you have selected an
avatar in the minimap radar.
* OpenSim 0.6.4 or lower causes the viewer to crash when other
avatars are present. OpenSim 0.6.6 is recommended.
* Remaining issues from the previous 1.2.0 beta version:
- Many new UI additions only provide English text. We'd love
to have some bilingual users help us translate them. If you
can help, please post in the forums.
- The custom chat channel number entry doesn't behave properly
for channel numbers longer than 6 digits. As a temporary
work-around until we fix this, use the old "/NUMBER" (e.g.
"/123456789 Hi") and "//" chat commands for chatting on
large channel numbers.
- The grid selection box on the login screen always defaults
to "secondlife" at startup, when it should default to the
most recently used grid.
- The grid selection box on the login screen always shows
"secondlife" after logging out, but behaves like it is still
set to the grid you logged out from.
- The minimap radar cannot be hidden yet. We're working on it.
- The Windlight Water settings window doesn't have
previous/next arrows like the Sky window does.
- The Windlight toolbar sometimes forgets the last selected
preset.
- "File > Import" and "File > Upload & Import" may not work
correctly for Mac users.
- "File > Upload & Import" should have a confirmation dialog
warning people about how much it will cost to upload all the
textures.
* Note for developers: some Linux and Mac libraries are still not
packaged/uploaded, which can interfere with compiling
Imprudence from source. Jacek is working on it!
CHANGES
This version of Imprudence includes the following changes (as
compared to Imprudence 1.2.0 beta).
BUG FIXES
* Fixed mouseclicks sometimes "jumping" near the edge of the
screen in Windows - McCabe Maxsted.
* Fixed crash when using the Minimap and the silver skin -
McCabe Maxsted.
* Fixed Imprudence 1.2 features missing from the silver skin -
McCabe Maxsted.
* Fixed Imprudence wrongly thinking it was on the Teen Grid.
You can now freely wear, edit, and/or take off your underwear
again! - McCabe Maxsted.
* Fixed search showing too few results - McCabe Maxsted.
* Fixed inability to teleport to Adult regions (or detect them
on the map) - McCabe Maxsted.
* Fixed Advanced Sky only toggling once - McCabe Maxsted.
* Fixed first preset in Windlight Toolbar toggling Advanced Sky
- McCabe Maxsted.
* Fixed crash when logging out of OpenSim after editing
appearance - Armin Weatherwax.
* Fixed grid manager adding an unnecessary "/" (forward slash)
to grid URLs. You should be able to login to the SL Beta
Grid. (You may need to go into the Grid Manager and remove
the "/" in the login URI, though.) - Jacek Antonelli.
* Fixed unlink button enabling when it shouldn't - McCabe
Maxsted and Kitty Barnett.
* Fixed inability to unlink when using edit linked parts -
McCabe Maxsted.
* Fixed money change sound and dialog occurring after logging
into different grids - McCabe Maxsted.
* Fixed name box missing from profiles - McCabe Maxsted.
* Fixed profile account label position - McCabe Maxsted.
* Fixed profile size overrunning search window - McCabe
Maxsted.
* Fixed UI resize missing reset button in Preferences > General
- McCabe Maxsted.
* Fixed (hopefully) UI resize not playing nice with the
Liberation Sans font - McCabe Maxsted.
* Fixed newly created notecards behaving oddly - McCabe
Maxsted.
* The "Add..." (add friend) button on the minimap is now grayed
out when you have selected someone who is already your friend
- McCabe Maxsted.
* Fixed layout of debug permissions in the tools window -
McCabe Maxsted.
* Fixed some compiling issues with Imprudence 1.2 and Windows -
McCabe Maxsted.
* Fixed "Join Call" button truncated in group IMs - McCabe
Maxsted.
* Fixed reference to "Second Life" in Preferences > Graphics -
McCabe Maxsted.
Also, it appears the big crash when logging in/logging out in
Windows was fixed with the latest LL server update to 1.30.1.
OTHER CHANGES
* RLVa version has been updated to 1.0.3e - Kitty Barnett.
* Muting an avatar now mutes llDialog boxes from them as well -
McCabe Maxsted.
* Added llDialog throttle from the Green Life Emerald Viewer.
* Added clickable Object say/whisper/shout names from the Green
Life Emerald Viewer.
* Object IMs are now prefixed with "IM:" in chat - McCabe
Maxsted.
* Object IMs now have their own color in Preferences > Text
Chat - McCabe Maxsted.
* Minimap now indicates when an avatar is typing - McCabe
Maxsted.
* Minimap now announces when an avatar enters chat range
(enabled by default; you can change this in Preferences >
General) - McCabe Maxsted.
* Minimap now announces when an avatar enters the sim (disabled
by default; you can change this in Preferences > General) -
McCabe Maxsted.
* Minimap can now be minimized - McCabe Maxsted.
* Minimap now shows the selected avatar's icon over other
icons, so you can see it in crowded areas. - McCabe Maxsted.
* The minimum value for the Draw Distance slider has been
lowered to 32m (from 64m) - McCabe Maxsted.
* Added confirmation alert for double click tping and autopilot
(can be easily ignored) - McCabe Maxsted.
* Updated list of graphics cards Imprudence recognizes - McCabe
Maxsted.
* Re-added the avatar name box to the Profile window.
* New Profile layout should accommodate non-English languages
better - McCabe Maxsted.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
=- 1.2.0 BETA -=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
KNOWN ISSUES
* When you try to quit after having logged out at least once, the
viewer may crash (Linux & Mac) or not quit (Windows). As a
work-around (particularly for Windows users), we recommend not
using "File > Logout" until this has been fixed.
* Many new UI additions only provide English text. We'd love to
have some bilingual users help us translate them. If you can
help, please post in the forums.
* The custom chat channel number entry doesn't behave properly
for channel numbers longer than 6 digits. As a temporary
work-around until we fix this, use the old "/NUMBER" (e.g.
"/123456789 Hi") and "//" chat commands for chatting on large
channel numbers.
* The grid selection box on the login screen always defaults to
"secondlife" at startup, when it should default to the most
recently used grid.
* The grid selection box on the login screen always shows
"secondlife" after logging out, but behaves like it is still
set to the grid you logged out from.
* The minimap radar cannot be hidden yet. We're working on it.
* The Windlight Water settings window doesn't have previous/next
arrows like the Sky window does.
* The Windlight toolbar sometimes forgets the last selected
preset.
* "File > Import" and "File > Upload & Import" may not work
correctly for Mac users.
CHANGES
This version of Imprudence includes the following changes (as
compared to Imprudence 1.1.0).
VERSION HIGHLIGHTS
* Object Backup. You can now download objects that you have
created and have full permissions for to your computer, and
upload them back into the world (or another grid). Thanks to
the Meerkat Viewer for developing this feature, and to Armin
for helping us import it!
* Grid Manager. You can now modify the list of grids available
at the login screen. We have further plans for extending this
feature, but this will serve for now. Thanks to the Hippo
Viewer and Meerkat Viewer for this, and to Armin for helping
import it!
* Restrained Life support. Imprudence now provides optional
support for the Restrained Life API (used by BDSM items and
various scripted gadgets). Enable it with "Advanced >
Restrained Life Support". Many thanks to Kitty Barnett for
developing RLVa and working with us to integrate it into
Imprudence!
* Radar. The minimap now features a list of nearby avatars.
Thanks so much, McCabe and Dale Glass!
* Emerald features. We've imported a variety of features from
the Green Life Emerald Viewer. Thanks to the Emerald folks
for developing these, and McCabe for importing them!
- "Advanced > Asset Browser" (Alt-Shift-A). Visual browser
for textures in your inventory.
- "Advanced > Animation List". Lists the animations you are
playing, and allows you to selectively stop them and revoke
animation permissions from scripted objects.
- "Advanced > Phantom Avatar" (Ctrl-Alt-P). Prevents your
avatar from being pushed, but also prevents you from
moving.
- "Advanced > Ground Sit" (Ctrl-Alt-S). Makes your avatar sit
down at your current location.
- Build tool shows objects' Last (previous) Owner.
- When viewing your own profile, the Profile window indicates
which of your groups are hidden.
- You can now search your inventory by Creator name.
("Search" menu in the Inventory window.)
- You can now double-click on a location in the 3D world to
teleport there.
- Added "BlockClickSit" debug setting. Set it to true to
prevent yourself from sitting on things when you accidently
click on them.
- Particle chat, which sends a message on channel 9000 when
you select an object, for enhanced integration with
scripted objects. You can disable this feature by changing
the "ParticleChat" setting to False in "Advanced > Debug
Settings".
BUILDING
* You can now choose which kind of grass or tree to rez.
Before, it always rezzed a random kind. Thanks to Mana Janus
for this!
* Added "Link" and "Unlink" to the pie menu for objects.
Thanks, McCabe!
* Added "Link" and "Unlink" buttons to the Build window.
Thanks, McCabe!
* Several changes to the main menus. Thanks, McCabe!
- "Edit > Duplicate" is now in the Tools menu.
- Moved the selection-related options in the Tools menu to a
new submenu, "Tools > Selection Options".
- The "Tools > Select Tool" submenu has been renamed to
"Choose Tool" to avoid confusion with the Selection
Options.
- "Tools > Set permissions on selected task inventory" has
been renamed to "Set Bulk Permissions".
* "Advanced > Rendering > Selected Texture Info" now displays
partial UUIDs for the textures. Thanks to Henri Beauchamp and
McCabe for developing this!
* Added "Tools > Selection Options > Hide Selection Outline"
(VWR-6918). This can help make it easier to see when editing
small objects, and improves performance when selecting a
large number of prims. Thanks a bunch, Aimee Trescothick!
MAP & MINIMAP
* The minimap has many improvements. Our enduring gratitude to
Aimee Trescothick for these!