Bug triage/2008-05-12

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2008-05-12 at 12 PM SLT at Hippotropolis Meeting area🖈. See Bug triage for details.

Fast Track Import

(Move bugs here that have solid repros, or valid patches that you have reviewed)

Hot by Vote

High Voted Bugs

  • VWR-5891 - Votes: 11 - New version update won't allow avatar to wear skirt. - krystallyne Destiny
    • Closed - Duplicate of VWR-2778
  • VWR-7031 - Votes: 11 - Version 1.20 RC5 Possible memory leak on graphics. When turning too quickly SL locks or crashes. Graphics will load slow, not properly, lag you very much - Mallory Taov
    • Imported - Assigned to Bamber Linden
  • VWR-5111 - Votes: 15 - Camera panning problem - random camera movements - timmie124 Tone
    • Requested steps to repro
  • SVC-2219 - Votes: 81 - Cyclic time dilation especially apparent on openspaces. - Gigs Taggart
    • Linked to pre-exisitng internal issue DEV-14068
  • VWR-1095 - Votes: 13 - Failed uploads prevent upload attempts - Haravikk Mistral
    • Imported - Assigned to Bamber Linden
  • VWR-6582 - Votes: 14 - Feet Sink into land when not standing on a prim - Zee Kuu
    • ** Imported - Assigned to Sidewinder Linden
  • VWR-4745 - Votes: 13 - Second Life Freezes, often fatally, in Release Candidate - Iexo Bethune
    • ** Imported - Assigned to Pastrami Linden
  • VWR-3711 - Votes: 15 - Hi-res snapshots to disk doesn't work in a Mac - Raul Crimson
    • ** Imported - Assigned to Jill Linden
  • VWR-5474 - Votes: 56 - secondlife:// URLs not working any longer - even on the SL-Webseite - Will Oppewall
    • ** Imported - Assigned to Rx
  • VWR-6110 - Votes: 147 - [ ] I was attaching a hud when my other hud with animations-content (worth 22000LD!) disappeared. - adonaira aabye
    • ** Imported - Assigned to Enus Linden
  • SVC-1548 - Votes: 12 - Havok 4: Avatar Dismounts (Standing up/Unsitting) are now unpredictable. - Darien Caldwell
    • ** Imported - Assigned to Sidewinder Linden
  • VWR-6107 - Votes: 12 - When uploading animations the Ruth model appears as an unshaded silhouette (with shaded hair?) making it difficult to discern detail - jeaniesing trilling
    • Needs more information

Patches

Patches

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/2008-05-12/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.