Bug triage/2008-07-16

From Second Life Wiki
< Bug triage
Revision as of 10:26, 29 July 2008 by Bridie Linden (talk | contribs) (Bug triage/Wednesday Agenda moved to Bug triage/2008-07-16)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Next meeting: 2008-07-16 at 3pm PST at Bridie Linden's house.

Import?

(Bugs reported in 1.20 Release Candidate — consider for import?, sorted by votes)

  • VWR-8144 - Votes: 1 - Show look at not able to be seen through prims - Tung Hotaling
    • Imported - Assigned to Runitai Linden
  • VWR-7080 - Votes: 1 - Phantom Prims on land after attempted Take - LadyIsis Dagger
    • Resolved - Dup of SVC-255
  • VWR-8054 - Votes: 1 - Am only able to have either Voice or regular sound, not both, in 64-bit Linux (openSUSE 11.0) - Adamas Carter
    • Resolved - Needs more info
  • VWR-6628 - Votes: 0 - Release Candidate 1.20.1 for Mac: Menu commands fail, camera fails to recenter, camera hair trigger snaps back to default with mouse clicks in inventory - Sky Hye
    • Resolved - Misfiled
  • VWR-6635 - Votes: 0 - Ever since 1.20RC my graphics have been screwy. I use GeForce Go 7900 GS/PCI/SSE2 and never had a problem, but now, there are several visual issues. - Everett Streeter
    • Resolved - Needs more info
  • VWR-6705 - Votes: 0 - Unable to click / use HUD when in mouselook - ryder spearmann
    • Changed to Feature Request
  • VWR-6652 - Votes: 0 - client crash/Script- brightness and denial of service - Heron Halberstadt
    • Resolved - Needs more info
  • VWR-6758 - Votes: 0 - Log message on console are bold. - Balp Allen
    • Resolved - Dup
  • VWR-6664 - Votes: 0 - avatar impostering fails in some locations. - Bubba Loring
    • Resolved - Needs more info
  • VWR-6666 - Votes: 0 - Enabling Basic Shaders Freezes Display on Mac - Sunn Thunders
    • Fixed
  • VWR-6799 - Votes: 0 - Tool box showing up at random - Nedrae Messmer
    • Resolved - Needs more info
  • VWR-6801 - Votes: 0 - Classic Clouds are pitch Black - WarKirby Magojiro
    • Waiting for Response from Resident
  • VWR-6820 - Votes: 0 - Cannot download RC 1.20.3 - gozo aya
    • Resolved - Can't Reproduce
  • VWR-6866 - Votes: 0 - Built in Web Browers - Cookie Lewis
    • Resolved - Needs more info
  • VWR-6879 - Votes: 0 - Edge of window Pie menu problems - JPT62089 Agnon
    • Resolved - Can't Reproduce
  • VWR-6936 - Votes: 0 - Texture console shows constant list of unloadable asset keys. - Allen Kerensky
  • VWR-6963 - Votes: 0 - avatars in the release viewer see avatar in the Release client floating - Elsbeth Clary
    • Resolved - Needs more info
  • VWR-6988 - Votes: 0 - Doing a shift copy with Grid -> Show Cross Sections enabled floods the log with rendering warnings about LLVertexBuffer::setBuffer - Strife Onizuka
    • Resolved - Can't Reproduce

Fast Track Import

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-7059 - Votes: 0 - The viewer "forgets" everything - even the login-password is not saved - Rita Munro (resolved as duplicate, of VWR-2554 and VWR-5730. Also asked that additional bugs/feature requests that do not duplicate other issues or requests please be refiled seperately. - CM)

Transcript

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