Difference between revisions of "Bug triage/2009-04-08"

From Second Life Wiki
Jump to navigation Jump to search
Line 10: Line 10:
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.
Next meeting: {{#var:date}} at {{#var:time}} at {{#var:place}}.  See [[Bug triage]] for details.


== Fast Track Import ==
== Up for Discussion ==
(Move bugs here that have solid repros, or valid patches that you have reviewed)
* {{jira|VWR-11947}} - 3 votes - Linux: 1.22.8 Playing streamed sound makes the viewer crash on 64-bit linux installations - [[User:catherine pfeffer|catherine pfeffer]]
* {{jira|VWR-12035}} - 1 votes - Modify Permissions are not kept on Object when No Mod items are added. - [[User:Cryas Tokhes|Cryas Tokhes]]
* {{jira|VWR-11618}} - 1 votes - SL Viewer hanging with multiple Video Cards - [[User:vinny elderslie|vinny elderslie]]
* {{jira|VWR-11386}} - 1 votes - libGLcore random Crashs - [[User:Drew Dwi|Drew Dwi]]
* {{jira|VWR-11212}} - 0 votes - Viewer 1.22.4 (RC4) crashes when flycamming around in a new sim - [[User:Techwolf Lupindo|Techwolf Lupindo]]
* {{jira|VWR-11358}} - 0 votes - Mac version of viewer very slow updating AV appearance - [[User:Carl Wilder|Carl Wilder]]
* {{jira|VWR-11401}} - 0 votes - mis-clicking on an item with rapidly changing textures - [[User:Wolfpup Lowenhar|Wolfpup Lowenhar]]
* {{jira|VWR-11480}} - 0 votes - 1.22 Clients dont display the christmas login screen, just the ugly old Linden tree landscape - [[User:Silver Key|Silver Key]]
* {{jira|VWR-11491}} - 0 votes - Editing appearance or changing clothing causes streaming audio to stutter - [[User:Tammy Nowotny|Tammy Nowotny]]
* {{jira|VWR-11531}} - 0 votes - Multiple definition errors for trig functions in VC9 - [[User:Maldoror Bowman|Maldoror Bowman]]
* {{jira|VWR-11888}} - 0 votes - SecondLife Stealing Sound Card in Kernel 2.6.28 - [[User:Zauber Exonar|Zauber Exonar]]
* {{jira|VWR-11906}} - 0 votes - New version RC 1.22.8 seems *very* crashy on Macs - [[User:Sciamachy Moran|Sciamachy Moran]]
* {{jira|VWR-11934}} - 0 votes - Chat/IM History Opens Scrolled Up and Not Scrolling - [[User:Bloodsong Termagant|Bloodsong Termagant]]
* {{jira|VWR-11820}} - 0 votes - Linux: Group chat will not work if message.xml is missing - [[User:Techwolf Lupindo|Techwolf Lupindo]]
* {{jira|VWR-11716}} - 0 votes - Viewer will truncate letters when typing into Chat or fields using AutoHotKey  - [[User:Kitviel Silberberg|Kitviel Silberberg]]
* {{jira|VWR-12030}} - 0 votes - mac-updater fails - [[User:pulseburst flow|pulseburst flow]]
* {{jira|VWR-12033}} - 0 votes - Non-Windlight Fog and alpha textures on 1.22 - [[User:Gwyneth Llewelyn|Gwyneth Llewelyn]]
* {{jira|VWR-12008}} - 0 votes - PN 1.22.9.110071 libc crash - [[User:Drew Dwi|Drew Dwi]]
* {{jira|VWR-12190}} - 0 votes - Confirmation twice when revoking modify rights on sorted list - [[User:Dedric Mauriac|Dedric Mauriac]]
* {{jira|VWR-11349}} - 0 votes - Ctrl+Alt+F1 not working, then hiding UI from Adv. Menu Crashes viewer - [[User:Binary Asp|Binary Asp]]
* {{jira|VWR-12262}} - 0 votes - Selection beam particles still show on muted avatars - [[User:Wolfy Fielding|Wolfy Fielding]]
* {{jira|VWR-12302}} - 0 votes - Autocomplete on gestures doesn't keep focus, so subsequent gestures fall after not on the rest if the gesture - [[User:Sciamachy Moran|Sciamachy Moran]]
* {{jira|VWR-12095}} - 0 votes - TP failing very frequently with Mac client - [[User:Carl Wilder|Carl Wilder]]


== Hot by Vote ==
[http://www.sljirastats.com/jira_search.php?search=33&output=wiki High Voted Bugs]
== Patches ==
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]
== Misc Pool ==
[http://www.sljirastats.com/jira_search.php?search=35&output=wiki Misc Pool]


== Pre-meeting activity ==
== Pre-meeting activity ==

Revision as of 12:03, 1 April 2009



Next meeting: 2009-XX-XX at TIME PM SLT at PLACE (FIXME). See Bug triage for details.

Up for Discussion


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/2009-XX-XX/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.