Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2008-07-21

00:00:17amiconnAnd the only difference is again database.ignore
00:00:52linuxstbbluebrother: That sounds fair enough to me. The advantage would be that the install chapter would then be more or less identical for all targets...
00:01:40amiconnrasher: Hmm, and it didn't clean up the 'codepages' output in the build dir
00:02:26 Quit n1s ()
00:02:32rasherAh right, forgot about that.
00:03:39bluebrotherand I'd really like to see all those outdated tutorials based on the patchers getting broken. Maybe move the patchers out of the bootloader/ folder on the webserver?
00:04:10pixelmabefore the manual installation gets just moved it needs to be reviewed for general information that you should know while attempting an automatic install. IMO there is some.
00:04:29 Quit davina (Remote closed the connection)
00:04:41bluebrothertrue.
00:04:46pixelmaI mean the chapters of course
00:05:16bluebrotheroptimally those information would be present in rbutil, but this will take some time ...
00:05:29linuxstbbluebrother: I partly agree, but for example ipodpatcher is used by IPL, so that would also break (probably correct) IPL install instructions.
00:06:55bluebrotheris IPLs website up again anyway?
00:07:53bluebrotherwell, another (but IMO more annoying) way would be to redirect download attempts to a website pointing out rbutil and the differences, and only if you click a button you get to download the file
00:08:40bluebrotherof course we could simply move the files so IPL has a chance to update their links, and redirect the old links to some explanation html page
00:09:07amiconnrasher: I see that you replaced the 'touch' that added database.ignore by an open(). Maybe you need to close() it explicitly before zipping?
00:09:18amiconnCould be tha the file is locked while it's open
00:09:51*amiconn should just try that
00:09:53rasheramiconn: Nope - the default mode is to open with mode 'r', which doesn't create the file if it doesn't exist
00:09:55 Quit Nibbl (Read error: 113 (No route to host))
00:10:03 Join Zarggg [0] (n=z@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
00:10:05amiconnah
00:10:24rasherNew (final?) patch submitted
00:10:25 Join Bensawsome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
00:12:14 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
00:13:46amiconn"cannot remove directory for .rockbox: Directory not empty at /home/Jens/rockbox/tools/buildzip.pl line 464"
00:14:07amiconnThis is because of the still opened file
00:14:17amiconnClosing it fixes the problem
00:14:33rasherAh, that was a silly mistake.
00:15:52amiconnThe created .zip now matches svn
00:16:19rasherBeautiful.
00:16:36rasherNow it's just a matter of whether or not I dare commit it.
00:16:52rasher(with a close(IGNORE) added, of course)
00:17:00*amiconn would appreciate it
00:18:03linuxstbbluebrother: No, IPL's website isn't back yet, but I believe it's being worked on (i.e. not abandoned)
00:19:07*amiconn wonders whether the >/dev/null in the if($verbose) print .... is on purpose
00:20:09amiconnUmm, of course it is...
00:20:49*rasher made the same mistake
00:21:41rasherCommitted.
00:22:18Nico_Prasher: you make it use perl functions instead of system ones for file operations?
00:22:36 Join ompaul [0] (n=ompaul@gnewsense/friend/ompaul)
00:22:59Nico_Phmm I should've read the FS task summary before asking
00:23:12 Join MethoS- [0] (n=clemens@dyndsl-085-016-166-241.ewe-ip-backbone.de)
00:23:25rasherI should have linked the task in my commit message, of course.
00:23:46rasherBut yes, that's exactly what I do
00:24:00 Quit MethoS (Read error: 60 (Operation timed out))
00:24:04Nico_Pnice
00:24:55Nico_Pis the sim's "make install" still "make zip + unzip"?
00:25:27 Nick Bensawsome is now known as BenIsAwsome (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
00:25:50rasherI think the cygwin-using people owe me a beer now
00:25:53 Nick BenIsAwsome is now known as BenIsAwesome (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
00:26:01 Nick BenIsAwesome is now known as Bensawsome (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
00:26:14rasherNico_P: Yeah, I think so. It seems a bit silly
00:26:21Nico_Pindeed
00:26:43amiconnrasher: Would it perhaps pay off to add a glob_move() as well? (for the .cp files)
00:27:36rasheramiconn: I doubt it matters much, speed-wise. But it'd probably look nicer
00:27:58Nico_Prasher: there's the overhead of compression
00:30:15rasherNico_P: not in what amiconn is talking about. But yes, separating the zipping part would be a welcome change I guess
00:30:25Nico_Pah, sorry
00:30:29amiconnAlso, is there a difference in using system() vs. using backticks for calling programs, performance wise?
00:30:37 Quit MTee ()
00:31:06rasheramiconn: I think they're the same. I just changed to system() because it's more obvious than backticks imho
00:31:30amiconnI'm asking because the ziptool call uses system, and convbdf uses backticks
00:32:13rasherI'd be surprised if there was any difference.
00:34:44amiconnAlso, there is still a 'find' call which checks for any codecs present
00:34:54amiconn(line 287ff)
00:35:58rasherYeah. Didn't quite fit in with the other find calls I changed, and it's only a single command, so it shouldn't be a big slowdown
00:36:13*amiconn thinks it's strange to first create the destination dir, then copy (maybe zero) files, and then check whethere there are files in the diestination dir
00:36:35rasherActually, just running rmdir regardless should work (and ignore any errors)
00:36:51amiconnImho it would make sense to check the source first, and only create the destination dir if there is something to copy
00:37:14amiconnI know that this was there before your commit...
00:38:16rasherI think it makes more sense to not do any checking, and just attempt to remove the dir (which will fail if it's not empty)
00:39:25 Quit Nibbl (Remote closed the connection)
00:42:47 Quit obo ("bye")
00:44:53rasherThere's no real reason to do the check
00:51:45 Quit midkay ("Leaving")
00:52:25 Join CrazyD [0] (n=vista@cpe-76-95-154-51.socal.res.rr.com)
00:55:19amiconnrasher: Btw, convbdf can batch-convert input files matching a pattern, but then it outputs to the current directory
00:55:22 Quit ompaul (Client Quit)
00:56:10rasherThat sounds promising
00:56:31amiconnSo if the perl script could temporarily change to $ROOT/fonts/ , it would be possible to replace lines 210..228 with a single call
00:57:19amiconnIt's just $ROOT/tools/convbdf -f -\"$ROOT/fonts/*.bdf\" >/dev/null 2>&1
00:58:05amiconnThis would speed up 'make fullzip'
00:58:07 Join midkay [0] (n=midkay@rockbox/developer/midkay)
00:59:14 Join FireWithin [0] (n=___@87-196-75-9.net.novis.pt)
00:59:21 Part FireWithin
01:00
01:00:15amiconnErr, of course it'd need to change into .rockbox/fonts/ temporarily
01:01:17rasherYeah, and add a few ../ to the path
01:01:21rasherTrying it out
01:06:33amiconnHmm, $ROOT isn't absolute...
01:08:15 Quit mirak (Remote closed the connection)
01:08:29rasherActually it is, it seems. It's defined a few times
01:08:55rasherOr else Perl applies some sort of magic
01:11:17rasheramiconn: Got it working now. Let's see. I'll just commit it this time
01:12:08rasher(Famous last words)
01:15:09 Quit perrikwp ("http://www.mibbit.com ajax IRC Client")
01:15:17***Saving seen data "./dancer.seen"
01:15:18amiconnThe if ($verbose) got lost again...
01:15:43amiconnBut it shaves another 20s from 'make fullzip'
01:19:16rasherJust a tiny difference on native Linux. Less than a second for me.
01:21:21 Join saratoga [0] (n=9803c6dd@gateway/web/cgi-irc/labb.contactor.se/x-3785e9e3dc327764)
01:23:17 Quit bluebrother ("leaving")
01:25:37 Quit saratoga (Client Quit)
01:29:54 Quit BlakeJohnson86 (Read error: 104 (Connection reset by peer))
01:34:00 Join BlakeJohnson86 [0] (n=bjohnson@c-24-118-135-22.hsd1.mn.comcast.net)
01:39:53amiconnrasher: Umm, there is a bug now: The .rock files in the .zip no longer have the x bit set, meaning that sims can no longer execute plugins...
01:41:53rasherOh dear
01:45:20 Join midkay_ [0] (n=midkay@71-35-99-88.tukw.qwest.net)
01:49:09rasheramiconn: should codecs be executable as well?
01:50:01amiconnYEs
01:50:30amiconnI'm not sure whether this is true for linux, but windows wants its shared objects (aka dlls) being executable
01:51:58 Quit culture (Connection timed out)
01:52:12*amiconn wonders why copy() doesn't keep permissions
01:52:36 Quit Nico_P (Remote closed the connection)
01:52:54rasherYou're creating a new file. There's no reason why it should inherit permissions. Especially if you didn't own the original
01:54:05 Quit herrwaldo ("Konversation terminated!")
01:54:15rasheramiconn: should be fixed now
01:56:05 Quit midkay (Read error: 110 (Connection timed out))
01:57:39 Quit XavierGr ()
02:00
02:01:27amiconnrasher: Thanks, it works now
02:09:12 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
02:20:54 Join DerPapst [0] (n=DerPapst@77.20.73.245)
02:21:08DerPapstBagder: still there?
02:23:50Dhraakellianwhat's the best way to uninstall manually installed themes?
02:25:08 Quit Nibbl (Remote closed the connection)
02:35:24 Join perrikwp [0] (i=d1a8d351@gateway/web/ajax/mibbit.com/x-7e0fac934034302c)
02:37:02 Join rphlx [0] (i=foobar@cpe-76-167-117-244.socal.res.rr.com)
02:48:16 Quit agaffney (verne.freenode.net irc.freenode.net)
02:48:16NSplitverne.freenode.net irc.freenode.net
02:48:16 Quit maddler (verne.freenode.net irc.freenode.net)
02:48:16 Quit |Marco| (verne.freenode.net irc.freenode.net)
02:48:16 Quit r4v5 (verne.freenode.net irc.freenode.net)
02:48:16 Quit elfo (verne.freenode.net irc.freenode.net)
02:53:41NHealverne.freenode.net irc.freenode.net
02:53:41NJoin|Marco| [0] (i=marco@cakebox.net)
02:53:45 Join elfo [0] (n=elfo@gnusrv.epfl.ch)
02:53:57NJoinr4v5 [0] (i=r4v5@loliserv.org)
02:54:05NJoinmaddler [0] (n=maddler@cabbage.komputika.net)
02:54:06NJoinagaffney [0] (n=agaffney@gentoo/developer/pdpc.active.agaffney)
02:57:41 Part pixelma
03:00
03:01:26soapdelete the folder
03:02:48Dhraakelliandelete everything bearing the themes name in .rockbox/themes, .rockbox/wps and .rockbox/backdrops?
03:02:55*Dhraakellian adds an apostrophe
03:05:02soapaye, folders and files.
03:07:00DhraakellianI'm just glad Plain Text was easy to fix
03:07:36Dhraakelliansimple, not very flashy, but informative and easy to read
03:09:16Dhraakelliannow I just need to figure out how to get moodbars rendered as 176- (or would it be 174-)pixel-wide images so I can use them as per-track album art right above the progress bar
03:10:10soapis this going to be a bastardization of album art? (I say that in only the kindest way)
03:10:28soapOr do you have some other method for per-track conditionals?
03:10:38Dhraakellianhmm
03:11:09DhraakellianI thought it already worked if there was a bmp with a name based on the current track's info
03:11:14DhraakellianI might be mistaken though
03:11:41soapCurrent track's name, album name, or such.
03:12:13soaphttp://www.rockbox.org/twiki/bin/view/Main/AlbumArt#Picture_Format
03:12:53Dhraakellian./ filename .bmp - same filename as currently playing music file
03:13:05Dhraakellianthat'd be what I was remembering, I think
03:13:06soapthere is no reason you couldn't create a "moodbar" image for specific albums / tracks, make it 176 pixels wide and 10 pixels high (for example) and use that.
03:13:16Dhraakellianhmm
03:13:33Dhraakellianor 1 pixel high and stack it?
03:13:53soapIIUC only one image can be called in this manner.
03:13:57Dhraakellianokay
03:14:35soapas there is no provision to call the last song's "album art" or the next song's "album art" :()
03:15:11Dhraakellianwell, given that the progressbar itself is only about four pixels high, including the border, I don't think I'd want the moodbar to be too tall
03:15:20***Saving seen data "./dancer.seen"
03:16:10DhraakellianI think the main problem would be getting the .mood files rendered as 176x4 bitmaps
03:17:33Dhraakellianhmm... easiest way would probably be to yank the code from amarok and then see how to save a qpixmap as a .bmp
03:17:52 Quit Thundercloud (Remote closed the connection)
03:20:16soapif you script that all up I am sure others would be interested in such a theme.
03:22:51Dhraakellianyarr
03:34:25 Join BlakeJohnson861 [0] (n=bjohnson@99-203-44-178.area2.spcsdns.net)
03:35:09 Join RoC_MasterMind [0] (n=Free@c-24-127-250-250.hsd1.fl.comcast.net)
03:35:11 Quit DerDome (Nick collision from services.)
03:35:12 Join DerDome1 [0] (n=DerDome@dslb-082-083-240-085.pools.arcor-ip.net)
03:35:24 Nick DerDome1 is now known as DerDome (n=DerDome@dslb-082-083-240-085.pools.arcor-ip.net)
03:43:28 Quit DerPapst (Read error: 113 (No route to host))
03:51:39 Quit BlakeJohnson86 (Read error: 110 (Connection timed out))
04:00
04:02:55 Quit Zarggg ()
04:08:50 Join ThomasG33K [0] (i=reahoi@fuzzy.dreamhaze.net)
04:09:02ThomasG33KSo anyone up to a challenge?
04:12:55 Join miepchen^schlaf_ [0] (n=miepchen@p54BF763C.dip.t-dialin.net)
04:13:01 Quit miepchen^schlaf (Read error: 60 (Operation timed out))
04:13:35ThomasG33KI have a 1st gen nano, using a mac. iPodpatcher does not detect my device even after I have it in FAT32 format
04:15:23 Join simonrvn [0] (i=simon@unaffiliated/simonrvn)
04:15:59 Join webguest24 [0] (n=864c0302@gateway/web/cgi-irc/labb.contactor.se/x-8dc7042feb0572ca)
04:16:58webguest24ThomasG33K: please double check if it is really a 1st gen: http://support.apple.com/kb/HT1353 . Have you tried RbUtil?
04:17:38ThomasG33Kyes, I am sure. Rbutil says it cant access the ipod
04:18:03ThomasG33KI did it manual but ipodpatcher cant find it either. Its mounted and all and formatted fat32
04:18:16webguest24do you run RbUtil or ipodpatcher with administrative rights?
04:19:21ThomasG33KI have admin privs yes
04:19:32ThomasG33KI didnt use sudo with catcher tho
04:20:58webguest24does the apple os on your ipod run fine?
04:22:14ThomasG33Kyes
04:22:42ThomasG33Kfyi I used manual way of formatting the ipod to fat32 on a mac
04:23:16webguest24then i'm out of ideas, sorry.
04:23:32 Join MethoS_ [0] (n=clemens@dyndsl-085-016-164-189.ewe-ip-backbone.de)
04:26:07ThomasG33Kthx for trying anyways :(
04:27:06 Nick ThomasG33K is now known as ThomasG33K_away (i=reahoi@fuzzy.dreamhaze.net)
04:27:58 Join flyback [0] (n=flyback@c-67-186-27-158.hsd1.pa.comcast.net)
04:28:22flybackany further status on the sansa m200 v1 port
04:28:36flybackI just bought my dad a new m250 to replace his m230 I broke the lcd on
04:28:45flybackso a rockbox port on this thing would let me work around the dead lcd
04:29:00 Quit CrazyD (Read error: 110 (Connection timed out))
04:30:29webguest24have you checked the thread in the new ports section of the forums?
04:32:01flybackyes
04:32:13flybackbut sometimes live gets updated a bit faster than forum :P
04:32:24flybacklooks like they need to write a nand driver next
04:38:07 Part simonrvn ("Thanks, and Take Care")
04:40:06 Quit MethoS- (Read error: 110 (Connection timed out))
04:40:23 Quit webguest24 ("CGI:IRC")
04:41:22 Quit MethoS_ (Read error: 104 (Connection reset by peer))
04:50:21 Join jrincon87 [0] (n=jrincon8@190.156.162.10)
04:51:10*flyback bbl before his colon achieves fusion
04:51:15LloreanThomasG33K_away: You should try it with sudo.
04:51:51jrincon87hey, I just installed Rockbox on an Ipod mini but after that, I don't have access to it. I mean I can't even see my ipod mounted as a hard disk
04:52:04Lloreanflyback: Please don't just show up to ask for status reports. People will update the thread when there's something to update, but if everyone interested in a port came in for status reports it'd get really noisy in here.
04:52:13jrincon87I don't have access from my computer
04:52:21flybackthat's fine
04:52:23Lloreanjrincon87: Have you tried manually rebooting into disk mode?
04:52:27 Part flyback ("Leaving")
04:52:42jrincon87how do I do that?
04:53:54LloreanWell, actually, first try this.
04:53:58LloreanTurn off your iPod
04:54:00LloreanTurn the hold switch on.
04:54:10LloreanWhile the switch is on, plug in USB and wait for it to boot up and see if it connects.
04:54:35jrincon87ok, hold on
04:55:17 Join solexx_ [0] (n=jrschulz@e176124064.adsl.alicedsl.de)
04:56:57jrincon87Llorean: I've done that but I doesn't happen anything...
04:57:22LloreanWhat do you mean?
04:57:29LloreanSurely it at least starts to boot?
04:57:36jrincon87I installed Rockbox from a machine with Windows and Windows didn't mounted it after that... now I'm trying to do that in Ubuntu
04:57:42jrincon87yes, it boots
04:57:50LloreanAnd you left the hold switch on?
04:57:54jrincon87now I'm seeing the apple logo
04:57:55jrincon87yes
04:58:05LloreanAfter you see the apple logo, it should boot into the apple software.
04:58:13jrincon87it doesn't
04:58:20LloreanThen you didn't install properly.
04:58:28LloreanWas the Apple software working immediately before you ran ipodpatcher?
04:58:40jrincon87yes
04:59:09 Quit kugel (Read error: 110 (Connection timed out))
04:59:17LloreanBut you can no longer dual boot?
04:59:30LloreanIt just stays on the Apple logo?
05:00
05:00:19jrincon87yes... you mean dual boot between Rockbox and Apple?
05:00:33Lloreanyes
05:00:57jrincon87with the instructions I followed when I installed Rockbox, I wasn't able to dual boot
05:01:08jrincon87it just boots onto the Rockbox software
05:01:39LloreanWhat instructions did you follow?
05:03:34jrincon87I downloaded Rockbox for mi ipod mini 2G from the rockbox webpage, moved the folder called .rockbox into the main directory of the ipod, downloaded and ran ipodpatcher.exe with the option to install, and that's it
05:04:18LloreanDid you use the ipodpatcher from download.rockbox.org?
05:04:23LloreanAnd why didn't you use the RButil method?
05:04:24jrincon87yes
05:05:38LloreanWhat version numbers does your ipodpatcher report? It should tell you when you run it "version X with version Y bootloaders"
05:06:18jrincon87I don't know... when I was deciding to install Rockbox I read a Blog and he has the instructions after giving a good experience with it, so I followed his instructions
05:06:41jrincon87hm, hold on
05:07:35LloreanWe really recommend you follow our install instructions. Ipodpatcher is an outdated tool, and while it *should* work I'm not wholly certain it's the most up to date.
05:07:59jrincon87I used the last version for Windows...
05:08:16Llorean"Outdated" means "It hasn't been updated in a while"...
05:08:38LloreanIt should still work to dual boot.
05:08:55LloreanBut that's a "should" and not a "will certainly"
05:09:36LloreanDisk mode can be reached by holding Menu+Select to reboot, and as soon as the screen is blank, holding Select+Play
05:10:13jrincon87sure... what do you think I should do? is there a way to reinstall it, to format the ipod, or should I throw it to the trash?
05:10:20jrincon87ok, I'm gonna try that now
05:11:11 Quit solexx (Read error: 110 (Connection timed out))
05:11:46jrincon87weeeee!!!!!! the last thing worked!
05:11:50jrincon87I has access now
05:11:54jrincon87I have*
05:12:29jrincon87now, what do you think I should do to get it to work properly when connected
05:13:18 Quit Zom (Remote closed the connection)
05:13:29 Join Zom [0] (n=zom@h-43-44.A166.cust.bahnhof.se)
05:13:46 Join lymeca [0] (n=lymeca@unaffiliated/lymeca)
05:14:03lymecaAnyone know where I can get an MBR image to dd onto my 4th gen 30GB ipod?
05:14:57Lloreanjrincon87: Well Rockbox doesn't have its own USB mode. It's supposed to automatically reboot into this disk mode, but that behaviour's a little buggy right now. You'll basically either just have to put up with manually doing it, or get dual boot working so that you can plug in a USB cable while it's shut off with hold on to easily get into USB.
05:15:22LloreanPlease, do not pester me with PMs. If I don't respond to you in-channel it's because I'm busy, and a PM is not going to make me less busy.
05:15:25***Saving seen data "./dancer.seen"
05:15:35jrincon87ok, sorry
05:15:58jrincon87I'm gonna do some research to get the dual boot working
05:16:01jrincon87thanks for everything
05:16:25 Quit jrincon87 ("Ex-Chat")
05:24:08 Quit fdinel ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
05:45:40 Quit Horscht ("Snak 5.3.3 Unregistered copy. Evaluation period is over. Program will now quit. Thanks for using Snak.")
05:48:28 Join ryran [0] (n=469392ad@gateway/web/cgi-irc/labb.contactor.se/x-b762741cfe8aab50)
06:00
06:01:26ryranhey everyone. just updated my svn trunk and compiled fine but now when I try to make zip (or gzip/bzip2/7zip) I get a an error (command not found OR rockbox.tar: Cannot stat: No such file or directory). saw rasher made a bunch of changes to buildzip and I could maybe figure this out, but I was hoping to get a quick fix from someone more guru-esque than I. any takers?
06:02:23 Quit Llorean (Read error: 104 (Connection reset by peer))
06:03:47 Join Llorean [0] (n=DarkkOne@adsl-70-241-20-198.dsl.hstntx.swbell.net)
06:04:51 Quit Llorean (Client Quit)
06:09:35 Join Llorean [0] (n=DarkkOne@adsl-70-241-20-198.dsl.hstntx.swbell.net)
06:10:45 Quit midkay_ ("Leaving")
06:12:26 Part toffe82
06:16:39ryranfigured it out pretty quick by the way. perhaps obvious, but for the record: unrelated to rasher's changes. my bad for setting up build env on a new server and assuming zip / 7zip etc should've been there.
06:17:06LloreanThat happens a lot.
06:18:50 Quit Llorean ("Leaving.")
06:19:05ryran:)
06:19:25 Join Llorean [0] (n=DarkkOne@adsl-70-241-20-198.dsl.hstntx.swbell.net)
06:33:51 Quit ryran ("CGI:IRC 0.5.9 (2006/06/06)")
06:35:51 Join midkay [0] (n=midkay@rockbox/developer/midkay)
07:00
07:15:29***Saving seen data "./dancer.seen"
07:40:57 Join goffa [0] (n=goffa@216.220.23.105)
07:48:44 Quit vort3x (Read error: 104 (Connection reset by peer))
07:49:04 Join vort3x [0] (n=vortex@unaffiliated/dfa001)
07:55:13 Quit goffa_ (Read error: 110 (Connection timed out))
07:55:46 Quit miepchen^schlaf_ ()
08:00
08:05:57 Quit safetydan ("Leaving.")
08:07:16 Join sin613 [0] (n=pbarton@h202.49.135.98.ip.windstream.net)
08:14:35 Join GodEater_ [0] (i=c2cbc962@gateway/web/ajax/mibbit.com/x-10a76fd11b02671a)
08:14:49 Join Rob2222 [0] (n=Miranda@p4FDCE425.dip.t-dialin.net)
08:26:19 Quit BigBambi_ (Remote closed the connection)
08:33:18 Quit Rob2223 (Read error: 110 (Connection timed out))
08:36:34 Quit sin613 ("Leaving.")
08:50:59 Join sacarasc_ [0] (i=sacarasc@cpc1-kemp3-0-0-cust978.lutn.cable.ntl.com)
08:51:32 Quit sacarasc (Read error: 104 (Connection reset by peer))
08:56:50 Quit nplus (Read error: 104 (Connection reset by peer))
08:57:14 Join nplus [0] (n=nplus@141.25.Globcom.Net)
08:57:26 Join davina [0] (n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com)
09:00
09:15:32***Saving seen data "./dancer.seen"
09:18:03 Quit perrikwp ("http://www.mibbit.com ajax IRC Client")
09:21:51 Quit vort3x (Read error: 104 (Connection reset by peer))
09:25:23 Join _Grammaton_ [0] (n=_Grammat@p5485CD50.dip.t-dialin.net)
09:25:33 Part _Grammaton_
09:33:30 Quit Bensawsome (Nick collision from services.)
09:33:33 Join Bensawesome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
09:35:56 Join courtc_ [0] (n=court@c-24-99-230-218.hsd1.ga.comcast.net)
09:37:34 Join perrikwp [0] (i=d1a8d351@gateway/web/ajax/mibbit.com/x-8ff9d3e78d264a25)
09:38:34 Join vort3x [0] (n=vortex@unaffiliated/dfa001)
09:48:12 Quit DaCapn ()
09:49:51 Quit courtc (Read error: 110 (Connection timed out))
09:55:00 Join J [0] (n=john@cpc2-mfld9-0-0-cust297.nott.cable.ntl.com)
09:55:32 Nick J is now known as Guest14011 (n=john@cpc2-mfld9-0-0-cust297.nott.cable.ntl.com)
09:57:03 Part Guest14011
10:00
10:00:58 Join Nico_P [0] (i=53915df2@gateway/web/ajax/mibbit.com/x-9532ce3c6c18f7e1)
10:06:35 Join sin613 [0] (n=pbarton@h202.49.135.98.ip.windstream.net)
10:06:49 Join petur [50] (n=petur@rockbox/developer/petur)
10:08:28 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
10:13:56 Quit BHSPitLappy (Remote closed the connection)
10:18:49 Part sin613
10:21:59 Quit vort3x (Read error: 104 (Connection reset by peer))
10:22:22 Join vort3x [0] (n=vortex@unaffiliated/dfa001)
10:27:16 Quit Nibbl (Read error: 113 (No route to host))
10:42:25 Join pondlife [50] (n=Steve@rockbox/developer/pondlife)
10:47:29pondliferasher: Thanks for the Cygwin speed-ups..
10:48:12 Join onur258 [0] (i=dsfasd@88.236.100.138)
10:48:20onur258slm
10:48:52onur258hi
10:49:40 Quit onur258 (Client Quit)
10:56:48 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
11:00
11:01:59 Join ddalton [0] (n=ddalton@210-84-58-125.dyn.iinet.net.au)
11:02:07ddaltonwe still all against talking plugins?
11:04:05ddaltonhello?
11:04:05linuxstbI've never heard anyone say they're against talking plugins. We have a Google Summer of Code project to make them happen.
11:05:09ddaltonlinuxstb: thought the voice files were an issue, to large for those archoes, which BTW, I think we should drop, but thats just my opinion. doesn't rbspeexenc help that anyway?
11:05:31ddaltonI have plugins talking here...
11:05:46ddaltonbut, only a few, because haven't hacked much code until lately
11:06:01linuxstbPeople were probably against your method of implementing them - I'm guessing you've added plugin voice strings to the core voice file?
11:08:00ddaltonlinuxstb: I didn't ipliment it, I don't have those skills :-), but yeah. it just adds prto type functions in plugin.h and plugin.c for the talk stuff, and uses english.lang. I guess the second voice file could be added, that patdch isn't a waste, but I wouldn't think it would be to big for most targets?
11:08:12ddaltonlinuxstb: can you see?
11:08:25linuxstbYes
11:08:42Llorean"Not too big" doesn't mean it isn't wasteful if it can be done another way better.
11:09:08ddaltonlinuxstb: would by any chance you be able to test a patch for me? the coding isn't great, indenting is wrong and some other messing crap, but could you make sure it speaks the right time in the stopwatch to what is the screen?
11:09:28ddaltonI'm blind, so can't tell if the voice speaks what is on the screen, and I don't trust my own code :-)
11:09:53ddaltonLlorean: whats our current limit?
11:10:45*ddalton voice file is 643 K with 3 or 4 extra strings...
11:10:51Lloreanddalton: It's not an issue of "limits"
11:10:59LloreanIt's an issue of "it should be as small as possible"
11:11:19LloreanIf we can swap it out for plugin voices, we should, rather than saying "sure, we can waste a few bytes here or there"
11:11:32ddaltonerm, well, i believe we can go past 3 mb on most targets, plenty of room I believe, we could just impliment this method, and when someone gets around to fixing the voice file how you devs want, you could change it.
11:11:55amiconnddalton: We can doesn't mean we should. And there are targets where we can't
11:12:08amiconnThere is no sane reason to waste memory when we don't have to
11:12:16Lloreanddalton: Why is there such a hurry to do it the wrong way? All that means is *more* work for whoever tries to fix it later.
11:12:28LloreanSince they have to clean up and remove the old code too.
11:12:42LloreanWhy not just do it right the first time if you're going to put time into it?
11:13:12ddaltonLlorean: Basically, because I don't have the skills
11:13:35ddaltonas I said, this same code will still be usedd, just extra code will be added most likely
11:13:37amiconnThat's not a valid reason
11:13:56 Join Mathiasdm [0] (n=Mathias@78-22-6-189.access.telenet.be)
11:14:12ddaltonwhat, i don't have the skills? well, if someone would help, sure i would do it, but I dunno....
11:14:29ddaltonif I upload the first part of this patch, will it be worth it, or should I just wait?
11:14:47linuxstbddalton: I've already said - someone (midgey) is working on this at the moment, as part of the Google summer of code.
11:15:01amiconnThere is a gsoc prject dealing with this
11:15:27 Quit nuonguy ("This computer has gone to sleep")
11:15:32ddaltonlinuxstb: can I see progress somewhere? and, ill upload my current version if you like,
11:15:34***Saving seen data "./dancer.seen"
11:15:45linuxstbddalton: http://www.rockbox.org/tracker/task/9067
11:15:52ddaltonhey, can anyone who can see test a patch for me when i get back from eating in about 10 mins
11:16:11*ddalton looks
11:16:54 Quit Nibbl ("Ex-Chat")
11:19:53 Join super [0] (i=1000@c-123870d5.021-165-73746f25.cust.bredbandsbolaget.se)
11:22:19 Join pixelma [50] (i=pixelma@rockbox/staff/pixelma)
11:24:52 Quit sacarasc_ (Read error: 104 (Connection reset by peer))
11:25:03ddaltonok back, let me check it out
11:25:23pixelmaddalton: "nice" that someone who doesn't have an Archos says "we should drop them" (and giving no reason). Also speex doesn't help them because they can only play mp3 (and wav) which means the voice file needs to stay mp3 data...
11:26:42pixelmaI still like using the Ondio even though I have two software codec targets now
11:27:16 Join sacarasc [0] (i=sacarasc@cpc1-kemp3-0-0-cust978.lutn.cable.ntl.com)
11:30:09 Join [CBR]Unspoken|w [0] (n=cbr@212.98.160.130)
11:31:19ddaltonok
11:31:23ddaltonso,
11:32:09ddaltonFS #9067 re this talk plugin stuff, is it using a new voice file or something? how does it work? I don't understand his code much.
11:32:41ddaltonpixelma: can you see? if so, do you have time to test a patch?
11:32:46 Join Thundercloud [0] (n=thunderc@84-51-130-71.judith186.adsl.metronet.co.uk)
11:34:12ddaltonhello? am I here?
11:36:27Nico_Pddalton: yes you are
11:36:47 Join herrwaldo [0] (n=waldo@ip-81-11-220-94.dsl.scarlet.be)
11:43:52ddaltoncan anyone here test a talking patch and just make sure it reads the info on the screen in stopwatch plugin?
11:47:39superjfksdjöfa
11:47:42super: |
11:48:03superwierd that i cant change nick just because im muted on one channel
11:49:28Lloreansuper: This channel is for Rockbox discussion. Please try to keep to questions or development.
11:49:53superyes
11:49:55supersorry
11:49:56super: 9
11:50:14superany new luck on the 2g arm crypt?
11:51:44LloreanI have no idea what you're talking about, but all new port work should be tracked in the appropriate wiki pages and forum threads.
11:52:20markunsuper: I don't think anyone (at least from rockbox) is working on it
11:53:25markunsuper: better contact these guys: http://home.gna.org/linux4nano/
11:57:19ddaltondon't worry, it works, fine.
11:57:46*ddalton crosses his finger seconds will work when an hour ticks over, then he has a talking stop watch
12:00
12:05:49 Join BigBambi [0] (i=86ceaf40@gateway/web/ajax/mibbit.com/x-c7fe702f430237e7)
12:13:42 Join ZincAlloy [0] (n=d9eeed3c@gateway/web/cgi-irc/labb.contactor.se/x-bc2ac1de9df5c249)
12:16:16 Join Acksaw [0] (n=omgwtfbb@cpc2-stok5-0-0-cust754.bagu.cable.ntl.com)
12:17:02 Quit linuxstb (Read error: 110 (Connection timed out))
12:19:40ddaltonworks!!!
12:32:28*pondlife finds it slightly amusing that the http://home.gna.org/linux4nano/ guys intend to "synthesize" information... I guess I could help them with that ;)
12:33:33 Quit Acky (Read error: 110 (Connection timed out))
12:37:25 Quit Acksaw (Connection timed out)
12:57:04 Join linuxstb [0] (n=linuxstb@rockbox/developer/linuxstb)
13:00
13:04:14 Join Acksaw [0] (n=omgwtfbb@cpc2-stok5-0-0-cust754.bagu.cable.ntl.com)
13:08:10 Quit Rob2222 (Read error: 60 (Operation timed out))
13:13:26 Quit Zom (Remote closed the connection)
13:13:37 Join Zom [0] (n=zom@h-43-44.A166.cust.bahnhof.se)
13:15:35***Saving seen data "./dancer.seen"
13:19:44 Join MethoS [0] (n=clemens@host-091-096-210-229.ewe-ip-backbone.de)
13:27:35 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
13:28:28alphasynapticso does anyone have any suggestions for getting a Heretic wad working either in the rockdoom plugin or in iDoom. I just cant seem to figure it out.
13:29:34 Join jfc^2 [0] (n=john@dpc691978010.direcpc.com)
13:30:36alphasynapticanyone had any luck getting a Heretic wad working in either iPodLinux or rockbox? anyone at all?
13:30:54 Quit Bensawesome (Read error: 110 (Connection timed out))
13:31:03Nico_Palphasynaptic: I'm not sure that many people have tried
13:31:11alphasynaptico :-(
13:31:25alphasynaptici liked heretic much better than doom back in the day
13:31:38Nico_Pdoom isn't exactly the primary focus in development
13:31:46alphasynaptici'd imagine
13:32:52alphasynaptici had just read that people had gotten Heretic working but I can't seem to and was wondering if anyone who had was on :-)
13:36:18 Join osmodiar [0] (i=d569beba@gateway/web/ajax/mibbit.com/x-30a0040d7b3a58f6)
13:37:09osmodiarHey, I'm trying to use the Rockbox Utility, but I have no idea what a TTS engine is and I can't do anything until I specify one, can anyone help?
13:39:22alphasynapticwhen are you getting that error?
13:41:13osmodiarIt's the only thing in the configuration that isn't set correctly and every time I click ok on the configuration window it tells me something is wrong and reopens the window
13:42:31alphasynapticconfiguration window? all you have to do to install rockbox is extract the .rockbox folder into your mp3 player's root
13:42:46alphasynapticthere shouldn't be a config window
13:42:55alphasynapticand an installer is a waste of time
13:43:04alphasynaptictakes 10 seconds to install manually
13:43:15osmodiarI'll try that, then
13:44:28alphasynapticoh im sorry
13:44:36alphasynapticyou have to use the bootloader too
13:44:43alphasynapticill fetch a link h/o
13:45:02osmodiarThat's the part I didn't particularly want to do, heh
13:45:40alphasynapticdont worry it leaves appleos intact
13:45:48alphasynapticor whichever os for whichever mp3 player
13:45:54alphasynapticand you can always restore
13:46:03 Quit jfc (Read error: 110 (Connection timed out))
13:46:10alphasynapticby forcing disk mode and doing a restore in itunes
13:46:31 Join DerPapst [0] (n=DerPapst@77.20.73.245)
13:46:40osmodiarYeah, I don't much care for restoring (I bought the ipod to install rockbox on it to try it out)
13:46:42amiconnalphasynaptic: " all you have to do to install rockbox is extract the .rockbox folder into your mp3 player's root" <== Not true, unless you happen to have one of the supported (old) archos devices
13:46:59amiconnAll others need an extra step when doing the first-time installation
13:48:01alphasynaptici already corrected muself
13:48:06*alphasynaptic rolls eyes.
13:48:23alphasynaptic*myself
13:49:17alphasynaptichttp://download.rockbox.org/bootloader/ipod/ipodpatcher/win32/ipodpatcher.exe if you are under win32
13:49:43Nico_Palphasynaptic: using the manual install is no longer the recommended way
13:49:59alphasynapticorly?
13:50:04alphasynaptici found it easy as hell
13:50:43Nico_Pwell rbutil is even easier... and osmodiar's question isn't even related to installing rockbox
13:50:46osmodiarThis isn't good... Booted into disk mode and it wants me to format :|
13:50:50alphasynapticand found multiple people saying the installer method is glitchy
13:51:06Nico_Phave you tried it?
13:51:27alphasynapticno but manual install took 10 seconds for me flat no hitches
13:53:20 Join coatman [0] (n=root@ppp-70-245-250-45.dsl.stlsmo.swbell.net)
13:53:28Nico_PI'm not saying the manual install is hard, just that we recommend rbutil now, because it's more user-friendly
13:53:49Nico_Pif you know of glitches, you're welcome to report them ;)
13:53:53alphasynaptici guess
13:54:17alphasynaptic@osmodiar check the manual for your model
13:54:27osmodiarNico_P: ok, trying rbutil, but it complains that I've not configured it when I have
13:54:27alphasynapticfor the two methods of installation
13:55:02Nico_Palphasynaptic: have you tried the device autodetection?
13:55:10Nico_Perr that was for osmodiar, sorry
13:55:15alphasynapticheh
13:55:21alphasynapticwas about to say
13:55:36osmodiarthat all went through well, detected it
13:58:55Nico_Posmodiar: and you can't install?
13:58:55osmodiarnope
13:58:55 Join PaulJam [0] (i=PaulJam_@vpn-3076.gwdg.de)
13:59:08osmodiarnevermind, I fixed it, it seems
13:59:38osmodiar"No Ipods found"
13:59:40Nico_Pstill, it's weird. I'll try to mention it to the guys that work on rbutil
14:00
14:00:25 Join culture [0] (n=none@cpc1-bele3-0-0-cust658.belf.cable.ntl.com)
14:01:15PaulJamosmodiar: which ipod do you have?
14:02:18osmodiar5th gen 30gb
14:03:31PaulJamdo you run RbUtility as administrator?
14:03:47osmodiarjust as the usual user
14:04:04osmodiarbut I think I've broken the Ipod anyway now...
14:04:32PaulJamfor the bootloader installation it need administrative rights, not sure if this is also true for the device detection.
14:04:52PaulJama working apple firmware is also neccessary
14:05:39 Quit Thundercloud (Remote closed the connection)
14:05:52osmodiarinstalling itunes to restore the ipod to how it was
14:07:15 Quit coatman (Read error: 104 (Connection reset by peer))
14:07:24alphasynapticwhy'd the ipod linux page get suspended?
14:07:51PaulJamask in #ipodlinux
14:08:36alphasynaptico my bad
14:08:40alphasynaptichave both channels open
14:08:43alphasynapticheh
14:10:23 Join massiveH [0] (n=massiveH@pool-71-187-1-26.nwrknj.fios.verizon.net)
14:13:19osmodiaripod restored, now if only I could get rockbox working, heh
14:17:16osmodiarok, tried rbutil again and it magically started to work
14:18:10 Join kugel [0] (n=chatzill@unaffiliated/kugel)
14:18:45Nico_PBagder: here§
14:18:51osmodiaris it right that there are no themes to install via rbutil? I think I heard something about themes needed to be changed?
14:19:09Nico_Posmodiar: yeah they're out of date ATM
14:19:45kugelSlasheri: ping
14:20:18Nico_PBagder: I've just noticed that there are some svn repos I can check out from work using an http:// URL, but rockbox's fails
14:21:03kugelJdGordon: hey. Are you still interested in the pf updates (sorry for the inactivity, I was in spain the past 2 weeks)
14:21:19 Quit ddalton ("leaving")
14:21:45kugelIt'd be nice of everyone who could test http://www.rockbox.org/tracker/task/8335
14:23:20alphasynapticoh i fixed one of the old themes to work with the new viewer system. is there a way to submit the fixed .wps file?
14:23:35 Join UncleRemus [0] (n=caj@78-69-154-184-no176.tbcn.telia.com)
14:24:14kugelalphasynaptic: In the wps gallery for your player
14:24:30alphasynapticalright
14:24:50kugelalphasynaptic: http://www.rockbox.org/twiki/bin/view/Main/WpsGallery
14:25:11LloreanMake sure the license allows redistribution
14:25:28 Quit nplus (Remote closed the connection)
14:25:48alphasynapticgood point
14:26:39 Quit massiveH ("Leaving")
14:26:43 Join Arathis [0] (n=doerk@p508A6FCD.dip.t-dialin.net)
14:27:58 Join nplus [0] (n=nplus@141.25.globcom.net)
14:28:16alphasynapticyeah i guess i can just have to credit him for the work. i only edited like 10 bytes of text lmao
14:28:55alphasynapticim kinda surprised more themes havent been fixed? when did they all get broken? fairly recently?
14:31:09LloreanIt's not an issue of credit.
14:31:21LloreanTechnically if they haven't released their theme under a suitable license, you can't make any changes to it.
14:31:32LloreanWhich is unfortunate, but the proper solution is to get them to license it properly.
14:31:53alphasynapticits CC3
14:31:58alphasynapticso it is an issue of credit
14:32:06kugelalphasynaptic: basically all themes got broken by a single commit some weeks ago. And since rockbox-themes.org is closed for submussion, updates themes can not reach the user as easily as before
14:32:10alphasynaptici have to attribute to work to the origincal author
14:32:21alphasynapticdamn typos
14:32:29alphasynaptic*original *the
14:32:51alphasynapticah
14:37:55 Quit osmodiar ("http://www.mibbit.com ajax IRC Client")
14:41:20 Join Thundercloud [0] (n=thunderc@84-51-130-71.judith186.adsl.metronet.co.uk)
14:44:05 Join Genre9mp3 [0] (n=yngwiejo@rockbox/contributor/Genre9mp3)
14:45:09 Join LambdaCalculus37 [0] (i=44a0430f@gateway/web/ajax/mibbit.com/x-36686bafb2e2bc12)
14:47:01 Join Bensawsome [0] (n=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
14:50:25alphasynapticwell i can't get uploader at the cleansoap mirror to take my package
14:50:36alphasynapticanyone interested in the fixed Bloodstained theme?
14:51:10DerPapstput it on the wiki? (dunno if that's wanted though :-P)
14:51:24pondlifealphasynaptic: Which device?
14:51:34DerPapstipod video i guess
14:51:36alphasynaptic5th gen vid
14:51:42DerPapstah :D
14:52:22pondlifealphasynaptic: Pop it on http://www.rockbox.org/twiki/bin/view/Main/WpsIpod5g ?
14:54:04alphasynapticchecking that out
15:00
15:03:10alphasynapticaccess denied
15:03:16alphasynapticmade an account already
15:03:22alphasynaptictried editing the wiki page
15:03:26alphasynapticnada
15:04:18alphasynapticbtw i'll fix a few themes to work with the new Rockbox for anyone who can help me get Heretic working on my iPod
15:05:10 Join coatman [0] (n=Jacob@ppp-70-245-250-45.dsl.stlsmo.swbell.net)
15:15:36***Saving seen data "./dancer.seen"
15:16:02 Join borges [0] (n=bruges@brln-4d0c360f.pool.mediaWays.net)
15:17:18sacaraschmmm, installed rockbox, worked well for a bit, now my ipod won't turn on
15:17:36alphasynapticu try a soft reset?
15:17:38linuxstbHold MENU+SELECT together for a few seconds (maybe up to 20-30)
15:17:49alphasynapticexactly
15:18:04sacarascthat got it, thanks
15:18:46sacarascby the way, this is osmodiar on a different computer (but still as clueless)
15:20:20LambdaCalculus37alphasynaptic: By the way, no internet slang on this channel, and no text-speak.
15:20:32alphasynapticoh my bad
15:23:12 Quit EspeonEefi ("ã•よãªã‚‰")
15:25:46 Quit amiconn (Nick collision from services.)
15:25:50peturJdGordon: you here?
15:25:53 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
15:25:53 Join amiconn [50] (n=jens@rockbox/developer/amiconn)
15:26:09 Quit markun (verne.freenode.net irc.freenode.net)
15:26:09NSplitverne.freenode.net irc.freenode.net
15:26:09 Quit freqmod_qu (verne.freenode.net irc.freenode.net)
15:26:20 Join markun [0] (n=markun@2001:610:1908:8000:250:daff:fe47:4a8f)
15:26:23sacarascNico_P, alphasynaptic, linuxstb, and anyone I forgot, thanks for helping me today :)
15:26:33sacarascand sorry for the smilie
15:27:02GodEater_smilies are allowed
15:27:15GodEater_just silly "text speak" abbreviations are what we object to
15:27:37alphasynapticbut do da street talk be acceptable yo?
15:27:44alphasynaptichad to sorry
15:27:50LambdaCalculus37Yes, so no "y0 g1mm3 d4 r0mZ" crap here. ;)
15:28:23alphasynapticroms for me?
15:28:54alphasynapticanyone looking for roms in an irc channel needs to learn to use google
15:30:17LambdaCalculus37Actually, anyone looking for ROMs shouldn't come here asking us.
15:30:46alphasynaptici know. as i pointed out google will be happy to point you in the right direction.
15:31:22 Join MethoS- [0] (n=clemens@host-091-096-212-234.ewe-ip-backbone.de)
15:31:47alphasynapticroms are not illegal if it is no longer viable to buy a console or the media. they are also legal if you own the actual media
15:32:18 Quit Thundercloud (Remote closed the connection)
15:33:08 Nick borges is now known as borges|afk (n=bruges@brln-4d0c360f.pool.mediaWays.net)
15:33:25 Quit MethoS (Read error: 60 (Operation timed out))
15:39:12GodEater_"roms are not illegal if it is no longer viable to buy a console or the media." <−− this is not true at all
15:39:25GodEater_they are only legal if you own the originals
15:39:32LambdaCalculus37Exactly.
15:39:43LambdaCalculus37You are allowed to make a backup of media that you own.
15:40:07PaulJamnot in every country
15:40:18LambdaCalculus37I own physical copies of each Game Boy game I have dumped to my DAPs.
15:40:30LambdaCalculus37I made the dumps myself.
15:45:30 Quit Bensawsome ("The awsome is gone :(")
15:46:24 Join Bensawsome [0] (n=Bensawso@gateway.learn.k12.ct.us)
15:47:04 Quit k4y (Remote closed the connection)
15:47:43 Join k4y [0] (n=jackass@dsl-241-200-51.telkomadsl.co.za)
15:49:41 Join alpha367 [0] (n=alphasyn@dpc6682127130.direcpc.com)
15:49:42 Quit alphasynaptic (Read error: 104 (Connection reset by peer))
15:50:12 Quit GodEater_ ("http://www.mibbit.com ajax IRC Client")
15:50:12 Quit perrikwp ("http://www.mibbit.com ajax IRC Client")
15:50:12 Quit BigBambi ("http://www.mibbit.com ajax IRC Client")
15:50:13 Quit LambdaCalculus37 (Read error: 104 (Connection reset by peer))
15:50:13 Quit Nico_P (Read error: 104 (Connection reset by peer))
15:50:34 Quit Arathis (Read error: 110 (Connection timed out))
15:53:37 Join XavierGr [0] (n=xavier@rockbox/staff/XavierGr)
15:54:37 Join LambdaCalculus37 [0] (i=44a0430f@gateway/web/ajax/mibbit.com/x-bf4119262412133a)
15:54:52 Quit k4y (Remote closed the connection)
15:55:14 Join k4y [0] (i=korpse@dsl-241-200-51.telkomadsl.co.za)
15:56:26 Quit Nibbl (Read error: 113 (No route to host))
15:56:56 Join __GodEater [0] (i=c2cbc962@gateway/web/ajax/mibbit.com/x-ed33a37508b831c1)
15:57:14 Quit GodEater (Nick collision from services.)
15:57:19 Nick __GodEater is now known as GodEater (i=c2cbc962@gateway/web/ajax/mibbit.com/x-ed33a37508b831c1)
15:57:40 Join GodEater_ [0] (n=ge@rockbox/staff/GodEater)
15:58:38 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
16:00
16:01:33JdGordonpetur: hey, wassup?
16:02:19peturwas going to ask if you already had an FS task for the recscreen, but went ahead and created 9208
16:02:27peturfor my work in progress...
16:02:38JdGordoni didnt, and cool
16:02:58peturit is quite functional but the code is still a bit of a mess
16:03:15peturand some features like trigger need testing
16:03:18 Quit Nibbl (Remote closed the connection)
16:03:41 Join daurn [0] (n=daurnima@unaffiliated/daurnimator)
16:03:45 Join Nico_P [0] (i=53915df2@gateway/web/ajax/mibbit.com/x-57af98ab8d145101)
16:03:55JdGordonI dont use the rec screen but ill have a look at the patch when I get a chance (unless it oes in before hand)
16:05:35NHeal(timeout) verne.freenode.net irc.freenode.net
16:05:49peturmight have an updated patch in a few hours ;)
16:07:27 Quit k4y (Remote closed the connection)
16:08:15 Join k4y [0] (i=korpse@dsl-241-200-51.telkomadsl.co.za)
16:09:45alpha367fixing themes for people if anyone wants me to one for me
16:09:50alpha367*do one
16:09:56 Join Nibbl [0] (n=Nibbler@91-67-150-33-dynip.superkabel.de)
16:11:18sacaraschow does one add all the music on an ipod to the current playlist and then shuffle play it?
16:11:52GodEatersacarasc: have you read the friendly manual ?
16:12:09sacarasci'm reading it, but i get distracte oooh shiny
16:12:58 Join massiveH [0] (n=massiveH@pool-71-187-1-26.nwrknj.fios.verizon.net)
16:14:35sacarascthe Database menu seems to be different than what is described in the manual
16:16:35LambdaCalculus37How so?
16:16:47LambdaCalculus37If there are errors in the manual, they'll be taken care of.
16:18:09sacarascwhen I go to the Database menu, I get things like "Album" "Artist", but in the manual http://download.rockbox.org/manual/rockbox-ipodvideo/rockbox-buildch4.html#x7-480004.2.3 it's totally different (or I'm looking in the wrong place, which is probably the case)
16:19:27alpha367album and artist are what it shows for me
16:19:44PaulJamthis is the actual database. the database menu which is described in the manual can be found in the settings (or in the context menu of the database entry of the main menu)
16:19:45LambdaCalculus37You're looking in the wrong place. What you're reading is the database context menu.
16:20:02sacarascah, thanks
16:25:57 Quit coatman (Read error: 104 (Connection reset by peer))
16:28:42 Quit alpha367 (Read error: 104 (Connection reset by peer))
16:28:45PaulJambtw. the h300 online manual seems to have a wrong screenshot. the vkeyboard screenschot in chapter 4.1.3 has a 320x240 resolution.
16:28:46 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
16:32:37 Quit alphasynaptic (Read error: 104 (Connection reset by peer))
16:33:07 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
16:33:56 Quit alphasynaptic (Read error: 104 (Connection reset by peer))
16:33:59 Quit Mathiasdm ("Invisible Internet Project: http://www.i2p2.de")
16:34:01PaulJamthe image in the sources (/manual/rockbox_interface/images/ss-virtual-keyboard-220x176x16.png) is also too big.
16:34:29GodEaterwhich is probably why the resolution is wrong in the manual
16:34:58PaulJamwell, it could have been a cache issue or something like that
16:35:21 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
16:35:57 Quit alphasynaptic (Client Quit)
16:36:08GodEaternot for building the manual I don't think
16:36:16GodEaterthere is no cache issue when checking out over svn
16:36:36PaulJami mean on my side (browser cache)
16:37:50 Join AndyI [0] (n=pasha_in@212.14.205.32)
16:38:22 Quit Nibbl (Read error: 113 (No route to host))
16:39:39 Quit k4y (Remote closed the connection)
16:39:56 Join k4y [0] (i=korpse@dsl-241-200-51.telkomadsl.co.za)
16:40:02 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
16:40:26alphasynapticfixing themes for anyone who wants it done send me a private message with the name of the theme
16:40:56 Join coatman [0] (n=root@ppp-70-245-250-45.dsl.stlsmo.swbell.net)
16:43:34 Quit alphasynaptic (Read error: 54 (Connection reset by peer))
16:43:44 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
16:46:06 Quit Genre9mp3 ()
16:48:03 Nick JdGordon is now known as JdGordon|zzz (n=jonno@rockbox/developer/JdGordon)
16:55:26 Join mibi99 [0] (i=d31d891c@gateway/web/ajax/mibbit.com/x-e0a8d8cfc4b4e004)
16:55:36 Join Rob2222 [0] (n=Miranda@p4FDCC93D.dip.t-dialin.net)
17:00
17:02:06 Quit mibi99 ("http://www.mibbit.com ajax IRC Client")
17:04:15 Join toffe82 [0] (n=chatzill@h-74-0-180-178.snvacaid.covad.net)
17:05:11 Join faemir [0] (n=faemir@88-106-180-165.dynamic.dsl.as9105.com)
17:10:02 Join MethoS_ [0] (n=clemens@host-091-096-211-186.ewe-ip-backbone.de)
17:11:40 Nick borges|afk is now known as borges (n=bruges@brln-4d0c360f.pool.mediaWays.net)
17:15:12 Quit nplus (Read error: 104 (Connection reset by peer))
17:15:23 Join SerpensV [0] (n=SerpensV@nat2.btsnet.pl)
17:15:38***Saving seen data "./dancer.seen"
17:20:17 Quit ZincAlloy ("CGI:IRC (EOF)")
17:23:49 Quit MethoS- (Read error: 113 (No route to host))
17:26:46 Join alpha367 [0] (n=alphasyn@dpc6682127130.direcpc.com)
17:26:47 Quit alphasynaptic (Read error: 104 (Connection reset by peer))
17:29:01 Part SerpensV ("Konversation terminated!")
17:29:08 Quit alpha367 (Read error: 104 (Connection reset by peer))
17:29:36 Join alphasynaptic [0] (n=alphasyn@dpc6682127130.direcpc.com)
17:29:57 Part alphasynaptic
17:32:04 Join nplus [0] (n=nplus@141.25.globcom.net)
17:34:24 Join freqmod_qu [0] (n=quassel@2001:700:300:1800:213:d3ff:fee9:5ed0)
17:34:46 Quit petur ("real life")
17:39:52 Join Kinky [0] (n=Kinky@12-217-215-99.client.mchsi.com)
17:40:18 Part Kinky
17:42:50 Quit massiveH ("Leaving")
17:44:59 Join domonoky [0] (n=Domonoky@rockbox/developer/domonoky)
17:51:00 Join Vorador [0] (n=tomas@lan-84-240-35-19.vln.skynet.lt)
17:58:38 Quit suom1 ("Reconnecting")
17:58:40 Join suom1 [0] (i=markus@irssi.mobi)
17:59:02 Quit suom1 (Client Quit)
17:59:08 Join suom1 [0] (i=markus@viitamaki.net)
18:00
18:10:33 Join slacker_nl [0] (n=slakkie@slakkie.euronet.nl)
18:10:35slacker_nlhello
18:10:48DerPapsto/
18:11:49 Join Casainho [0] (n=chatzill@bl10-230-31.dsl.telepac.pt)
18:12:01Casainhohello Rockbox people :-)
18:12:18CasainhoI would like to know if USB stack is working, and in what models?
18:13:57domonokyusb stack works, but still has some problems, so its not enabled by default..
18:14:26 Join bertrik [0] (n=bertrik@245-013-045-062.dynamic.caiway.nl)
18:14:40Casainhousb_serial.c −− whats the purpose? what would this code do?
18:14:56domonokyi dont know on which targets it works, at least ipods, sansa perhaps gigabeat s ?
18:14:56CasainhoRS232 over USB?
18:15:05domonokyyes, serial over USB.
18:15:40Casainhoand "usb_storage.c", mass storage device?
18:16:13domonokyyes, i think thats the code for the ums (universal mass storage) mode
18:16:43linuxstbCasainho: Not all devices need a software USB stack though - many have a hardware USB<->ATA bridge chip, which Rockbox supports.
18:17:24DerPapstdomonoky: the usb stack works pretty good on the beast.
18:17:26Casainhonice :-) −− but I would like to know if that USB stack code needs drivers... let's say I would like if It works on a specific MCU...
18:17:48DerPapstdomonoky: and it's enabled there by default too :)
18:17:55CasainhoDerPapst: where is the drivers for USB to beast?
18:17:56linuxstbYes, the USB stack is specific to one particular USB chip (the iMX31, but the same USB is used in the PortalPlayer PP502x chips)
18:18:02domonokyCasainho: sure it needs a driver for the specific usb chip in the player..
18:18:36Casainhodomonoky: where can I find that driver on source code? - I am looking but I can't find...
18:18:44DerPapstCasainho: it's more or less the same for iPods and the supported sansas
18:19:35linuxstbCasainho: firmware/target/arm/usb-drv-arc.c
18:20:12Casainhookok - thanks - I will look at it, I am curious since last time I didn't seen USB stack :-)
18:20:34bertrikCan all HD based player still spin up the disk (to save some data) when rockbox shuts down due to low voltage?
18:22:21kugelbertrik: I can't compile a sim when I apply the simplify battery bench patch
18:22:59bertrikkugel: I think the problem is ata_disk_is_active, right?
18:23:10domonokybertrik: i think there could be situations, where it cant spinup the disk before shutdown (very low battery) ..
18:23:39kugelbertrik: No, "unregistred_ata_idle_func" isn't declared (IIRC)
18:23:49bertrikdomonoky, but isn't the playlist control list also saved on shutdown?
18:24:24kugelbertrik: there's a #define of this function for the sim, but it doesn't work somehow
18:24:34 Join MethoS [0] (n=clemens@host-091-096-211-077.ewe-ip-backbone.de)
18:24:39bertrikhmm, make gzip stopped working for me on ubuntu 8.04
18:24:54domonokybertrik: yes, but it doesnt really hurt if it cant save it..
18:25:02 Quit Casainho ("ChatZilla 0.9.83 [Firefox 3.0.1/2008070208]")
18:27:00bertrikdomonoky, I'm working on a simplified battery bench and someone suggested to have a special case in case battery < 10% but I don't like special cases like that and rather rely on choosing the shutdown voltage such that it is still possible to save the bench data if the battery gets low
18:27:41bertrikI don't like to add a lot of special cases, the old battery bench was a spiderweb of special cases and exceptions and I'd like to make a clean break with that
18:28:21bertrikkugel, I'll update the patch to make it work in a sim build
18:28:27 Quit Nico_P ("http://www.mibbit.com ajax IRC Client")
18:28:28 Quit kugel (Remote closed the connection)
18:29:55 Join Nico_P [0] (i=53915df2@gateway/web/ajax/mibbit.com/x-45b00d42c3db7c49)
18:30:41Nico_PBagder: (for the logs) when trying to checkout rockbox's svn through HTTP, I get "svn: Server sent unexpected return value (405 Method Not Allowed) in response to PROPFIND request for '/rockbox/trunk' "
18:30:48 Join kugel [0] (n=chatzill@unaffiliated/kugel)
18:30:53domonokythe problem with the shutdown voltage is that it is not exact, it depends on the battery, the age of the battery and on the current power consumtion.. and if you set the shutdown threshold too high, you loose too much runtime.
18:31:02kugelbertrik: thanks
18:31:04Nico_PI have managed to checkout some other svn repos that way
18:31:12*Nico_P goes home now
18:31:18 Quit Nico_P (Client Quit)
18:31:54 Join BigBambi [0] (n=Alex@rockbox/staff/BigBambi)
18:37:12 Quit coatman (Remote closed the connection)
18:37:56 Join nuonguy [0] (n=john@c-24-6-187-202.hsd1.ca.comcast.net)
18:41:17 Quit MethoS_ (Read error: 113 (No route to host))
18:45:36 Quit LambdaCalculus37 ("http://www.mibbit.com ajax IRC Client")
18:45:44 Join Nico_P [50] (n=nicolas@rockbox/developer/NicoP)
18:51:52 Nick ThomasG33K_away is now known as ThomasG33K (i=reahoi@fuzzy.dreamhaze.net)
18:52:21 Join LambdaCalculus37 [0] (i=44a0430f@gateway/web/ajax/mibbit.com/x-f822c445bc75f32c)
18:53:21 Part ThomasG33K
18:55:16 Join Thundercloud [0] (n=thunderc@84-51-130-71.judith186.adsl.metronet.co.uk)
18:55:34 Quit linuxstb (Read error: 113 (No route to host))
18:57:53 Join Horscht [0] (n=Horscht@xbmc/user/horscht)
18:59:57amiconnbertrik: Seems like rasher's builzip.pl speed improvements broke 'make gzip' and 'make bzip2'
19:00
19:00:16amiconn'make 7zip' (and of course 'make zip' and 'make fullzip') work
19:00:39rasherOh dear. Didn't consider those.
19:00:43bertrikamiconn, ok, I'll use those in the meantime
19:00:51*amiconn should switch to 'make 7zip'
19:00:57rasherI'll have a look later tonight
19:01:16amiconnSaves quite a lot on archive size, and I do use (gui) 7zip for unzipping anyway
19:01:37 Join coatman [0] (n=Jacob@ppp-70-245-250-45.dsl.stlsmo.swbell.net)
19:01:49amiconnrasher: Hint: Both calls work *somewhat*
19:01:50rasherDitching (pk)zip would make utf8 language-names possible
19:02:02rasheramiconn: I assume it's a matter of removing -r?
19:02:32amiconnThey do create a rockbox.tar.gz resp. rockbox.tar.bz2, which however contain the rockbox binary *only*
19:02:38rasherEh, there's no -r.. erm.
19:02:39*bertrik suddenly spot a file called '-r'
19:02:41amiconnThere is also a file named '-r'
19:02:46amiconn..created
19:03:01rasherOh right, there is. I don't think that's even needed for zip or 7zip
19:04:07 Join miepchen^schlaf [0] (n=miepchen@p54BF763C.dip.t-dialin.net)
19:04:37rasherThink I'll just branch based on ziptool
19:05:27 Join Mteee [0] (n=mtarek16@41.233.150.217)
19:05:37 Nick Mteee is now known as MTee_ (n=mtarek16@41.233.150.217)
19:06:39bertrikamiconn, wow, my .zip is 2.0 MB, the .7z is 1.3 MB, saves quite a lot indeed (but takes a little longer)
19:09:32 Join EspeonEefi [0] (i=espeonee@30-7-18.wireless.csail.mit.edu)
19:10:27 Join Mathiasdm [0] (n=Mathias@vpnh237.ugent.be)
19:14:34 Join massiveH [0] (n=massiveH@pool-71-187-1-26.nwrknj.fios.verizon.net)
19:15:43***Saving seen data "./dancer.seen"
19:18:32 Quit Thundercloud (Remote closed the connection)
19:27:25 Join ompaul [0] (n=ompaul@gnewsense/friend/ompaul)
19:33:27 Join linuxstb [0] (n=linuxstb@rockbox/developer/linuxstb)
19:42:38 Join bluebrother [0] (n=dom@rockbox/staff/bluebrother)
19:55:14 Join MethoS- [0] (n=clemens@host-091-096-211-053.ewe-ip-backbone.de)
19:57:41 Join sacarasc_ [0] (i=sacarasc@cpc1-kemp3-0-0-cust978.lutn.cable.ntl.com)
19:58:59 Quit sacarasc (Read error: 104 (Connection reset by peer))
20:00
20:00:27 Nick sacarasc_ is now known as sacarasc (i=sacarasc@cpc1-kemp3-0-0-cust978.lutn.cable.ntl.com)
20:00:35 Join MethoS_ [0] (n=clemens@91.97.240.29)
20:05:51 Quit MethoS_ (Read error: 60 (Operation timed out))
20:06:16 Join MethoS_ [0] (n=clemens@91.97.240.8)
20:08:11 Quit jfc^2 (Read error: 104 (Connection reset by peer))
20:08:11 Quit john_targ (Read error: 104 (Connection reset by peer))
20:09:06 Quit MethoS (Read error: 110 (Connection timed out))
20:14:11 Quit MethoS- (Read error: 110 (Connection timed out))
20:14:31 Quit miepchen^schlaf ()
20:21:34 Join MethoS [0] (n=clemens@91.97.240.29)
20:21:56 Join J [0] (n=john@cpc2-mfld9-0-0-cust297.nott.cable.ntl.com)
20:22:27 Nick J is now known as Guest27914 (n=john@cpc2-mfld9-0-0-cust297.nott.cable.ntl.com)
20:24:36 Join miepchen^schlaf [0] (n=miepchen@p54BF763C.dip.t-dialin.net)
20:24:42 Quit kugel (Remote closed the connection)
20:24:45 Nick Guest27914 is now known as morrijr (n=john@cpc2-mfld9-0-0-cust297.nott.cable.ntl.com)
20:26:19 Join hannesd [0] (n=light@p5B162D3E.dip0.t-ipconnect.de)
20:27:24 Quit nuonguy ("This computer has gone to sleep")
20:27:46 Join kugel [0] (n=chatzill@unaffiliated/kugel)
20:27:50 Join MethoS- [0] (n=clemens@host-091-096-212-066.ewe-ip-backbone.de)
20:28:27 Quit Bensawsome ("The awsome is gone :(")
20:28:36kugelbertrik: How's ata_disk_is_active supposed to be replaced? Let's say I have a plugin which uses this?
20:29:06 Join Bensawsome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
20:29:23 Join perrikwp [0] (i=d1a8d351@gateway/web/ajax/mibbit.com/x-e6cfae39dd2d7ec9)
20:29:54 Quit blithe (Read error: 104 (Connection reset by peer))
20:29:55bertrikkugel, a plugin registers a callback to be notified when the disk is spinning but idle instead of polling for it
20:30:05 Join blithe [0] (n=blithe@stiletto.djblithe.com)
20:30:39 Quit pondlife ("Leaving.")
20:30:51 Quit perrikwp (Client Quit)
20:31:16 Quit XavierGr (Nick collision from services.)
20:31:27 Join XavierGr [0] (n=xavier@rockbox/staff/XavierGr)
20:32:37 Join perrikwp [0] (i=d1a8d351@gateway/web/ajax/mibbit.com/x-ae3d70ccd910d739)
20:34:39kugelbertrik: You patch doesn't fix the battery bench problems on e200, does it (maybe as a side-effect)?
20:35:08bertrikkugel, what problems?
20:35:13 Quit MethoS_ (Connection timed out)
20:35:22kugelbertrik: The problems reported in the related tast
20:35:24kugeltask*
20:36:19 Join MethoS_ [0] (n=clemens@91.97.242.109)
20:36:23kugelbertrik: Well, it didn't even start measuring when I tried it yesterday
20:36:32bertrikI tested it with a c200 and e200 and it worked fine for me
20:36:41 Join petur [50] (n=petur@rockbox/developer/petur)
20:37:14kugelbertrik: Ok, cool
20:37:23bertrikI'll try the very latest version on my e200 again
20:37:51kugelbertrik: Will do. The comment of pixelma in the related task describes the problem
20:38:51kugelbertrik: I didn't try a full bench with your patch yet. The problem is with the svn version
20:42:01 Quit MethoS (Read error: 113 (No route to host))
20:42:36 Join jfc [0] (n=john@dpc691978010.direcpc.com)
20:43:10 Join MethoS [0] (n=clemens@host-091-096-212-216.ewe-ip-backbone.de)
20:44:55 Quit Bensawsome (Nick collision from services.)
20:45:06 Join Bensawesome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
20:46:09 Quit MethoS- (Connection timed out)
20:47:46 Quit kugel ("ChatZilla 0.9.83 [Firefox 3.0.1/2008070208]")
20:49:47 Join kugel [0] (n=chatzill@unaffiliated/kugel)
20:50:38 Quit Horscht ("I am root. If you see me laughing, you better have a backup")
20:52:44 Quit massiveH ("Leaving")
20:53:14 Quit blithe (Read error: 110 (Connection timed out))
20:54:46 Join blithe [0] (n=blithe@stiletto.djblithe.com)
20:57:03 Join Horscht [0] (n=Horscht@xbmc/user/horscht)
20:58:12 Quit MethoS_ (Read error: 113 (No route to host))
20:58:17 Join neddy [0] (n=john@nat/sun/x-fa12acc9f7bdb598)
21:00
21:00:05 Nick Bensawesome is now known as Bensawsome (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
21:13:08 Quit Bensawsome (Nick collision from services.)
21:13:19 Join Bensawesome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
21:15:44***Saving seen data "./dancer.seen"
21:16:41 Join borges_ [0] (n=bruges@e178019213.adsl.alicedsl.de)
21:17:17 Join Bensawsome [0] (n=Bensawso@gateway.learn.k12.ct.us)
21:19:51 Quit Bensawesome (Nick collision from services.)
21:23:31 Quit Bensawsome (Nick collision from services.)
21:23:42 Join Bensawesome [0] (n=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
21:24:37 Quit Llorean (Read error: 110 (Connection timed out))
21:24:43 Quit Bensawesome (Client Quit)
21:25:12 Join Bensawsome [0] (n=Bensawso@gateway.learn.k12.ct.us)
21:27:31 Join Makuseru [0] (n=max@210.113.40.24.aeneasdsl.com)
21:35:10 Quit borges (Read error: 110 (Connection timed out))
21:36:41 Quit super (Read error: 110 (Connection timed out))
21:37:33 Join itcheg [0] (n=IceChat7@h-67-100-146-176.nycmny83.covad.net)
21:52:13 Quit sbhsu (Read error: 104 (Connection reset by peer))
21:52:16 Join sbhsu [0] (n=a6530466@Zion.dorm.au.edu.tw)
21:53:01 Nick borges_ is now known as borges|afk (n=bruges@e178019213.adsl.alicedsl.de)
21:59:44 Quit LambdaCalculus37 ("http://www.mibbit.com ajax IRC Client")
22:00
22:01:57 Quit nplus (Read error: 110 (Connection timed out))
22:02:57 Quit Makuseru (Read error: 104 (Connection reset by peer))
22:06:13 Quit desowin ("KVIrc 4.0.0 Insomnia http://www.kvirc.net/")
22:15:13 Quit borges|afk ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]")
22:15:42 Quit Bensawsome ("The awsome is gone :(")
22:17:11 Join muck [0] (n=4fd3d501@gateway/web/cgi-irc/labb.contactor.se/x-fce461047e902baa)
22:18:53 Quit muck (Client Quit)
22:19:14 Join massiveH [0] (n=massiveH@pool-71-187-1-26.nwrknj.fios.verizon.net)
22:23:08 Quit kugel (Remote closed the connection)
22:23:26 Join fml [0] (n=4fd3d501@gateway/web/cgi-irc/labb.contactor.se/x-7447d49134b99fe8)
22:23:29 Quit davina (Remote closed the connection)
22:23:35fmlNico_P: ping
22:23:49Nico_Pfml: pong
22:24:26Nico_Pfml: last time I looked at your patch I was pondering whether it was a good idea or not ;)
22:24:54fmlNico_P: I'm re-reading the code in wps_parser.c and have a question. Is the failure code 'PARSE_FAIL_COND_INVALID_PARAM' thought only for conditionals? Or does 'cond' mean 'failure condition'?
22:25:13Nico_Pit means conditional
22:25:58fmlNico_P: but it was used (at least once) not in conditional. And I used it all the way to signal an invalid parameter value.
22:26:05 Join davina [0] (n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com)
22:26:12 Quit Mathiasdm ("Invisible Internet Project: http://www.i2p2.de")
22:26:20Nico_Phmm that's not what it was meant for, but I guess it was extended
22:27:39fmlNico_P: and I've gone further that way (in the patch) :-) I used it instead of WPS_ERROR (why wasn't it included in the enum?)
22:29:29Nico_Pyou mean WPS_ERROR_INVALID_PARAM?
22:30:06 Quit hannesd (Read error: 148 (No route to host))
22:30:46fmlNico_P: yes
22:31:31Nico_Pwell, currently wps_parse and the special parse functions don't return the same thing
22:31:50Nico_Pthat's why I'm still not convinced your patch is the way to go
22:32:36fmlNico_P: I unified that (I hope)
22:37:34fmlNico_P: btw when I implemented the other patch I was pleasantly surprised by how smart the conditional handling is! I.e. how it works depending on the numeric value returned.
22:39:17Nico_Phehe, thanks :)
22:40:25 Join kugel [0] (n=chatzill@unaffiliated/kugel)
22:40:38 Join MethoS- [0] (n=clemens@host-091-096-209-100.ewe-ip-backbone.de)
22:40:43fmlNico_P: the comment for 'evaluate_conditional' (in gwps-common.c) isn't quite correct
22:41:32Nico_Pbecause it returns a bool and not an int?
22:42:17fmlIIUC the func sets the value pointed to by the param to what is described in the comment. But it returns a bool.
22:44:16Nico_Pyes, it was changed in http://svn.rockbox.org/viewvc.cgi/trunk/apps/gui/gwps-common.c?view=diff&r1=15656&r2=15657 ... I forgot to update the comment
22:44:41Nico_Pthe param can still be considered a return value though :p
22:48:03 Quit massiveH ("Leaving")
22:48:16Nico_Pfml: by "the other patch", did you mean wps_parser2.patch or another one?
22:48:59fmlNico_P: no, I mean the patch for the skip length, don't remember the FS number
22:49:18Nico_Pah, to add a WPS tag?
22:50:12fmlyes. That also corrects reading at 0x0 and evaluates tags as 0-based (as it should be), not 1-based
22:51:38Nico_PFS #8965, right?
22:52:22Nico_Pintval is 1-based on purpose
22:53:19Nico_PI can't exactly remember a compelling reason for that, but I remember it was a conscious decision
22:54:12 Quit MethoS (Read error: 110 (Connection timed out))
22:54:25 Join Battousai [0] (n=bryan@gentoo/developer/battousai)
22:54:28fmlNico_P: the numeric value is still 1-based. But the string produced was also 1-based whie it should be 0-based (according to e.g. CustomWPS)
22:54:36Nico_Pah, right
22:54:54Nico_Pclearly I didn't look at the patch long enough :)
22:56:14 Quit domonoky (Read error: 54 (Connection reset by peer))
23:00
23:00:24 Join stripwax [0] (n=Miranda@87-194-34-169.bethere.co.uk)
23:01:14fmlNico_P: I can't see a reason to have it 1-based. But if it's the convention now it's also OK.
23:02:35Nico_Pit's more adapted to how the conds are done in the token array... 0 is for other cases
23:05:14fmlNico_P: the main thing is that we have a 'specification' and all tags stick to it.
23:09:04 Join desowin [0] (n=desowin@atheme/member/desowin)
23:09:24 Join webguest24 [0] (n=63e4482a@gateway/web/cgi-irc/labb.contactor.se/x-26e5b671b4975ccc)
23:09:42webguest24Is anyone here I need some support =3
23:09:55webguest24Is anyone here I need some support =3
23:10:11linuxstbJust ask...
23:10:28webguest24The ipod patcher thing while installing Rockbox is stuck at the second step
23:10:35webguest24Is it supposed to take like 10 minutes because that's how long it's been stuck there
23:10:37webguest24x_x
23:10:50webguest24It says moving images to create new room for firmware
23:10:55webguest24And it's been there for quite a while
23:11:03webguest24I'm trying to install Rockbox on my 80GB iPod
23:12:14 Quit webguest24 (Client Quit)
23:13:35*bluebrother wonders why there is still so much people using ipodpatcher instead of rbutil :/
23:13:54*linuxstb tries not to be offended ;)
23:15:07 Join Bensawsome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
23:15:46***Saving seen data "./dancer.seen"
23:17:56*petur wonders how to accept rec trigger settings in the sim
23:19:03*petur finds nr 5
23:23:57*petur thinks the rec trigger gui code is awfull and tries to understand what it wants to do
23:28:32fmlpetur: it wants to be simplified I guess
23:29:00peturit needs a rtewrite for my viewport changes anyway
23:29:07petur*rewrite
23:30:01peturtrying to figure out what trig_width[] is for
23:31:12 Quit desowin ("KVIrc 4.0.0 Insomnia http://www.kvirc.net/")
23:33:40peturthat code could have used some comment :/
23:35:43 Quit MTee_ ()
23:37:52fmlpetur: just looked at the code briefly. Not the easiest code to understand!
23:38:15peturthat UGLY! comment above it is mine iirc ;)
23:39:20 Join safetydan [0] (n=evertond@rockbox/developer/safetydan)
23:39:26fmlHe-he. Triple yield!
23:39:29*petur builds an svn version to test on target
23:41:17peturremind me to kick LinusN when he's around, that bootloader I have now hangs at usb connect :/
23:43:18 Quit perrikwp ("http://www.mibbit.com ajax IRC Client")
23:43:23 Join perrikwp [0] (i=98213869@gateway/web/ajax/mibbit.com/x-a7752624df32fd96)
23:43:54*kugel could hopefully optimize custom list vp patch a bit
23:44:31Nico_PBagder: here?
23:44:51*bluebrother likes the new look of his wiki page :)
23:45:01BagderNico_P: yes
23:45:16Nico_PBagder: seen my messages from earlier about svn over HTTP?
23:45:25Bagderno...
23:46:26Nico_Pwhen trying to checkout rockbox's svn through HTTP, I get "svn: Server sent unexpected return value (405 Method Not Allowed) in response to PROPFIND request for '/rockbox/trunk' "
23:46:26 Quit fml ("CGI:IRC (EOF)")
23:46:51Nico_PI have managed to checkout some other svn repos with HTTP, so it's not (only) work's proxy
23:47:19amiconnDoes SVN hook into apache, or does it have it sown http server?
23:47:24BagderI don't think we have the necessary setup done for svn over http
23:47:35Bagderamiconn: it's a module for apache
23:47:36amiconns/it sown/its own/
23:47:43Nico_Pamiconn: it can hook into apache, but there's svnserve as an alternative
23:48:01Bagdersvnserve is for the svn:// protocol
23:48:19Nico_Pcan the apache module do the svn:// protocol too?
23:48:31Bagderno I don't think so
23:48:35 Join Zarggg [0] (n=z@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
23:48:42Bagderbut both can run fine together
23:48:49Nico_PBagder: so we're using svnserve only?
23:48:53Bagderyes
23:49:35 Quit Bensawsome ("The awsome is gone :(")
23:49:35Nico_Poh, that would explain it then :) I was mistaken by the alleged availability of http://svn.rockbox.org (on the wiki IIRC)
23:49:54bluebrotherwhat's the reason for svn over http?
23:49:57Bagderright, but that only has the viewvc for browsing atm
23:50:06Bagderbluebrother: proxy support basically
23:50:09 Join Bensawsome [0] (i=Bensawso@c-71-235-222-135.hsd1.ma.comcast.net)
23:50:20DerPapstBagder: could you please commit http://pastebin.ca/1078843? It contains changes to the irc reader to get rid of some bugs and issues.
23:50:56Nico_PBagder: yeah, and UsingSVN doesn't mention http://... I don't know where I got this idea
23:51:14Nico_Pwould adding http access be a possibility though?
23:51:21Bagderit would indeed
23:51:45BagderDerPapst: I prefer to leave those things to zagor
23:52:27DerPapstBagder: mkay. thanks anyway.
23:52:43DerPapstdo you know when he's around again?
23:52:54Bagdernope
23:53:10DerPapstk..
23:53:17peturholidays in Sweden?
23:53:18Nico_PBagder: it would be great, I'm sure I wouldn't be the only one to be thankful :)
23:54:03Bagderpetur: yes, all three of us Swedes are on holiday atm
23:54:20peturI figured...
23:54:36BagderNico_P: yes, I have it planned but during my vacations I've been held back to only do my "essentials" so I haven't gotten to the http for svn part yet
23:55:33 Quit bluebrother ("time for sleep")

Previous day | Next day