Bug triage/2009-06-17

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-06-17 at 2:00 PM SLT at Bambers' Office at Denby.. See Bug triage for details.

1.23 Bugs

  • VWR-13392 - 0 votes - New and old Places searches do not handle Adult flag consistently - Harmony Grace
  • VWR-13388 - 0 votes - SL RC viewer not handling age verification for avatar A and does handle age verification for avatar B - aaron23 decuir
  • VWR-13995 - 8 votes - After Inventory search, target item is selected but focus is lost when search is cancelled. - Shale Nightfire
  • VWR-13523 - 0 votes - Sulpted Primitives go alpha/transparent randomly without script or any alpha texture. (Both Oblongs and normal RGB mapped sculpted prims) - BJ Mayer
  • VWR-13882 - 1 votes - Change in in Release Candidate has cut FPS to 25-50% of previous releases and alternate viewers on some cards - Lyssa Varun
  • VWR-13419 - 1 votes - 1.23 chunks of skin textures transparent or alpha, can see into my own head - Jenrose Meredith
  • VWR-13449 - 1 votes - Turning on Basic shaders has same effect as turning on atmoshperic shaders in previous versions. - Hardrock1a Camel
  • VWR-13279 - 0 votes - Water rendering is low res even when High res water rendering is enabled. - Drakona Lewellen
  • VWR-13319 - 0 votes - Default Cache Location Moved to C:\Documents and Settings\*NAME*\Local Settings\Application Data\SecondLife - bitova loon
  • VWR-13333 - 0 votes - Function tooltips missing in Script editor - AnnMarie Coronet
  • VWR-13339 - 0 votes - Setting Graphic Hardware Options before Logging in results in Corrupted dialogs - Darien Caldwell
  • VWR-13414 - 0 votes - RC viewer 1.23 - Default camera view switches to "head only" when standing - jeaniesing trilling
  • VWR-13431 - 0 votes - 1.23 RC Group Invitation Resident Chooser is less keyboard-friendly, slows use - Sanpierre Juran
  • VWR-13507 - 0 votes - Same viewer, same location, same settings: two very differant renderings.... - Cummere Mayo
  • VWR-13628 - 0 votes - PRIM_POINT_LIGHT behaving strangly when shone on to mega prims - EddyFragment Robonaught


Imported

Resolved

Transcript

Transcript is/will be at Bug triage/2009-06-17/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.