Difference between revisions of "Bug triage/2007-11-07"

From Second Life Wiki
Jump to navigation Jump to search
Line 4: Line 4:


== 1.18.4 RC Bugs ==
== 1.18.4 RC Bugs ==
(Fill in agenda here)
 
* {{jira|VWR-2946}} - Votes: 1 - Crashes on startup - {{User|Emma Nowhere}}
* {{jira|VWR-2954}} - Votes: 0 - New iMac, New Leopard install, high latency internet connection, freezes frequently - {{User|Lee Ponzu}}
* {{jira|VWR-1830}} - Votes: 0 - viewer lag, poor performance.  - {{User|Rascal Ratelle}}
* {{jira|VWR-2976}} - Votes: 0 - Many sculties never rezzing - {{User|nomasha syaka}}
* {{jira|VWR-2966}} - Votes: 0 - Viewer freezes temporarily when friend comes online - {{User|anthony reisman}}
* {{jira|VWR-2945}} - Votes: 0 - Option 'Show in Search > Places'  of other residents percel doesn't show correctly - {{User|Hidenori Glushenko}}
* {{jira|VWR-2937}} - Votes: 1 - Group List not loading at login - {{User|Fluf Fredriksson}}
* {{jira|VWR-2812}} - Votes: 2 - Linked Prim Permissions Wrong In Editor - {{User|Emileigh Starbrook}}
* {{jira|VWR-2834}} - Votes: 1 - Builds fail on 1.18.4.0 with no mozlib - {{User|Michelle2 Zenovka}}
* {{jira|VWR-2969}} - Votes: 0 - When "Play Streaming Video" button is slected under 'Audio & Video" Preferences, video controls do not appear in world under Vista - {{User|aroid boa}}
* {{jira|VWR-2964}} - Votes: 0 - Land terrain textures displayed inconsistently with current release (1.18.3.5) - {{User|Jonas Ingrassia}}
* {{jira|VWR-2968}} - Votes: 0 - Sculpted prim: Alphachannel data can bork your sculpt - {{User|cel edman}}
* {{jira|VWR-2961}} - Votes: 2 - Editor incorrectly handling copied numerical values when selecting objects with the right click menu. - {{User|DanielFox Abernathy}}
* {{jira|VWR-2957}} - Votes: 0 - RC2:  1 random person in crowd loses name/group tag from being displayed - {{User|Spuds Milk}}
* {{jira|VWR-2960}} - Votes: 0 - Changes in Edit/Build GUI - {{User|Dirk Talamasca}}
* {{jira|VWR-2959}} - Votes: 0 - Windows (Visual Studio) solution file refers to a non-existing project "build_all" - {{User|Alissa Sabre}}
* {{jira|VWR-2962}} - Votes: 1 - OpenJPEG library files are not included in Windows library package - {{User|Alissa Sabre}}
* {{jira|VWR-2958}} - Votes: 0 - Unknown Crash - {{User|Gigs Taggart}}
* {{jira|VWR-2633}} - Votes: 9 - Not all my groups are visible and the group dialog,  (Edit -> Groups...) i'm missing some groups - {{User|Dre Dagostino}}
* {{jira|VWR-2829}} - Votes: 0 - Texture Picker Jumps Between Multiple Highlighted Textures - {{User|Big Enigma}}
* {{jira|VWR-2795}} - Votes: 0 - New Land Description Multiline box does not allow Line Return formatting - converts to ? - {{User|Charlene Trudeau}}
* {{jira|VWR-2817}} - Votes: 1 - Edit Window Displays Copy Tools Differently - {{User|Dirk Talamasca}}
* {{jira|VWR-2490}} - Votes: 1 - Using ALSA for SL sound crashes Viewer on startup - {{User|Boroondas Gupte}}
 


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

Revision as of 23:37, 5 November 2007


See Bug triage for schedule details.

1.18.4 RC Bugs


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/2007-11-07/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.