Difference between revisions of "Bug triage/2008-12-08"

From Second Life Wiki
Jump to navigation Jump to search
m (→‎Hot by Vote: ordering by number of votes)
m (→‎Patches: reordering by number of votes)
Line 17: Line 17:
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]
[http://www.sljirastats.com/jira_search.php?search=34&output=wiki Patches]


* {{jira|VWR-6093}} - Votes: 1 - Ctrl-Alt-R does not seem to work if SL is windowed, when maximized it rebakes textures as expected. - {{User|wilson tone}}
* {{jira|VWR-10890}} - Votes: 0 - Make Resizing the window to a custom resolution easier - {{User|Khyota Wulluf}}
* {{jira|VWR-10890}} - Votes: 0 - Make Resizing the window to a custom resolution easier - {{User|Khyota Wulluf}}
* {{jira|VWR-10760}} - Votes: 0 - Viewer may not detect CPU speed properly on my notebook PC (1695MHz , not 598MHz) - {{User|Amphipod Zabelin}}
* {{jira|VWR-10760}} - Votes: 0 - Viewer may not detect CPU speed properly on my notebook PC (1695MHz , not 598MHz) - {{User|Amphipod Zabelin}}
* {{jira|VWR-6093}} - Votes: 1 - Ctrl-Alt-R does not seem to work if SL is windowed, when maximized it rebakes textures as expected. - {{User|wilson tone}}


== Misc Pool ==
== Misc Pool ==

Revision as of 15:53, 6 December 2008


Next meeting: 2008-12-08 at 12:00PM at Hippotropolis Meeting area🖈. 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

High Voted Bugs

  • VWR-8775 - Votes: 13 - Prim Deformation and Object Bounce/Jiggle at high altitudes - Poe Tatum
  • VWR-5985 - Votes: 12 - Sound starts to crackle sometimes - this includes parcel-stream & any UI sound, also it's affected by camera moving - Dandare Daniels
  • VWR-10929 - Votes: 11 - Unable to Load Picks and Tatoo on Avatars Body like Leotards that I am not wearing at all - Belle Twine

Patches

Patches

  • VWR-6093 - Votes: 1 - Ctrl-Alt-R does not seem to work if SL is windowed, when maximized it rebakes textures as expected. - wilson tone
  • VWR-10890 - Votes: 0 - Make Resizing the window to a custom resolution easier - Khyota Wulluf
  • VWR-10760 - Votes: 0 - Viewer may not detect CPU speed properly on my notebook PC (1695MHz , not 598MHz) - Amphipod Zabelin

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-5287 - Votes: 12 - Prims turning Phantom on their own - stacyanne homewood
    • Request for more info by Soft Linden posted after last time this came up on triage and no new info seems to have been posted since. GW (T|C) -- 22:47, 6 December 2008 (UTC)
  • SVC-1459 - Votes: 14 - Mature avatars may be moved to PG telehubs on login, due to last region unavaliable - jessica hultcrantz
    • Seems to be more than a feature request than a bug, changed status on JIRA and if people disagree will re-add. GW (T|C) -- 22:47, 6 December 2008 (UTC)

Transcript

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