Bug triage/2008-06-04

From Second Life Wiki
Jump to navigation Jump to search


Next meeting: 2008-06-04 at 3pm PST at Bridie Linden's house.

Import?

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

  • VWR-7526 - Votes: 3 - High-rez snapshots have black lines in grid pattern - Morris Vig
    • Resolved - Can't Repro
  • VWR-6440 - Votes: 1 - Distance to target not visible at some angles - BlueWall Slade
    • Imported - Assigned to Pastrami Linden
  • VWR-6483 - Votes: 1 - Changing Advanced->Rendering->Info Displays blanks all HUD llSetText. - Buckaroo Mu
    • Imported - Assigned to Triage
  • VWR-6561 - Votes: 1 - Wireless Mighty Mouse stops responding and freezes BlueTooth Keyboard too until turned off and on - anthea shilova
    • Imported and linked to internal issue
  • VWR-6586 - Votes: 1 - Scale values in Avatar mode on 3DConnexion controller appear to do nothing - CodeWarrior Carling
    • Imported
  • VWR-6626 - Votes: 1 - Spacenavigator Not Recognised MacOS - Chance Unknown
    • Needs more info.
  • VWR-6623 - Votes: 1 - After downloading 1.20.18 I can not install I get 30 "error can not open for writing" messages most are .dll or db2 files - Chandra Jun
    • Needs more info - is this still a problem?
  • VWR-6697 - Votes: 1 - RC 1.20.2 (85278): System freeze after login under linux - Suzan Littlething

Imported - Assigned to Runitai

Imported - Assigned to Runitai

  • VWR-6683 - Votes: 1 - 1.20RC2 - Immediate crash when clicking OK on blue pop-up window (MacOs) - samia bechir
    • Resolved
  • VWR-6788 - Votes: 1 - Ctrl-Alt-LMouseclick on avatar zoomes camera out instead of focusing on avatar - Aryan Saphir
    • Closed - Duplicate
  • VWR-6933 - Votes: 1 - Disabling Ripple Water also disables glow - Nedrae Messmer
    • Imported - assigned to Zen Linden
  • VWR-6989 - Votes: 1 - joystick flycam - zoomlevel jumps - SirOb Voom
    • Comment posted
  • VWR-7045 - Votes: 1 - Copy Selection tool broken in 1.20 RC - Hypatia Callisto
    • Resolved - Fixed
  • VWR-7137 - Votes: 1 - Viewer Crashes on Quit - Macintosh - Shawna Kelley
    • Resolved - Fixed, reopen if problem comes back
  • VWR-6980 - Votes: 1 - crash logger fails to keep "always send" setting - Shadow Pidgeon
    • Imported - assigned to Triage
  • VWR-7292 - Votes: 1 - "Failed to load [body part|clothing] ..." dialog improperly implies that the content creator is primarily responsible for the error. - Adz Childs
    • Imported - assigned to Rx

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-6563 - Votes: 1 - New Viewers 1.19 and 1.20 both regular client and First Look client have started TEXTURES FROM INVENTORY ON ITEMS IN WORLD FLUCTUATING - lauren weyland
    • Resolved as dupe of DEV-9146
  • VWR-6587 - Votes: 1 - Scale values in avatar column of joystick preferences always reset to '1.0' when you exit and restart - CodeWarrior Carling
    • Dupe of Fixed issue VWR-6298


Transcript

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