Re: [opensource-dev] possible display name crash

2010-11-01 Thread Twisted Laws
Thanks, the patch in that jira corrected the problem I was having. No more crashes for me, yeah! > I'm not sure if this is actually your crash, but it seems to match rather > closely with a lot of what you described: > https://jira.secondlife.com/browse/VWR-23653 (patch attached). > > Kitty

Re: [opensource-dev] Where do I ask for a feature ?

2010-11-01 Thread Laurent Bechir
Sarah (Esbee) Hutchinson a écrit : > Hi Laurent, > > To request a feature, simply log into https://jira.secondlife.com/ and > click the "Create Issue" button in the upper right-hand corner of the > page. The project will be VWR and your issue type is "Feature Request". > > Once you submit it, w

[opensource-dev] [JIRA] VWR-23670 - Enhance the Nearby list to make it a full-fledged radar replacement

2010-11-01 Thread Ricky
I just created https://jira.secondlife.com/browse/VWR-23670 and 10 subtasks to document and provide a guiding single-purpose idea consolidation for the concept I've heard voiced many times about how the Nearby list should be made into a good radar system. As far as I can tell, all the needed infor

Re: [opensource-dev] [META] Related JIRA Issue Creation

2010-11-01 Thread Ricky
Thanks! That's what I figured, as that was the most logical structure I could think of when creating my MindMap (using FreeMind) edition of my scribbled notes. Ricky Cron Stardust On Mon, Nov 1, 2010 at 3:48 PM, Sarah (Esbee) Hutchinson wrote: > Hi Ricky, > > I would suggest that you submit the

Re: [opensource-dev] Where do I ask for a feature ?

2010-11-01 Thread Sarah (Esbee) Hutchinson
Hi Laurent, To request a feature, simply log into https://jira.secondlife.com/ and click the "Create Issue" button in the upper right-hand corner of the page. The project will be VWR and your issue type is "Feature Request". Once you submit it, we'll pick it up in triage and review! Best, Esbee

Re: [opensource-dev] [META] Related JIRA Issue Creation

2010-11-01 Thread Sarah (Esbee) Hutchinson
Hi Ricky, I would suggest that you submit the epic-level user story as a feature request, then each of the compatible features could be added to the feature request as a sub-task. That will make it easier for me to review when you submit. Let me know if you have any questions and I'll be happy to

[opensource-dev] Where do I ask for a feature ?

2010-11-01 Thread Laurent Bechir
Hello, Where do I ask for a feature ? Should I open a Jira ? Mine is not a big one, it's just a check box in the confirmation window which arise when I share an object with someone to have the possibility to disable it like I can with other windows (teleport, ...) Thank you __

Re: [opensource-dev] texture preview pane

2010-11-01 Thread Ricky
At least without dropping the UI Size to something like 0.875 or lower... Although decreasing UI size often comes with it's own breakage! That said, the UI shouldn't break like shown. Ricky Cron Stardust On Mon, Nov 1, 2010 at 2:14 PM, Rob Nelson wrote: > Uh, try increasing your resolution?  I

[opensource-dev] [META] Related JIRA Issue Creation

2010-11-01 Thread Ricky
I have several ideas that I would like to put on the JIRA. However, each of these ideas is composed of several logically separate features. Should I just make one large single JIRA entry, and split it up if asked, or should I enter each separately, and then create a meta issue that combines them i

Re: [opensource-dev] texture preview pane

2010-11-01 Thread Rob Nelson
Uh, try increasing your resolution? I can't see how anyone can realistically use the UI when it's crunched down to that size. On 11/1/2010 1:54 PM, Erin Mallory wrote: okay, not sure exactly when or how this broke, but I only noticed this today and this makes texture previewing and sorting very

Re: [opensource-dev] display name userstory

2010-11-01 Thread Erin Mallory
there is now a jira on this issue. vwr-23662. Date: Sun, 31 Oct 2010 03:17:25 +1100 From: tat...@taterunino.net To: opensource-dev@lists.secondlife.com Subject: Re: [opensource-dev] display name userstory Sounds like a showstopper to me. On 31/10/2010 3:01 A

Re: [opensource-dev] CALLING ALL WINDOWS ENVIROMENT OS DEVS!!!!!!!!!!!!!!!

2010-11-01 Thread Ricky
Unless I'm mistaken, you can only declare a variable ONCe in a given context. However, you are typically free to define and re-define it multiple times. See the following snippet: int my_integer; // a declaration my_integer = 4; // a definition my_integer = 8; // a re-definition (works) int my_int