Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > MacCar > Neon Boombox


Reply
 
Share Thread Tools Display Modes
Old 01-30-2008, 04:34 PM   #1
Newbie
 
NeonBoomBox's Avatar
 
Join Date: Aug 2001
Posts: 33
NeonBoomBox is an unknown quantity at this point
Welcome to Neon Boombox

Hello and welcome to the new front end for macs!



We have been kicking around the idea to make our own front end for a while now and have just now been able to get things going. And going they are! This project is being constantly updated and improved.

Bellow is a feature list and all the fixes so far.

Public Release 1-
Main Application

New Features:
•Dynamically Arrangeable interface buttons
•Dynamically Changeable interface/button color
•Music Module Added
•12 hour clock w day of week
•Rotary Dial wheel which can hold up to 12 modules

Bug Fixes: None
Changes: None
Known Issues: Mouse Events outside options bezel don't get blocked
Dial wheel is free moving (no designated "locking" points)

Music Module

New Features:
•Lists all music from your iTunes Library
•Navigate Library by Artist Album or Genre
•Play any Quicktime compatible track (that is in iTunes Library)
•Real Visualizer (visuals are an actual result of the music playing, not faked)

Bug Fixes:None
Changes:None
Known Issues: Mouse Events outside options bezel don't get blocked
Play/Pause button will revert back to their original color when clicked
Once a song is done playing the next song in the list doesn't play
back/forward buttons play the previous/next song in list instead of starting the playing track over
Navigating by artist will show a "No Album" section in each artists respective album list, however it is never populated even when it should be

Public Release 2-

Main Application

New Features:None

Bug Fixes: Mouse events outside the options Bezel are no longer sent
Dial now has locking positions and is no longer free rotating

Changes: dial button positions are more accurately calculated to be a more perfect circle
clock no longer displays a leading 0 in the hours

Known Issues: None

Music Module

New Features: None

Bug Fixes: Play/pause button no longer reverts color
When a song is done playing the next song in the list will now play
mouse events outside the options bezel are no longer sent

Changes:None
Known Issues: back/forward buttons play the previous/next song in list instead of starting the playing track over
Navigating by artist will show a "No Album" section in each artists respective album list, however it is never populated even when it should be

Head on over to www.neonboombox.com to download the app and try it out for yourself. If you download it please be sure to give us some feedback. We would love to hear any opinion you may have!


DISCLAIMER: We have been using this on many different machines and have yet to have a problem. But use at your own risk. in the very unlikely event that something happens to your system as a result of using our program IT IS NOT OUR FAULT!

also, if anyone is interested, we are looking for a few beta testers for our app. if you are interested drop us a line at info@neonboombox.com
__________________
Take a peek >>> www.neonboombox.com
NeonBoomBox is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 01-30-2008, 04:50 PM   #2
CarFrontEnd Creator
 
iamgnat's Avatar
 
Join Date: Jul 2004
Location: NoVA
Posts: 867
iamgnat is on a distinguished road
Quote: Originally Posted by NeonBoomBox View Post
•12 hour clock w day of week

Without having actually downloaded it, here is one suggestion I have.

Don't force your date preferences on others

Use one of the Date and Time formats from the International SysPrefs. That way the user can customize the format to look how ever they prefer (i'm a mm/dd/yy hh:mm:ss man myself ). Here is an example of how to do it (though I am being bad and forcing them to use a date):

Code:
- (void) updateDateTime: (id) ignore { NSString *path = [@"~/Library/Preferences/.GlobalPreferences.plist" stringByExpandingTildeInPath]; NSDictionary *prefs = [NSDictionary dictionaryWithContentsOfFile:path]; NSString *dateFormat = [[prefs objectForKey:@"AppleICUDateFormatStrings"] objectForKey:@"3"]; NSString *timeFormat = [[prefs objectForKey:@"AppleICUTimeFormatStrings"] objectForKey:@"3"]; NSString *date, *time; CFLocaleRef locale = NULL; CFDateFormatterRef formatter = NULL; if (dateFormat == nil) { // Default if the user doesn't have anything configured. // 2 digit month, 2 digit day, 2 digit year. dateFormat = @"MM/dd/yy"; } if (timeFormat == nil) { // Default if the user doesn't have anything configured. // 24 hour 2 digit hour, 2 digit minute, and 2 digit seconds. timeFormat = @"HH:mm:ss"; } locale = CFLocaleCopyCurrent(); formatter = CFDateFormatterCreate(kCFAllocatorDefault, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle); CFDateFormatterSetFormat(formatter, (CFStringRef) dateFormat); date = (NSString *) CFDateFormatterCreateStringWithAbsoluteTime( kCFAllocatorDefault, formatter, CFAbsoluteTimeGetCurrent()); CFDateFormatterSetFormat(formatter, (CFStringRef) timeFormat); time = (NSString *) CFDateFormatterCreateStringWithAbsoluteTime( kCFAllocatorDefault, formatter, CFAbsoluteTimeGetCurrent()); CFRelease(locale); CFRelease(formatter); [dateTextField setStringValue:[NSString stringWithFormat:@"%@ %@", date, time]]; }

Otherwise it sounds pretty good so far.

Do I recall correctly (from a previous thread) that you are not open sourcing this?

-dave
__________________
My pathetic worklog.
CarFrontEnd (now it's own sub-forum!!!!)
iamgnat is offline   Reply With Quote
Old 01-30-2008, 06:14 PM   #3
Newbie
 
NeonBoomBox's Avatar
 
Join Date: Aug 2001
Posts: 33
NeonBoomBox is an unknown quantity at this point
Quote: Originally Posted by iamgnat View Post
Don't force your date preferences on others

it is a 12 hour clock by defalt because thats how most clocks are. and as we are striving for a very user personalized front end the date/time will have plenty of options, even for the most picky of users
__________________
Take a peek >>> www.neonboombox.com
NeonBoomBox is offline   Reply With Quote
Old 01-31-2008, 03:03 AM   #4
Newbie
 
Join Date: Jan 2008
Location: Western Australia
Posts: 23
Cybix is an unknown quantity at this point
doesnt launch on PPC 1.4 mac mini running leopard. bounces in dock about 15 or 20 times then just bails
Cybix is offline   Reply With Quote
Old 01-31-2008, 10:33 AM   #5
Newbie
 
NeonBoomBox's Avatar
 
Join Date: Aug 2001
Posts: 33
NeonBoomBox is an unknown quantity at this point
Quote: Originally Posted by iamgnat View Post
Do I recall correctly (from a previous thread) that you are not open sourcing this?

We are not making this project open source. But we will be releasing a sdk within the coming weeks so users have the ability to create their own modules.
__________________
Take a peek >>> www.neonboombox.com
NeonBoomBox is offline   Reply With Quote
Old 01-31-2008, 11:17 AM   #6
Newbie
 
NeonBoomBox's Avatar
 
Join Date: Aug 2001
Posts: 33
NeonBoomBox is an unknown quantity at this point
Quote: Originally Posted by Cybix View Post
doesnt launch on PPC 1.4 mac mini running leopard. bounces in dock about 15 or 20 times then just bails

if you can open up your console app, try and launch Neon Boombox, and post the output to the crash log thread that would be supper helpful! thanks!
__________________
Take a peek >>> www.neonboombox.com
NeonBoomBox is offline   Reply With Quote
Old 02-03-2008, 08:50 PM   #7
Newbie
 
Join Date: Jan 2008
Location: Western Australia
Posts: 23
Cybix is an unknown quantity at this point
Quote: Originally Posted by NeonBoomBox View Post
if you can open up your console app, try and launch Neon Boombox, and post the output to the crash log thread that would be supper helpful! thanks!

I will do that tonight for you..

James
Cybix is offline   Reply With Quote
Old 02-13-2008, 12:05 AM   #8
Newbie
 
NeonBoomBox's Avatar
 
Join Date: Aug 2001
Posts: 33
NeonBoomBox is an unknown quantity at this point
Mmmmmm some fresh pics!
Attached Images
   
__________________
Take a peek >>> www.neonboombox.com
NeonBoomBox is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 02-13-2008, 09:08 AM   #9
Admin. Don't bug or I'll byte.
 
Bugbyte's Avatar
 
Join Date: Sep 2004
Location: Corning, NY
Posts: 6,142
Bugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to behold
I meant to ask - what is the bar graph on the left? Will that be the volume?
__________________
Want to:
-Find out about the iBug?
-Stop being a newbie? Take a look at the FAQ Emporium?
-Find out about carPC's in just 5 minutes? View the Car PC 101 video
-Help me kill my car PC
-Watch live video streams from my mobile PC? Check it out here.
-Where is the iBug?
Bugbyte is offline   Reply With Quote
Old 02-13-2008, 10:05 AM   #10
Variable Bitrate
 
NeonDev's Avatar
 
Join Date: Feb 2008
Posts: 431
NeonDev is an unknown quantity at this point
yes it will tho I do think that the final volume control will look somewhat different as the next release will encompass some minor interface changes
__________________
check us out at: www.neonboombox.com
NeonDev is offline   Reply With Quote
Old 03-07-2008, 03:12 PM   #11
Newbie
 
Join Date: Jan 2008
Posts: 17
HEAVY8HITTERS is an unknown quantity at this point
wow this looks great i look forward to installing this when i get my mac mini.. keep up the good work and keep us posted on new features and ideas
HEAVY8HITTERS is offline   Reply With Quote
Old 03-07-2008, 03:31 PM   #12
Variable Bitrate
 
NeonDev's Avatar
 
Join Date: Feb 2008
Posts: 431
NeonDev is an unknown quantity at this point
thank you very much. Its nice to feel appreciated. there is actually a new build out now that looks a bit different and yet some more interface tweaks are coming possibly today or tomorrow.
__________________
check us out at: www.neonboombox.com
NeonDev is offline   Reply With Quote
Old 03-07-2008, 04:15 PM   #13
Newbie
 
Join Date: Nov 2007
Posts: 34
kevincat is an unknown quantity at this point
hey i download the neon box thingy and it looks great. i do have a problem tho.... my liliput dont wannna display 800x480 so is there an option where i can get it to display at 800x600 because the black bar on top of the app. doesnt look so appealing. let me know neondev. thanks keep up the good work.
kevincat is offline   Reply With Quote
Old 03-07-2008, 04:29 PM   #14
Variable Bitrate
 
NeonDev's Avatar
 
Join Date: Feb 2008
Posts: 431
NeonDev is an unknown quantity at this point
yeah I just posted this in the AMP forum. 800x600 resolution will be available in release 6. just be patient for a couple of weeks
__________________
check us out at: www.neonboombox.com
NeonDev is offline   Reply With Quote
Old 03-18-2008, 04:47 PM   #15
Variable Bitrate
 
NeonDev's Avatar
 
Join Date: Feb 2008
Posts: 431
NeonDev is an unknown quantity at this point
make sure you have the latest version available here
neonboombox.com

what you are describing sounds like a bug I introduced in release 5b has bitten you.

I am improperly trying to get the itunes location from the itunes preference file. I have fixed this in release 6 (not yet publicly available)

there are several ways to "fix" it in 5b, the easies would be to delete the itunes preference file from your library. If you need help with that I can explain it in more detail.

release 6 will be coming out this weekend FYI

EDIT: the post i was responding to seems to have vanished... it was regarding NBB failure to launch.
__________________
check us out at: www.neonboombox.com

Last edited by NeonDev; 03-18-2008 at 05:11 PM. Reason: deleted post...?
NeonDev is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Neon Wires Michael1 Newbie 6 03-12-2008 12:28 PM
obd-II on a chrysler neon neon2L16v Engine Management, OBD-II, Engine Diagnostics, etc. 2 01-16-2007 06:31 PM
Dodge Neon 2001 xpluisdf Show off your project 21 11-13-2006 09:57 AM
WTF! is up with neon lights in NY neon Ski-Doo Newbie 18 07-11-2005 02:40 AM



All times are GMT -5. The time now is 02:31 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics