Bug triage/2007-10-31

From Second Life Wiki
Jump to navigation Jump to search


See Bug triage for schedule details.

1.18.4 RC Bugs

  • VWR-2925 - 0 votes - Mac voice input selection ignored in OS X Leopard, keeps switching back to "default" - Davey Callisto
    • IMPORTED, doesn't seem RC-specific
  • VWR-2920 - 0 votes - Sculptie LOD causes object to be deformed into a flattened sphere close while correct far - Jayden Beresford
    • IMPORTED
  • VWR-2886 - 0 votes - Communicate window > Friends tab > Checkbox + text misaligned (and lowercase initials of World Map) - Daedalus Young
    • IMPORTED for Rx
  • VWR-2879 - 1 votes - Crash on TP completion - Gigs Taggart
    • Already IMPORTED, needs more info from Gigs
  • VWR-2878 - 3 votes - Lag meter can go partially off screen - jason swain
    • IMPORTED
  • VWR-2875 - 0 votes - Vehicle camera behaving strangely in 1.18.4 - Argent Stonecutter
    • FIXED INTERNALLY
  • VWR-2872 - 0 votes - Clicking on an event link on the map popups a search with the wrong event information - marceledward edman
    • Already IMPORTED
  • VWR-2868 - 0 votes - Classified Update Button Does Not Render - Mercia Mcmahon
    • Easy to repro, IMPORTED
  • VWR-2863 - 0 votes - Estate switched to PG and unable to switch back using v.1.18.4 (mac). If try to change back to mature using this client, will not accept. - vaguegirl Petty
    • Asked reporter for more info, IMPORTED

From previous week's triage

  • VWR-2843 - Votes: 0 - Issue with horizontal and vertical texture repeats per face in Release Candidate Viewer 1.18.4 - Myria Boa
    • Dupe of VWR-2797 - Votes: 26 - Edits to Texture Repeats do not commit correctly - Ryozu Kojima
    • Which is already imported :)
  • VWR-2834 - Votes: 0 - Standalone builds fail on 1.18.4.0 with no mozlib - Michelle2 Zenovka
  • VWR-2830 - Votes: 1 - Search->Places : results show "[AREA] sq. m." in parcel details - meade paravane
  • VWR-2827 - Votes: 0 - right click of existing folder --> new folder while in inventory places you in 'rename' position of existing folder instead of creating a new sub-folder. - Charlene Trudeau
  • VWR-2826 - Votes: 11 - Several problems on handling Japanese input (and possiblly Chinese/Korean also) - Alissa Sabre
  • VWR-2824 - Votes: 0 - Incorrect information in View Groups - Raloc Dorado
  • VWR-2823 - Votes: 2 - Show in Search option is retained when tranfering or selling the object - Matthew Dowd
  • VWR-2821 - Votes: 2 - Can't change Search option in No Mod objects - Matthew Dowd
  • VWR-2817 - Votes: 1 - Edit Window Displays Copy Tools Differently - Dirk Talamasca
  • VWR-2803 - Votes: 2 - Lag Meter network ping metric doesn't account for residents outside the USA - Jayden Beresford
  • VWR-2795 - Votes: 0 - New Land Description Multiline box does not allow Line Return formatting - converts to ? - Charlene Trudeau

1.18.4 Bugs also seen in 1.18.3

  • VWR-2847 - Votes: 0 - Wrong hover text in Japanese UI - Alissa Sabre
  • VWR-2829 - Votes: 0 - Texture Picker Jumps Between Multiple Highlighted Textures - Big Enigma
  • VWR-2633 - Votes: 6 - Not all my groups are visible and the group dialog, (Edit -> Groups...) i'm missing some groups - Dre Dagostino

Server-side bug related to 1.18.4 RC distribution

  • SVC-846 - Votes: 0 - Can't start 1.18.3(5) RC viewer after 1.18.4(0) RC appeared - Alissa Sabre

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-10-31/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.