Bug triage/2008-10-08

From Second Life Wiki
Jump to navigation Jump to search


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

Import? 1.21 RC5

  • VWR-9338 - Votes: 5 - llSetCamera edit bug - Yamil Dagger
    • Imported - QA
  • VWR-9270 - Votes: 3 - Item count in Script recompile dialog shows count of prims, rather than scripts being recompiled - WarKirby Magojiro
    • Moved to Feature Request
  • VWR-9509 - Votes: 3 - Texture Cache Appears Ineffectve - Carl Wilder
    • Imported - QA
  • VWR-9056 - Votes: 1 - Client Frame Rate drops to 3 fps (or similar) on opening map - Jahdo Ohtobide
    • Updated Title - Last Triaged date added
  • VWR-9513 - Votes: 1 - lost all prims even if i took a photo it seems invisible - tanisha Whitfield
    • Resolved - Duplicate of VWR-8920
  • VWR-9104 - Votes: 1 - Display driver to fail and RC Viewer crashes - Davec Horsforth
    • Resolved - Needs more info
  • VWR-9279 - Votes: 1 - Sudden unusual crash, did not hang. Instant crash. - pulseburst flow
    • Imported - Viewer
  • VWR-9557 - Votes: 1 - a standalone build fails on Fedora with NVIDIA graphics driver: 'glActiveTextureARB' was not declared in this scope - Alissa Sabre
    • Reviewing with Tofu Linden
  • VWR-8914 - Votes: 0 - Texture from large prim superimpose on alpha textures then other objects before crash - Holocluck Henly
    • Resolved - Needs more info
  • VWR-8919 - Votes: 0 - call to llLoadURL causes SL window to minimize when web page loads - Simone Gateaux
    • Resolved - Can't Reproduce
  • VWR-8946 - Votes: 0 - Avatar - parts of suddenly turn black - shai khalifa
    • Resolved - Needs more info
  • VWR-9060 - Votes: 0 - llAttachToAvatar() opens inventory window - Kahiro Watanabe
    • Resolved - Expected Bahavior
  • VWR-9128 - Votes: 0 - Take Snapshot does not function when dialog box is open - phoenixflames kukulcan
    • Resolved - Can't Reproduce

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-8913 - Votes: 0 - 1.21.0 sometimes crashes when you click on something - Beware Hax (Resolved as duplicate of vwr-7399 and others-CM))
  • VWR-9535 - Votes: 0 - 1.21.4 frequent forced log outs - dario darrow ((was already resolved as a duplicate of vwr-9404 by Ramzi so moving it here - CM))
  • VWR-9605 - Votes: 0 - No sound or voice in Release Candidate on Vista - dorset plubeau ((tentatively resolving as duplicate of VWR-9544 which is also on the agenda already-Cm))
  • VWR-9469 - Votes: 0 - tried twice to download new release viewer and if failed.. - Storyof Oh ((was already resolved as a duplicate of vwr-9467 by Ramzi so moving it here - CM))
  • VWR-9543 - Votes: 0 - Inventory scrolling erratic - Lindal Kidd ((more or less duplicates or at least relates to VWR-7948 so resolved as such -CM))
  • VWR-9595 - Votes: 0 - Closing Profile of multiple open results in crash - phoenixflames kukulcan((resolved as duplicate of VWR-7029 and Vwr-9526 - CM))

Transcript

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