IPB

Welcome Guest ( Log In | Register )

246 Pages V  « < 200 201 202 203 204 > »   
Reply to this topicStart new topic
Columns UI, alternative user interface
tedgo
post Jan 11 2009, 14:21
Post #5026





Group: Members
Posts: 1030
Joined: 16-April 04
From: Bavaria, Germany
Member No.: 13548



@strogoff_ger
I assume you tagged the "Various Artist" value in the ALBUM ARTIST field.
Then use:
%album artist% - %album%

When no %album artist% field is present then %artist% is used instead by default.

This post has been edited by tedgo: Jan 11 2009, 14:22
Go to the top of the page
 
+Quote Post
al007
post Jan 11 2009, 17:52
Post #5027





Group: Members
Posts: 8
Joined: 27-September 08
Member No.: 58717



QUOTE (musicmusic @ Jan 10 2009, 23:56) *
There is something like a 'show when grouped' option planned for each column which should do what you need.

Thanks, it would be nice.
Go to the top of the page
 
+Quote Post
Alastor2588
post Jan 12 2009, 00:54
Post #5028





Group: Members
Posts: 6
Joined: 21-September 07
Member No.: 47240



QUOTE (strogoff_ger @ Jan 11 2009, 04:42) *
Yeah, i know. But what do i have to enter there to group compilations correctly? I have no clue.

You can enter in any code you want to take advantage of the metadata you want to use. For example, I have mine really simple such that when an album is not VA it will display

Artist - Album (Date)

and when it's VA it will just display the 'Album (Date)' part, and then in the track column (I don't keep an artist column) it will give the specific artist of each individual song after the title. I do this with

CODE
$rgb(61,129,193)$if($strcmp(%album artist%,VA),%album%[ '('%date%')'],$if2(%artist%,<no artist>)[ | %album%][ '('%date%')'])

in the NG Grouping part, and for my track column I use

CODE
$if(%isplaying%,$rgb(61,129,193,61,129,193)
$if($strcmp(%album artist%,VA),%title%$rgb(128,128,128) / %artist%,%title%),
$if($strcmp(%album artist%,VA),%title%$rgb(128,128,128) / %artist%,%title%))

From there just make sure that your songs have similar metadata. For example, if you have a VA album and some of the songs have %date% (and you display %date% in your grouping) information and others don't, or different values, NGPL will split them into multiple groups.
The $rgb() values in my code are specific to my config' obviously, but I hope that gave you some ideas or something you could work with at least. If you want some further ideas visit this page to see what other little things you can do.

This post has been edited by Alastor2588: Jan 12 2009, 00:56
Go to the top of the page
 
+Quote Post
Hayden54
post Jan 12 2009, 06:42
Post #5029





Group: Members
Posts: 43
Joined: 30-January 08
Member No.: 50905



I have a question about using multi-value artists in both album list panel and the filter panels in columnsUI. I like to have the artists formatted like so: $swapprefix(%album artist%,The).

I'd like to know if there is any way to have both mult-value and that particular formatting.
Go to the top of the page
 
+Quote Post
strogoff_ger
post Jan 12 2009, 11:51
Post #5030





Group: Members
Posts: 33
Joined: 25-November 04
Member No.: 18338



Thank you all very much. That helped a lot.

This post has been edited by strogoff_ger: Jan 12 2009, 11:54
Go to the top of the page
 
+Quote Post
ZetaEpyon
post Jan 13 2009, 18:26
Post #5031





Group: Members
Posts: 10
Joined: 13-August 08
Member No.: 57043



QUOTE (musicmusic @ Jan 10 2009, 23:56) *
There is something like a 'show when grouped' option planned for each column which should do what you need.


This sounds good, and will help quite a bit. Thanks for all your work on this!

I'm wondering if there's any way to take it further though. For example, I'd like to have different NG Playlist (or even Columns Playlist) "views" of the same playlist. If I had different playlists, I could use the "Playlist Filters" feature to just display different columns for each one. However, this isn't possible (as far as I can tell) with a single playlist, specifically, the playlist targeted by the Filter panes.

With different views, I could navigate using the Filter panes, and then use a tab stack or some other method to switch between these playlist "views" to show which particular information I wanted to see.

Is there any chance something like this could be added, too? Apologies if something like this has already been suggested; I didn't really see anything on the FAQ.

This post has been edited by ZetaEpyon: Jan 13 2009, 18:35
Go to the top of the page
 
+Quote Post
MasterT
post Jan 14 2009, 12:20
Post #5032





Group: Members
Posts: 19
Joined: 27-October 07
From: Langenargen
Member No.: 48247



A separate vertical item padding option for the NG playlist group titles would be nice.
Also the support of the $tab() function in group titles.
Go to the top of the page
 
+Quote Post
Squeller
post Jan 14 2009, 14:46
Post #5033





Group: Members
Posts: 2278
Joined: 28-August 02
Member No.: 3218



Hi MusicMusic, maybe you could think about implementing natural sorting in Filter panels. Personally, I often have things like "Symphony No. 1" - "Symphony No. 10+".
Chnaging Metadata to "Symphony No. 05" is ugly, doing a tagz workaround in the filter definitions will turn out to be bad for filter initialising performance, which would result in slower fb2k startup time.
Go to the top of the page
 
+Quote Post
wolver1ne
post Jan 15 2009, 18:51
Post #5034





Group: Members
Posts: 31
Joined: 4-July 04
Member No.: 15056



I was wondering if there was any chance in some near future of having NG playlist like the Vista explorer. With columns having a menu to select what to view, collapsible groups and etc.

Go to the top of the page
 
+Quote Post
musicmusic
post Jan 17 2009, 19:13
Post #5035


Columns UI developer


Group: Developer
Posts: 2949
Joined: 20-December 02
From: United Kingdom
Member No.: 4177



QUOTE (musicmusic @ Jan 10 2009, 21:56) *
Not SetPoint's fault (well I don't know why it needs a global hook, but that's a different question). I don't see any compelling reason that the OS is not at fault. I will try and check Windows 7 beta 1 64-bit sometime.
Alright I did some more investigating and the problem is complicated it seems.

Certain things such as the sizing of panel windows are recursive. Some kind of stack is being exhausted (the kernel stack according to one place). This occurs twice as fast on 64-bit Windows, possibly because kernel-mode handles (correct expression?) are twice the size. When a global message hook is active, the 'speed' is doubled again.

So it's that worst case where we mainly see problems. This seems all rather unfortunate. I'll have to do some more investigating as to what can be done about it sad.gif

This post has been edited by musicmusic: Jan 17 2009, 19:19


--------------------
.
Go to the top of the page
 
+Quote Post
Yirkha
post Jan 17 2009, 20:27
Post #5036





Group: FB2K Moderator
Posts: 2128
Joined: 30-November 07
Member No.: 49158



Heh it's apparently not only doubled. Here someone said it was 19 (hooked) and 100+ (unhooked) on XP/x64. I tried WH_CALLWNDPROC now on Vista/x64 and it was those 19 when hooked, but quite impressive 3860 calls when unhooked. (Using more than that caused it to never return, above 5 or 6 thousands it crashed altogether.)

Then I tried the same under Win7 beta x64 in a VM – still ~3860 without a hook and only 18 with rolleyes.gif

It's weird that it has been known for so long and the only reply from Microsoft I found was this comment and a (most probably misleading) KB article sad.gif


--------------------
Full-quoting makes you scroll past the same junk over and over.
Go to the top of the page
 
+Quote Post
musicmusic
post Jan 17 2009, 22:23
Post #5037


Columns UI developer


Group: Developer
Posts: 2949
Joined: 20-December 02
From: United Kingdom
Member No.: 4177



Thanks for the input..

This seems to say (slide 21) that the maximum size of the kernel stack is 64k on x86 and 88k on x64 Windows. That might explain the discrepancy between x86 and x64 Windows, then, if I read that correctly.

In my case I set up a test app that does a similar child-window-recursive SetWindowPos that would happen in Columns UI, and I was going by the approx number of nested child windows I could create before things stopped working (that did approximately double in the manner I described, but what other factors are involved here I don't know. The last SetWindowPos call doesn't signal a failure, either).

Aha! Doing my processing in my WM_WINDOWPOSCHANGED handler rather than on WM_SIZE should help as that should eliminate one level of recursion each time. In fact, what it seems to do is (practically I guess) eliminate the effect of the global hook on this (the number of nested child windows/SetWindowPos). biggrin.gif So that is a great help. (Assuming the recursive SetWindowPos is the only place this was causing an issue in Columns UI...)

But still, "Arghhhhhh.....". Honestly I don't see how it is desirable to have this large discrepancy between 64-bit and 32-bit Windows. dry.gif

This post has been edited by musicmusic: Jan 17 2009, 22:40


--------------------
.
Go to the top of the page
 
+Quote Post
2E7AH
post Jan 27 2009, 16:33
Post #5038





Group: Validating
Posts: 2424
Joined: 21-May 08
Member No.: 53675



is there any way that we could make two separate playlist views: one for now playing (or maybe just to bind to some playlist) and the other for browsing through library (default behaviour) but without single column playlist view?
i think the answer is no, so i'd like to make this as a request
if this has been discussed simple yes or no would be sufficient
thanks
Go to the top of the page
 
+Quote Post
musicmusic
post Jan 27 2009, 23:50
Post #5039


Columns UI developer


Group: Developer
Posts: 2949
Joined: 20-December 02
From: United Kingdom
Member No.: 4177



The general scope of a 'now playing' playlist is probably beyond this component. However there exists some kind of concept of it in the Filter panel. Are you saying though you want both the active and now playing playlist visible at the same time?


--------------------
.
Go to the top of the page
 
+Quote Post
musicmusic
post Jan 27 2009, 23:54
Post #5040


Columns UI developer


Group: Developer
Posts: 2949
Joined: 20-December 02
From: United Kingdom
Member No.: 4177



QUOTE (Squeller @ Jan 14 2009, 13:46) *
Hi MusicMusic, maybe you could think about implementing natural sorting in Filter panels.
Yes I will have a look at it again soon (everywhere applicable, not just Filter panel).


--------------------
.
Go to the top of the page
 
+Quote Post
2E7AH
post Jan 28 2009, 00:49
Post #5041





Group: Validating
Posts: 2424
Joined: 21-May 08
Member No.: 53675



yes, i'm using single column playlist to show now playing playlist, and NG playlist for browsing, playlist making etc, and it's all right, but the functionality is somewhat limited, if a access an item in SCP, then NG playlist takes focus on that playlist because it becomes active playlist and so on
and because SCP has this ability i thought it could be made as option for playlist view (to show now playing playlist or possibility to bind playlist to view)
i don't know, what do you think?
i'm using album list, it's just more comfortable to me than filters, so i don't know what you mean by concept in filter panel
Go to the top of the page
 
+Quote Post
musicmusic
post Jan 28 2009, 01:07
Post #5042


Columns UI developer


Group: Developer
Posts: 2949
Joined: 20-December 02
From: United Kingdom
Member No.: 4177



OK well it depends on what you mean exactly by 'now playing' playlist. I thought you wanted it to retain the playing view in the album list etc. whilst you browsed around, but it sounds like you just meant whatever playlist is currently playing.

This post has been edited by musicmusic: Jan 28 2009, 01:07


--------------------
.
Go to the top of the page
 
+Quote Post
2E7AH
post Jan 28 2009, 01:36
Post #5043





Group: Validating
Posts: 2424
Joined: 21-May 08
Member No.: 53675



QUOTE (musicmusic @ Jan 28 2009, 01:07) *
whatever playlist is currently playing.

yes, that's right,
i activate the now playing playlist through NG playlist, but then i can't do anything in SCP without activating the same playlist in NG playlist
i hope it's not confusing, and it makes sense




EDIT: ok, maybe this way:
let's suppose we have option for two different playlist views
and pretend that one should be active (default behavior as it is right now) and the other passive playlist view (if we only choose two playlist views)
if we are accessing a playlist view - it becomes active view, and it doesn't reflect on the other (passive) playlist view, unless it's the same playlist of course
if we are browsing through library or accessing the playlist view in any other way it should reflect on the active playlist view, which is the last playlist view that had focus
or maybe we could decide which playlist view should be active
and then we could even have more than two playlist views (although two is enough for me smile.gif


This post has been edited by 2E7AH: Jan 28 2009, 03:12
Go to the top of the page
 
+Quote Post
watercolor
post Feb 5 2009, 09:33
Post #5044





Group: Members
Posts: 101
Joined: 5-February 09
Member No.: 66623



Hi, I have few question. I press Ctrl key on the Columns UI Playlist.
after that,dotted line is appear on the Columns UI Playlist.
how i can this line remove perpetuity?
Sorry my poor English.
Go to the top of the page
 
+Quote Post
Squeller
post Feb 5 2009, 16:19
Post #5045





Group: Members
Posts: 2278
Joined: 28-August 02
Member No.: 3218



QUOTE (watercolor @ Feb 5 2009, 09:33) *
Hi, I have few question. I press Ctrl key on the Columns UI Playlist.
after that,dotted line is appear on the Columns UI Playlist.
how i can this line remove perpetuity
Yes, strange behaviour here, play around with: Preferences - ColumnsUI - Display - Colours and fonts - Colours - [ ] Use custom active item frame

This post has been edited by Squeller: Feb 5 2009, 16:20
Go to the top of the page
 
+Quote Post
metalboy
post Feb 5 2009, 19:06
Post #5046





Group: Members
Posts: 136
Joined: 26-November 08
From: Moore, OK USA
Member No.: 63256



I have a question about the Album List Panel. Is it possible to sort the incoming files by: "string" like the filter does?
Go to the top of the page
 
+Quote Post
Remedial Sound
post Feb 7 2009, 11:18
Post #5047





Group: Members
Posts: 415
Joined: 5-January 06
From: Dublin
Member No.: 26898



Hi Musicmusic,

Would it be possible to have the volume sliders in Columns UI "snap" to the volume step specified in Preferences > Advanced > Playback (or to have the option for this behaviour)?

I brought this up in a separate thread, though apparently the Default UI behaves differently with respect to this.

Thanks
Go to the top of the page
 
+Quote Post
vlada
post Feb 7 2009, 13:29
Post #5048





Group: Members
Posts: 397
Joined: 7-January 04
Member No.: 11023



2E7AH
You're probably looking for something I've been requesting for many years. I think it would be nice to have an option in NG playlist not to reflect any actions made in a SCP playlist (or other instance of NG playlist). But this functionality might be for my needs replaced by a more advanced filter panel, which would allow multiple columns. I think this is planned. It would be nice, if every filter would be in fact a NG playlist with the same possibilities.

Btw. how do you force SCP to always show a certain playlist?
Go to the top of the page
 
+Quote Post
_phantom
post Feb 7 2009, 13:38
Post #5049





Group: Members
Posts: 29
Joined: 1-July 07
Member No.: 44919



Hello!

Can you advise me what to change in playlist code to switch the display order from this look:


to this:



I just want it to display the artist name when the actual track is a single, not featured on an album. Tags are filled properly - the second config takes "Album Artist" tag instead of "Artist".
Go to the top of the page
 
+Quote Post
musicmusic
post Feb 7 2009, 17:16
Post #5050


Columns UI developer


Group: Developer
Posts: 2949
Joined: 20-December 02
From: United Kingdom
Member No.: 4177



QUOTE (Remedial Sound @ Feb 7 2009, 10:18) *
Hi Musicmusic,

Would it be possible to have the volume sliders in Columns UI "snap" to the volume step specified in Preferences > Advanced > Playback (or to have the option for this behaviour)?

I brought this up in a separate thread, though apparently the Default UI behaves differently with respect to this.

Thanks
The scale used is not a linear function of decibels. Hence it doesn't make any sense to me.


--------------------
.
Go to the top of the page
 
+Quote Post

246 Pages V  « < 200 201 202 203 204 > » 
Reply to this topicStart new topic
3 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
1 Members: Mr.Microwave

 



RSS Lo-Fi Version Time is now: 6th September 2010 - 05:11