Bug triage/2009-03-25

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-03-25 at 2PM SLT at Bambers' Office at Denby. See Bug triage for details.

1.22 to Import

  • VWR-7545 - 1 votes - Switching Resolutions from Full Screen to Windowed mode or vvs makes the screen black - mathieu basiat
  • VWR-3259 - 1 votes - Prim Alignment .0005m off upon linking and touching objects - yoshi charron
  • VWR-11714 - 0 votes - Edit selection is de-selected when stand up. - Fake Fitzgerald
  • VWR-11916 - 0 votes - Color-eyedropper highlights texture-eyedropper and vice versa. - Moon Metty
  • VWR-11858 - 0 votes - Default "Null Sculpt" spheres are very inefficient, and do not need to have full polygon count. - Aminom Marvin
  • VWR-12109 - 0 votes - Prevent prims larger than 10m^3 being attached to an avatar - Phillip Vought
  • VWR-11486 - 0 votes - Need to restart SL when connecting and disconnecting headset (USB) - Ethari Hallstrom
  • VWR-2987 - 0 votes - Inventory > Library > Textures > Sculpt Textures > Surface Textures > orange 1 should be stem 2 - Daedalus Young
  • VWR-2510 - 0 votes - alt-click in-world does not remove focus from current floater, making alt-click + arrow keys not work - Gibson Willis
  • VWR-11764 - 6 votes - SL randomle freezes for a few seconds - Mokona512 Hax
  • VWR-11879 - 5 votes - Appearance Editor's camera has a bright light attached to it - Jenika Connolly
  • VWR-11418 - 3 votes - Textures in 1.21.6 don't load even after clicking them - dan linden
  • VWR-11064 - 2 votes - often, windows task bar hangs for a minute, then clicked buttons all flash - Beware Hax
  • VWR-11478 - 1 votes - Possible to reset (and recompile) no-mod scripts even in no-mod objects. - Vittorio Beerbaum
  • VWR-11851 - 1 votes - Editor treats main prim after duplicating of a linkset as in "Edit linked parts" mode - Rynnan Riggles
  • VWR-12092 - 1 votes - Unable to gracefully Undo edits made when Edit Linked Parts is selected and Root Prim is one of the prims moved - sera lok
  • VWR-10791 - 0 votes - Script editor: several constants are not highlighted - Gellan Glenelg


Hot by Vote

High Voted Bugs


Misc Pool

Misc Pool

Pre-meeting activity

Some issues will be resolved in the course of building this agenda. Rather than deleting them from the proposed agenda, move the issue and associated discussion into the appropriate section below.

Imported

Resolved

Transcript

Transcript is/will be at Bug triage/2009-03-25/Transcript

Creating An Agenda

Community members generally collaborate on the agenda for bug triage meetings. Here's how you can quickly fill in an otherwise blank agenda:


Setting up

  • Go to Bug_Triage/YYYY-MM-DD where YYYY is the four digit year code, MM is the two digit month code, and DD is the day code
  • Write and save {{subst:Triage Template}} as the only content of your new page. This will copy the complete markup from Template:Triage Template as a starting point for your agenda.
  • Fill in the relevant time, date, and location info for the upcoming meeting. The easiest way to do this is to copy the entire block of information from an earlier meeting of the same type (RC, regular, etc...) and modify the date and time as needed.

Populating the issue listings section(s)

<perl>

  1. !/usr/bin/env perl

use XML::Simple;

my $bugs = XMLin($ARGV[0]);

foreach my $item (@{$bugs->{channel}->{item}}) {

 $title = $item->{title};
 $title =~ s/^\^\*\] //;
 $key = $item->{key}->{content};
 $votes = $item->{votes};
 $reporter = $item->{reporter}->{username};
 print "* $key - Votes: $votes - $title - $reporter\n";

}


</perl>

  • Pick a reasonable cutoff point, and copy the output into the appropriate section of your newly created page.