Bug triage/2007-11-14

From Second Life Wiki
Jump to navigation Jump to search


See Bug triage for schedule details.

1.18.5 RC Bugs (as reported)

New Arrival!

I'm afraid nobody has examined these issues yet... -- Alissa.

  • VWR-3092 - Votes: 0 - New "All" search is not finding many avatars and groups - JetZep Zabelin
    • Imported - Assigned to James Linden
  • VWR-3089 - Votes: 1 - Search box in title/menu bar a waste of space. - Argent Stonecutter
    • Imported - Assigned to RX
  • VWR-3088 - Votes: 0 - Unchecking "Automatic Appearance Camera Movement" no longer has any effect - astryd moore
    • Imported - Assigned to Aric Linden

Crashing

Critical

  • VWR-3068 - Votes: 0 - Unable to change regions in world: no TP or manual movement across region boundaries - Alger Meads
    • Sent Resident an inworld IM asking if they were still having this issue
  • VWR-3069 - Votes: 1 - Linux client crashes at start with 1.18.5(0)RC - Opensource Obscure
    • Added "Last Triaged" Date
  • VWR-3080 - Votes: 0 - Mac Viewer Crashes at Startup (Leopard) - Khashai Steinbeck
    • Resolved - Can't Reproduce
  • VWR-3082 - Votes: 0 - Japanese Friendlist not fitting too area given - yukiko omegamu
    • Imported - Assigned to Jaime Linden
  • VWR-3084 - Votes: 0 - Dramatic drop in frame rate after the first use of the new search engine. - Henri Beauchamp
    • Imported - Assigned to James Linden

Major

  • VWR-3064 - Votes: 1 - Land Search does not show Description Text for any parcel selected in Search - Chaos Mohr
    • Imported - Assigned to James Linden
  • VWR-3079 - Votes: 0 - New Search: Top Picks in on avatar display is not in the correct order - Harleen Gretzky
    • Imported - Assigned to James Linden

Normal

  • VWR-3058 - Votes: 1 - Second Life Crashes on Install on Korean Windows XP if they have default Korean Text as windows xp user name - Fire Centaur
    • Imported - Assigned to Jaime Linden
  • VWR-3062 - Votes: 0 - Items for sale at L$0 don't show any price in new search - they should show "L$0" - meade paravane
  • VWR-3070 - Votes: 3 - New Search window does not minimize properly - Kamilion Schnook
    • Cross-Linked this with DEV-5875
  • VWR-3071 - Votes: 0 - Objects Not Set for Sale Defaulting for Sale - Prokofy Neva
    • Resolved as "Misfiled"

1.18.4 Bugs

  • VWR-2800 - Votes: 0 - Publish listing on the web box does not show as checked - Harleen Gretzky
    • Reopened
  • VWR-2801 - Votes: 2 - Select and Cancel buttons on Color Picker tool swapped - Ryozu Kojima
    • Reopened. Already imported?
  • VWR-2813 - Votes: 11 - Crash on startup of Release Candidate Viewer 1.18.4 - stephany linden
    • Reopened. Seemsto be imported already.
    • The original reporter (tx Oh) writes the problem disappeared, although the status is unchanged.

Other

  • VWR-2826 - Votes: 142 - Several problems on handling Japanese input (and possiblly Chinese/Korean also) - Alissa Sabre
    • Resolved as "Fixed Internally", but I want to talk on this, if time allows. -- Alissa Sabre

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/2007-11-14/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.