Bug triage/2007-12-17

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2007-12-17 at Hippotropolis at noon SLT. 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

  • SVC-1032 - Votes: 11 - Age Verification status shows in profile - WarKirby Magojiro
    • Fixed
  • SVC-1072 - Votes: 39 - Havok 4 -- Objects can exist up to 4096 meters up, but scripted rez above 1024 meters fails silently - Jcool410 Wildcat
    • Linked to DEV-7422

Patches

  • VWR-3655 - Votes: 0 - Extra qualifier in LLWaterParamSet definition, making gcc choke (considered an error). - Henri Beauchamp
    • Imported - Assigned to Soft Linden
  • VWR-3813 - Votes: 1 - gtk_check_version() API changed to return const gchar * - causes gcc ERROR - Michelle2 Zenovka
    • Imported - Assigned to Soft Linden
  • VWR-3835 - Votes: 1 - Copy UUID Pie Menu Item - Eddy Stryker
    • Imported - Assigned to RX

Misc Pool

  • VWR-3416 - Votes: 1 - Dramatic performance drop when avatar is in view - Umbra Lunardi
    • Imported - Assigned to Windlight
  • SVC-961 - Votes: 3 - can easily walk up walls in havok 4 beta - Lex Neva
    • Imported - Assigned to Andrew Linden
  • WEB-406 - Votes: 0 - SLMAP API - Map images very outdated - Gypsy Paz
    • Closed - Needs More Info
  • WEB-309 - Votes: 1 - Transaction History .xls is unable to be opened by iWorks 08 - Drew Dwi
    • Leaving as-is
  • VWR-3627 - Votes: 0 - Graphics Card Crashes on logout. - Kilmarac Drago
    • Imported - Assigned to Aric Linden
  • VWR-3521 - Votes: 0 - Oddly shapes Horizons in Windlight above about 600 meters and very well defined sim corners above just 50 meters - sean marsi
    • Imported - Assigned to Pastrami Linden
  • VWR-3514 - Votes: 0 - Windlight client 1.18.5 (74642) graphics rendering problem on medium quality settings with nVidia chipset at high altitudes - Dark Troglodite
    • Imported - Assigned to Pastrami Linden
  • VWR-3523 - Votes: 0 - The Void water is rendered at too high of a level for me - sean marsi
    • Closed - Needs More Info - Asked for pics and region
  • VWR-3522 - Votes: 0 - Object-Object Occlusion Possible Memory Leak - Windlight 1.18.5 (74642) - fa nyak
    • Imported - Assigned to Pastrami Linden
  • VWR-3373 - Votes: 2 - Daylight settings in Estate tools missing - Ralf Haifisch
    • Imported - Assigned to Aric Linden
  • VWR-3118 - Votes: 2 - Windlight: Bump Mapping and Shiny display problems - Braya White
    • Imported - Assigned to Pastrami Linden
  • SVC-1030 - Votes: 0 - Particle objects are not working correctly on Sim Galactica and working correctly on other sims - cammi hudson
    • Resolved by Reported
  • VWR-3630 - Votes: 0 - Avatar disspears when camera zooms out - Nadja Travanti
    • Imported - Assigned to QA
  • SVC-976 - Votes: 3 - Repeated Crashes - MyoKa Murakami
    • Closed - posted video card requirements for SL
  • SVC-872 - Votes: 0 - Havok4 Beta: Eye texture not loaded. - Kitto Flora
    • Imported - Assigned to Triage
  • VWR-3633 - Votes: 0 - Avatar impostor of not-yet-rezzed avatar not appearing - Shirley Marquez
    • Imported - Assigned to Triage
  • VWR-3536 - Votes: 0 - Highlights on objects dissappear when moving while using land info tools - Ryder Dryke
    • Closed - Not a bug

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-12-17/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.