Bug triage/2008-10-22

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2008-10-22 at 3pm PST at Bridie Linden's house.

Already imported, lots of votes, still important? do we have repros?

  • VWR-4887 - Votes: 32 - Windows pop up strangely distorted/deformed - Randall Lovenkraft
    • Fixed in 1.19.1, reopened with recent repro from McCabe
  • VWR-138 - Votes: 29 - Animation Priority not working correctly - gearsawe stonecutter
    • Originally reported in early 2007, but has recent comments
  • VWR-5632 - Votes: 27 - All around decrease in performance after updating - sean marsi
    • No movement internally, current reliable repros?
  • VWR-6852 - Votes: 18 - Render Axes renders at the Sim corner - Luke Poplin
    • Mismatch of priorities, still strong votes as a major issue here?
  • VWR-4137 - Votes: 18 - Date columns in tables are sorted alphabetically - Celierra Darling
    • On Soft's plate, shall we poke him?
  • VWR-9842 - Votes: 17 - 1.21.6 - ALT-cam and Camera Controls override scripted camera. - Argent Stonecutter
    • Noted as new in 1.21
  • VWR-5749 - Votes: 14 - New Search won't scroll - Nvidia Graphics Card in Full Screen mode - Kriste Beck
    • Qarl is working on, yay!
  • VWR-8824 - Votes: 12 - Performance of 1.21.0 (95157) is abysmal (slow object rendering & textures loading) - Duckling Kwak
    • Comment: "1.21 is an absolute performance desaster." ouch, QA investigating
  • VWR-9137 - Votes: 8 - Avatars invisible/disappearing on 1.20 and 1.21 - Zen Linden
    • on Zen's plate
  • VWR-9509 - Votes: 8 - Texture Cache Appears Ineffectve -- distant textures loaded first? - Carl Wilder
    • On Nyx's plate
  • VWR-7948 - Votes: 6 - Auto-scroll and folder auto-open operate too fast to be useful. - garythegoat faulkes
    • Rx has commented on internally
  • VWR-8900 - Votes: 6 - Avatar Impostors not working - Trans Meili
    • Checking w/Runitai Linden, but recent repro looks reliable to me
  • VWR-9577 - Votes: 6 - Viewer keeps running after closing it - Inigo Catteneo
    • on Bao Linden's plate
  • VWR-8916 - Votes: 5 - SAVE button on snapshot window greyed out with subsequent shots - Holocluck Henly
    • on Coco Linden's plate


Import? 1.21 Release

Fast Track Import

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

Hot by Vote

High Voted Bugs

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

  • vwr-2431 - votes 0 - Setting path cut begin to smaller than 0.010 on box/cylinder/prism creates graphics glitch - Seifert Surface (resolved as duplicate though original to vwr-9917 due to better description and more votes. - cm)
  • VWR-9899- Votes: 1 - Group Owner cannot perform usual actions on objects deeded to group - Zauber Exonar (already resolved as duplicate by Joeseph Albanese -cm)

Transcript

Transcript is/will be at Bug triage/2008-10-22/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.