Bug triage/2009-09-28

From Second Life Wiki
Jump to navigation Jump to search



Next meeting: 2009-09-28 at 12:00 NOON 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

Misc Pool

Misc Pool

  • SVC-4857 - Votes: 7 - Continues Momentary Freezing Regardless of Client Version Used - gena zeiler
    • Resolved - Needs More Info
  • VWR-15114 - Votes: 8 - Graphic features, such as local lights, are unnecessarily restricted on graphic cards/platforms that can support them due to erroneous settings files. Please fix for next release and document. - pulseburst flow
    • Imported
  • VWR-13905 - Votes: 4 - text backgrounds of IM, inventory, pie selectors turn dark - Jagga Meredith

Resolved - Duplicate

  • VWR-14240 - Votes: 4 - Running 1.23 causes FPS to drop below 2 frequently - AnnMarie Otoole
    • Resolved - Needs More Info
  • VWR-3277 - Votes: 4 - Bring back original "Nighttime brightness" and "gamma" controls - Katarin Kiergarten
    • Moved to Feature Requests & marked with triage date
  • VWR-3557 - Votes: 4 - Skirts tear with certain poses - Kazunori Takakura
    • Imported
  • VWR-3710 - Votes: 4 - Still way too much contrast between sun-lit and non-sun-lit textures!! - Paulo Dielli
    • Resolved - Won't Finish
  • VWR-6387 - Votes: 4 - multi-prim attachments designed to move on command DO move but DO NOT show as moved when avatar's Z >= 420m - Nava Muni
    • Imported
  • WEB-681 - Votes: 4 - support portal requires a "session" when it shouldn't - Doran Zemlja
    • Imported
  • WEB-697 - Votes: 4 - Download page includes RC viewer and Beta viewer but does not include the MAIN viewer - Dusan Writer
    • Resolved - Fixed
  • WEB-796 - Votes: 4 - Can't add region to cart if placed in same location as a region that had been moved. - Lex Mars
    • Resolved - Needs More Info
  • VWR-15596 - Votes: 1 - Texture loading times are ridiculous long - Sati Lumet
    • Last triaged date added
  • SVC-4838 - Votes: 0 - llAddToLandPassList has a max time of 144 hours - Tayra Dagostino
    • Imported
  • VWR-14874 - Votes: 0 - "3 consecutive crashs, two on login" - reddot99 Republic
    • Resolved - Needs More Info
  • VWR-14960 - Votes: 0 - Object flickers and renders broken when camera is too close - Oken Hax
    • Resolved - Needs more info
  • VWR-14961 - Votes: 0 - Whole of world turned to full glow. Even the ground is glowing. - EddyFragment Robonaught
    • Resolved - Support
  • VWR-15369 - Votes: 0 - overheating unresolved - Phiddius Philbin
    • Resolved - Won't Finish
  • VWR-15466 - Votes: 0 - AV Shape Separates at Upper Torso with AO'S - Jaiden Harvy
    • Imported
  • VWR-15475 - Votes: 0 - 'BISON-NOTFOUND' is not recognized as an internal or external command - monkeyts Woodford
    • Resolved - Support
  • VWR-15494 - Votes: 0 - avatar name and texture search dialogs take forever to open, lock up my client and PC for up to 1 minute at a time - IntLibber Brautigan
    • Imported
  • VWR-15621 - Votes: 0 - Talk activates upon TP w/o button pressed. over head indicator not showing voice is on. Privacy issues. - Tydomus Brodsky
    • Resolved Duplicate
  • VWR-15643 - Votes: 0 - Login impossible because some typed characters do not display - GreyGeek Python

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-09-28/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.