Bug triage/2010-05-03

From Second Life Wiki
< Bug triage
Revision as of 21:06, 2 May 2010 by Harleen Gretzky (talk | contribs) (Add Hot by Vote and Misc Pool)
Jump to navigation Jump to search




Next meeting: 2010-05-03 at 12:00 NOON PDT 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

  • SVC-5428 - Votes: 51 - High Packet loss, Rubberbanding, Script runtime stops, various other issues since 1.36.2 emergency release. - Karoline Merlin - Last Triaged: 2/22/2010 9:11 AM
  • VWR-19060 - Votes: 13 - When I purchase Linden Dollars, I have to close the viewer and restart it in order for the Lindens to appear in my account. - Ashley Shi - Last Triaged: 4/26/2010 8:57 AM

Misc Pool

Misc Pool

  • VWR-16379 - Votes: 2 - After installing OS X 10.6.x Snow Leopard on the mac with nVidia 7600 GT, atmospheric shaders and local lights both on = black terrain and no full bright prims - Trimmer Navarita
  • MISC-3377 - Votes: 1 - terrain in raw file is not the same - Lyn Mimistrobell
  • SVC-3503 - Votes: 1 - offline IMs don't get shown always at next login - Silver Key
  • SVC-5251 - Votes: 1 - Offline messages not being sent to email - Kurt Mortensen - Last Triaged: 3/29/2010 9:36 AM
  • SVC-5610 - Votes: 1 - llSetTorque(x,TRUE) will cause an active llSetForce(x,FALSE) call to become a llSetForce(y,TRUE) call. - Han Sontse
  • SVC-893 - Votes: 1 - Right shift operator (>>) fills extra bits with 1 instead of 0 when the most significant bit of the number is set. - Radian Artaud
  • VWR-10240 - Votes: 1 - Viewer crash while taking snapshot (with fanciful proportion) - Gally Young
  • VWR-10429 - Votes: 1 - Snapshot to disk hang on new unibody MacBook Pro with Nvidia 9600M GT - Rob danton
  • VWR-10486 - Votes: 1 - Worn vehicle attachments lose their rotation when viewed approaching from out of visual range or teleporting to vehicle. - pointside sunbelter
  • VWR-11025 - Votes: 1 - Coalesced items lost after refused rezing (similar to VWR-7194) - Sharon Gardenvale
  • SVC-5724 - Votes: 4 - land not showing in search all - Sammy Hermit
  • VWR-2820 - Votes: 4 - Shift copy leaves the copy and moves the original - wrong behavior - StarSong Bright
  • SVC-1878 - Votes: 3 - Drastically reduced simulator performance in most sims this morning - deBruce Munro
  • SVC-1994 - Votes: 3 - llSetForce not affecting flying av correctly - Johan Durant
  • SVC-2235 - Votes: 3 - Traffic has not updated on my land in 4 days - sabien cortes
  • SVC-2277 - Votes: 3 - llSitTarget doesn't produce the right offset if given a nonzero rotation - Blackheart Laval
  • SVC-2547 - Votes: 3 - ParcelReturnObjects packets sent with an Invalid parcel localID by an Estate Manager may cause ALL objects on the simulator to be returned - Yohan Pintens
  • SVC-2572 - Votes: 3 - "llSetForceAndTorque(vector force, vector torque, vector local) does not honour its third parameter (local)" - catherine pfeffer
  • SVC-2862 - Votes: 3 - Group Search Member Count Inaccurate - Ghanie Lane
  • SVC-349 - Votes: 3 - Avatar Rotation on X and Y axii non-zero after teleport - Ryozu Kojima
  • SVC-4152 - Votes: 3 - Scripts using state changes are misreported in "Top Scripts" - Yuu Nakamichi
  • SVC-4170 - Votes: 3 - llKey2Name returns avatar names with double space between first and last (sometimes) - Cenji Neutra
  • SVC-4360 - Votes: 3 - llDetectedType() does not return AGENT for avatars sitting on objects - Eata Kitty
  • SVC-4478 - Votes: 3 - Using PARCEL_MEDIA_COMMAND_AGENT with llParcelMediaCommandList() when parcel's media URL is set causes previous video replay - Nava Muni
  • SVC-4721 - Votes: 3 - "Lists created between jump / execute jump and recalled after execute, return a c#-error;" - Glenn Rotaru


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/2010-05-03/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.