Recommended Posts

i B i Z A

ColumnsUI & Panel Stack Splitter config for foobar2000 v0.9.4, v0.9.5 & v0.9.6

ibiza20a_preview1496.png

click below for full view :

ibiza10103.png.xs.jpg

First release : 17/06/2008

Last Release : 26/10/2008

Version : 2.0b NEW!

/// PLEASE READ THIS BEFORE GETTING MY CONFIG ///

ColumnsUI Config using Panel Stack Splitter give to foobar200 a kick ass look, but these configs are not recommended to newbees to foobar2000, DefaultUI is a better choice is you don't know how configuring a component and if you don't know a little bit titleformatting script used in foobar.

--- use at your own risk and matching your foobar capacities ---

/// COMPONENTS REQUIRED ///

- ColumnsUI 0.3 beta2 preview9 or higher - foo_ui_columns.dll

- Panel Stack Splitter 0.3.4a or higher - foo_uie_panel_splitter.dll

- ELPlaylist 0.6.2.6b or higher - foo_uie_elplaylist

- (Chronial) Cover Flow 0.3.0 or higher - foo_chronflow.dll

- Graphical Browser rev015 or higher - foo_uie_graphical_browser.dll

- Lyric Show Panels 0.3.1.1b8 or higher - foo_uie_lyrics.dll

- Track info panel mod 0.8.0 or higher - foo_uie_trackinfo_mod.dll

- Quick Search Toolbar 2.8l or higher - foo_uie_quicksearch.dll

- Channel Spectrum Panel 0.16 or higher - foo_uie_vis_channel_spectrum.dll

- Album list panel 0.2.3beta or higher - foo_uie_albumlist.dll

- Playlists Dropdown 0.6 alpha4 or higher - foo_uie_playlists_dropdown.dll

- WSH Panel 0.7.2 or higher - foo_uie_wsh_panel.dll

- (optional) last.fm radio 0.5 or higher - foo_lastfm_radio.dll

/// FONTS REQUIRED ///

- Segoe UI

- Angelina

- Smirnof

- Uni 05_53

- Wingdings

/// DOWNLOADS ///

get files from DA : http://br3tt.deviantart.com/art/IBIZA-foobar-config-91437036

/// INSTALLATION ///

1) extract .7z archive in the default foobar2000 folder (must be C:\Program Files\foobar2000\)

2) run foobar with ColumnsUI as interface

3) go to preferences -> ColumnsUI -> Main -> use Import Button to import the ibiza20b.fcl file, apply the imported layout !

4) you may have to configure stand alone components like Quick Search Toolbar, Cover Flow, Lyric Show panel ... cause the configuration file do not contains my settings (not stored in the .fcl)

5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)

6) modifying PATH of covers and artists photos for the background Transparency in ELPlaylist :

- transparency is ON by default, if nothing appear (so looks like it is OFF) it is because the PATH for covers and Artist Photo is mine and you have to modify them !

=> the more easy way if you don't know how to find the code for the Panel Stack Splitter that contains the ELPlaylist panel is explained here :

=> rigth-click in the back space (2 pixeld high!) just between the top line just above the playlist and top of the playlist, see below and follow instructions to modify the PATH of your covers and Photos :

howto-transparency333.png

...to make the transparency brighter or darker, modify the __TRANSPARENCY__ value in ELPlaylist Settings [0-255] ... default value (for my brigth monitor) is 100 :

transparency100886.jpg.xs.jpg

/// STARTUP possible Settings ///

1/ Playback Order

- to set the playback order to use on startup, you have to go to Splitter Settings (rigth click on the playback button bar except on the rating system! ---> Splitter Settings ...)

in the list of panels used, you'll find at top 3 panels (which are only used as boolean) : Playback Order Default, Shuffle & Repeat

==> to select which you want to use on startup, select which you want to display and on the rigth of this list, uncheck the box 'Hidden on startup' ... for the 2 other panels check the box !!!

2/ Left Panel display

same way, but select in the list of panels 'Left Panel' and use the box option to hide or show the panel on startup.

3/ Split Panel display

same way, but select in the list of panels 'Split Panel' and use the box option to hide or show the panel on startup.

/// CHRONFLOW JScript ///

// Author: mil3s (moded by br3tt for point of view)

// General Notes:
// Most of these functions return an array with 3 elements
// These are the x,y,z coordinates in 3d-space
// x is left to right
// y is bottom to top
// z is front to back

var coverSpacing = 0.12;

/************************* COVER DISPLAY *****************/
// These functions define the Display of the single Covers
// The given parameter coverId is a floating point number.
// It is 0 for the center cover, 1 for the one right
// beneath it, -1 for the one on the left side and so on.
// During movement the values float between the integer
// values.
function coverPosition(coverId){
	var x, y, z;
	y = 0;
	if (Math.abs(coverId) <= 1){ // The centered cover
		z = 4 + 0.5 * (1 - Math.abs(coverId));
		x = coverId * 0.875;
	} else { // The covers on the side
		z = 4 - (Math.abs(coverId)-1) * 0.01;
		x = 0.875 + coverSpacing * (Math.abs(coverId)-1);
		if (coverId < 0)
			x *= -1;
	}
	return new Array(x, y, z);
}

// return array is (angle, x, y, z) - this rotates
// the cover *angle* degrees around the vector (x,y,z)
// With (0,0,0,0) the cover is parallel to the x-y-Plane
function coverRotation(coverId){
	var angle;
	if (Math.abs(coverId) < 1){ // The centered cover
		angle = coverId * -60;
	} else { // The covers on the side
		if (coverId > 0)
			angle = -60;
		else
			angle = 60;
	}
	return new Array(angle, 0, 1, 0);
}

// Defines the the size boundaries for the cover.
// Aspect ratio is preserved.
// Return Array is (widht, height)
function coverSizeLimits(coverId){
	return new Array(1, 1);
}


// Sets which point of the cover coverPosition() defines
// (-1,-1) means bottom left, (0,0) means center,
// (1,1) means top right, (0, -1) means bottom center etc.
// The cover is also rotated around this point.
function coverAlign(coverId){
	return new Array(0, -1);
}


// Defines the range of covers to draw.
// Return array is (leftmostCover, rightmostCover)
// This interval shouldn't be larger than 80
// The center cover is 0.
function drawCovers(){
	return new Array(-30, 30);
}


// In which direction should the fov be expanded/shrinked
// when the panel is resized?
// If this returns (0,1), the height is fixed.
// If this returns (1,0), the width is fixed.
// You can also return stuff like (0.5,0.5) or (7, 3)
// The values determine how important it is for this
// dimension to stay fixed.
function aspectBehaviour(){
	return new Array(0, 1);
}

/************************** CAMMERA SETUP ****************/
// Position of the viewport
function eyePos(){
	return new Array(0, 0.90, 6.0);
}
// Defines the point for the eye to look at
function lookAt(){
	return new Array(-0.0, -0.75, 0.6);
}
// Used to rotate the view.
// The returned Vector points upwards in the viewport.
// This vector must not be parallel to the line of sight from the
// eyePos point to the lookAt point.
function upVector(){
	return new Array(0, 1, 0);
}

/************************** MIRROR SETUP *****************/
function showMirrorPlane(){
	return true; // return false to hide the mirror
}
// Any Point on the Mirror Plane
function mirrorPoint (){
	return new Array(0, 0, 0);
}
// Normal of the Mirror Plane
function mirrorNormal (){
	return new Array(0, 1, 0);
}

/// POSSIBLE TROUBLES ///

As said above, ColumnsUI Config using Panel Stack Splitter give to foobar200 a kick ass look, but these configs are not recommended to newbees to foobar2000, DefaultUI is a better choice is you don't know how configuring a component and if you don't know a little bit titleformatting script used in foobar.

--- use at your own risk and matching your foobar capacities ---

enjoy! ;)

Edited by Br3tt
Link to comment
https://www.neowin.net/forum/topic/643828-foobar-ibiza-by-br3tt/
Share on other sites

ColumnsUI will not import ibiza. it complains that 'track info' is not present.

1) have you installed track info and track info mod components like listed ?

2) if yes, have you got some error message at the launch of foobar about track info ?

3) are you running XP or Vista ? (i use vista)

4) Import works well for me, check the version of ColumnsUI you are running ?

i hope you'll find the pb :)

1) have you installed track info and track info mod components like listed ?

2) if yes, have you got some error message at the launch of foobar about track info ?

3) are you running XP or Vista ? (i use vista)

4) Import works well for me, check the version of ColumnsUI you are running ?

i hope you'll find the pb :)

Thanks for the fast anwser. I must be going blind.

You linked to all the components and I did not see them...

Thanks for the fast anwser. I must be going blind.

You linked to all the components and I did not see them...

link to package added in a second time, so you're (maybe) not blind ;)

please give me feeback about it and tell me if you are running XP or Vista please, thanx.

link to package added in a second time, so you're (maybe) not blind ;)

please give me feeback about it and tell me if you are running XP or Vista please, thanx.

I am running XP. I Have not succeeded in getting it to work going to try again.

:edit:

Now its installed. but I does not find the artist picture.

I have it in the same folder as my mp3 files.

It does 'see' my cover picture its in the same location and its called 'folder.jpg'

Edited by Hawk999
I thought I' give it a try but when I try to import the FCL I get an error:

The layout import was aborted because the following required panels are not installed:

NG Playlist GUID:(loads of letters and numbers)

I've got no clue what an NG Playlist is :x

:shiftyninja: you're using an older version of columnsUI, check the version i recommand!

...

Now its installed. but I does not find the artist picture.

I have it in the same folder as my mp3 files.

It does 'see' my cover picture its in the same location and its called 'folder.jpg'

see point 5 of my installation notes !

"5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)"

so you have to replace the line of code :

$puts(artist.path,'Z:\_artists_\'%artist%'.*')

by this one (if your artist photo is named artist.jpg else modify this below) :

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

see point 5 of my installation notes !

"5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)"

so you have to replace the line of code :

$puts(artist.path,'Z:\_artists_\'%artist%'.*')

by this one (if your artist photo is named artist.jpg else modify this below) :

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

Br3tt I found the code:

You gave:

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

I changed it in:

$puts(artist.path,$replace(%path%,%filename_ext%,artist.jpg))

Without the '%' before and after the 'artist' part of the jpg file.

Now the only problem I have is that the album art is gone in the playlist

that shows the 'ON AIR' message. That's not a problem as I use the other playlist.

Thanks for this config. It's really nice!

Now the only problem I have is that the album art is gone in the playlist

that shows the 'ON AIR' message. That's not a problem as I use the other playlist.

Thanks for this config. It's really nice!

[/color][/color]

you have to set the path for cover in NG Playlist, see below :

setting02130.jpg.xs.jpg

Got everything working except the "Kroeger 05_55" font. I have found and installed a lot of different fonts named just like that but I keep getting the "start" button and the list complaining it's not installed.

Any ideas? Or where to find the right one, as I seem to have failed miserably :p

After some more googling I found the version it liked :p

thanks alot for this, looks great

btw, any simple way to disable or remove the rating and that 'start' button on startup? if not, then I'd just learn to ignore it. thanks again

Edited by naserbaser
Got everything working except the "Kroeger 05_55" font. I have found and installed a lot of different fonts named just like that but I keep getting the "start" button and the list complaining it's not installed.

Any ideas? Or where to find the right one, as I seem to have failed miserably :p

After some more googling I found the version it liked :p

thanks alot for this, looks great

btw, any simple way to disable or remove the rating and that 'start' button on startup? if not, then I'd just learn to ignore it. thanks again

ok, i explain why Start screen always display at each launch :

- ColumnsUI and Panel Splitter don't have permanent variables like PVAR in PanelsUI, so, you can't save the layout disposition on exiting or playback order for example ... that is a big lack comparing to PanelsUI.

so i can't say 'Show Start Screen only on time at the 1st launch' and i'll not remove it cause i need it to set some variables at the launch, cause the only way to set some variables is using a button to execute a command.

You know all now ;)

btw it is not very hard to click a button at each launch of foobar, no ?

ok, i explain why Start screen always display at each launch :

- ColumnsUI and Panel Splitter don't have permanent variables like PVAR in PanelsUI, so, you can't save the layout disposition on exiting or playback order for example ... that is a big lack comparing to PanelsUI.

so i can't say 'Show Start Screen only on time at the 1st launch' and i'll not remove it cause i need it to set some variables at the launch, cause the only way to set some variables is using a button to execute a command.

You know all now ;)

btw it is not very hard to click a button at each launch of foobar, no ?

Oh, okay :)

It wasn't a complain, just a question with a great answer, so I'm all good now :)

The only thing is it doesn't work very well when trying to play for example .mp3 directly from windows without foobar being opened first. But that's not a real problem, I'll just have to remember to keep foobar started :) No worries.

Thanks again for an awesome config, really appreciate the work

v1.1a released, update .fcl file and images folder too (added new buttons and deleted unused images)

thanx to report me bugs ;)

Br3tt, I don't see the 'Lock' picture.

I can lock the play list so the functionality is there but there is no 'lock' graphic.

I hope I am making sense to you.

i am also missing the lock button, and also the icon on far left to hide/show the left hand panel too....

nothing removed, they are present !!

lock544.png

@nFHQ|MaTrIx : the button is not showing ? just refresh your images/ibiza folder with the lastest images.7z archive :wacko:

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Samsung Galaxy Z Fold 8, Flip 8, Z Fold Wide: Everything you need to know The ONLY thing I need to know is the price, which I know will be way higher than I (and most people) are willing to pay for a phone... so basically nothing here I need to know. PS: Nice job getting that Apple reference to a non-existent and unrevealed product as "competition" in there. Cheque is in the mail.
    • Well I really think the repasting helped if your higher clocks have returned, maybe the next thing to look at is if there is a problem with your case airflow? I guess this because your 3080 has returned to optimal state, but is still staying too warm, which might suggest it was thermal throttling before you repasted, of which the only logical conclusion could be outside factors.
    • Samsung Galaxy Z Fold 8, Flip 8, Z Fold Wide: Everything you need to know by Hamid Ganji Galaxy Z Fold 7 - Image via Samsung The next generation of Samsung foldables is set to be unveiled next month at the second Unpacked event of the year. Samsung’s 2026 foldables are not expected to offer significant upgrades over their predecessors, with the Korean firm instead focusing on design refinements and conventional upgrades such as faster processors and better cameras. However, Samsung is reportedly planning to unveil an all-new passport-style foldable this year to rival Apple’s first foldable iPhone, which is expected to debut this September. Here’s a roundup of everything we know about Samsung’s upcoming foldable devices ahead of their official debut. When can we expect Samsung’s new foldables? The Galaxy Z Fold 7 and Z Flip 7 series were unveiled in July, and Samsung is expected to maintain this timeframe in 2026. Based on previous reports from Korean sources, Samsung will hold its Unpacked event on July 22 in London, UK, to pull back the curtain on the Galaxy Z Fold 8 series. The devices are also expected to hit the shelves a few weeks after launch. However, Samsung has yet to announce an official date. A new naming scheme? One of the most interesting changes we might see this year is a new naming scheme for Samsung’s latest foldables. SamMobile reported that since Samsung is expected to unveil three foldables this year, it has adopted a new naming strategy to simplify product identification for customers. Accordingly, the standard Galaxy Z Fold 8 will reportedly be called the Galaxy Z Fold 8 Ultra and will serve as the direct successor to last year’s Galaxy Z Fold 7. The “Ultra” suffix suggests the phone could feature higher-end specifications, such as additional rear camera modules. Samsung’s new passport-style foldable is expected to carry the Galaxy Z Fold 8 name without any suffix. This model is reportedly equipped with two rear cameras. No major changes are expected for the Flip model. Galaxy Z Fold 8 Ultra and Z Flip 8 anticipated specs Rumors over the past few months suggest Samsung is preparing several upgrades for its upcoming foldables, although the devices may continue to rely on larger batteries and faster charging speeds rather than dramatic design changes. The primary focus this year is expected to be the Galaxy Z Fold 8 and its wide-screen design. Galaxy Z Fold 8 Ultra official CAD renders - Image via AndroidHeadlines Here are the anticipated specifications for the Galaxy Z Fold 8 Ultra based on previous leaks: 6.5-inch outer display and 8-inch inner display, 120Hz refresh rate, and 2,600 nits peak brightness Snapdragon 8 Elite Gen 5 processor, paired with 12GB or 16GB of RAM and 256GB, 512GB, or 1TB of storage 4.1mm thickness when unfolded and a weight of 210g 200MP main camera, 50MP ultrawide camera, 10MP or 12MP telephoto camera, 10MP cover camera, and 10MP selfie camera 5,000mAh battery with 45W wired charging Android 17 and One UI 9 As for the Galaxy Z Flip 8, the device is not expected to be a major departure from its predecessor, although it could become slightly slimmer. Expected specifications include: Snapdragon 8 Elite Gen 5 or Exynos 2600 processor 12GB of RAM with 256GB and 512GB storage options 6.9-inch Dynamic AMOLED 2X inner dispaly and 4.1-inch Super AMOLED outer dispaly 50MP main camera, 12MP ultrawide camera, and 10MP selfie camera 4,300mAh battery with 25W wired charging Android 17 and One UI 9 Samsung’s foldables are also expected to launch with Gemini Intelligence, Google’s AI suite for automating tasks in Android ecosystem. Moreover, given current memory and component costs, some Galaxy Z Fold 8 Ultra and Z Flip 8 variants could see a price hike. Galaxy Z Fold 8 adopts a wide-screen design The centerpiece of the upcoming Unpacked event could be the Galaxy Z Fold 8, previously rumored as the Galaxy Z Fold Wide. This model adopts a passport-style form factor and is expected to compete directly with Apple’s iPhone Fold. Galaxy Z Fold 8 official CAD renders - Image via AndroidHeadlines Here’s what to expect: 7.6-inch primary OLED display and 5.4-inch cover display, 120Hz refresh rate, 2,600 nits peak brightness, and 4:3 aspect ratio Snapdragon 8 Elite Gen 5 processor, 12GB or 16GB of RAM, and 256GB, 512GB, or 1TB storage options 4,800mAh battery with 45W wired charging 50MP main camera, 50MP ultrawide camera, and 10MP selfie camera Android 17 and One UI 9 The three new foldable phones are unlikely to be the only devices unveiled at Samsung’s Unpacked event. The company is also expected to introduce the Galaxy Watch Ultra 2 and the Galaxy Watch 9 series.
    • Thanks
  • Recent Achievements

    • Week One Done
      rolfus earned a badge
      Week One Done
    • One Month Later
      Leroy Jethro Gibbs earned a badge
      One Month Later
    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
    • One Month Later
      AndreaB earned a badge
      One Month Later
    • One Month Later
      agatameier earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      505
    2. 2
      +Edouard
      196
    3. 3
      PsYcHoKiLLa
      141
    4. 4
      ATLien_0
      89
    5. 5
      Steven P.
      81
  • Tell a friend

    Love Neowin? Tell a friend!