--- Log for 10.10.106 Server: orwell.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16 Started: 8 days and 18 hours ago 00.00.11 # i will, but i just hate seeing all the unrelated folders 00.00.13 Join linuxstb_ [0] (i=5343d4aa@gateway/web/cgi-irc/labb.contactor.se/x-a19db89718bebe88) 00.00.21 # bluebrother: Oh, and the error is systematic. Looks like a range problem 00.00.22 # Kitt0s, I have my directories like: 1. Music, 2. Data, 3. Games 00.00.28 # as an example 00.00.33 # whats on Data? 00.00.37 # If I tune to 102.6, reboot and re-enter, it goes to 89.8 00.00.38 # whats on GAmes? 00.00.50 # 102.7 maps to 89.9 after reboot, etc 00.00.58 # I can keep my gb roms there for instance 00.01.10 # ok, there is a swap of freq_min by freq_max in radio.c:308. 00.01.12 # ahh k 00.01.13 # and in data i can keep documents and random junk 00.01.21 # but where is the rockbox folder? 00.01.24 # this is to clean up the root folder 00.01.27 # but this shouldn't affect the frequency tuned in. 00.01.41 Quit Lear ("Chatzilla 0.9.75 [Firefox 2.0/2006100319]") 00.01.52 # well this thing is for my friend, he uses both rockbox and the original ipod firmware, so there are these gay folders 00.02.02 # hehe 00.02.17 # mabye someone can make a patch for this? 00.02.38 # bluebrother: looks like you calculate the frequency in the wrong way 00.03.07 # curr_freq = global_settings.last_frequency 00.03.07 # * fm_region[global_settings.fm_region].freq_step 00.03.07 # + fm_region[global_settings.fm_region].freq_min; 00.03.10 # Kitt0s: Just hide the folders you don't want to see. 00.03.26 # hmmm 00.03.28 # I do? I mostly only swapped the defined values with the ones from the region setting. 00.03.34 # Kitt0s - you don't see the .rockbox folder because it begins with a period, which unixlike systems hide. Rockbox follows this behavior. You couldn't, though, do the same for the apple folders. 00.03.46 # nah, i was wrong 00.03.46 # curr_freq = global_settings.last_frequency * FREQ_STEP + MIN_FREQ; 00.03.52 # was the original line. 00.03.53 # Soap: But you can just mark them as Hidden. 00.03.54 # hmm 00.03.58 # same for .rockbox right? 00.04.04 # the folder sry 00.04.05 # bluebrother: 3rd bug: If you tune to xx.05 in europe, the display shows xx.5 . Very confusing... 00.04.28 # Paul_the_Nerd: I think the encoder decoder plugin should be two separate plugins. 00.04.36 # I mean the request for it. 00.04.51 # Encoder_Plugin and Decoder_Plugin 00.05.07 # 3rd bug: I've changed the lang file, so the translations may be wrong. 00.05.15 # with essentially the same functionality but witht he obvious differentce 00.05.38 # but I could have thought of that myself as I don't need to understand the language for that change. My bad. 00.05.42 Join JoeBorn [0] (n=rootmeis@121.55.61.178) 00.05.52 # bluebrother: Then you did something in the wrong way: you reused a string in a way that's not backwards compatible 00.06.03 # Davide-NYC: But my request was a "Transcoder Interface". There is a WAV codec. It's "Go from one supported format to another." 00.06.17 # Because a WAV is a supported playback format, to encode you just got "WAV->Compressed" 00.06.20 # In this case, a new string should be added and the old one deprecated 00.06.26 # indeed. 00.06.37 # Since WAV is a supported encoding format, you go from "Compressed->WAV" 00.06.52 # But you can also do "AAC->MP3" with that concept. 00.06.59 # should I deprecate it now or change all translations? 00.07.06 # Without needing disk space to dump the inbetween WAV 00.07.06 Part LinusN 00.07.07 # LinusN: do you know if there is a feature to automatically switch Rockbox off when the battery gets below a certain level? 00.07.11 # the guys in here are telling me you can;t easily load to codecs at once 00.07.24 Part tucoz ("Leaving") 00.07.27 # Not at the moment, no. 00.07.50 # The request doesn't have to be done the way I requested. I just wrote the request for what *I* would like to see. 00.08.27 # Is it the IRAM issue that really prevents the using of two codecs at once? 00.08.41 # bluebrother: The frequency problem is definitely a range problem in the settings block. 00.08.50 # I'm just thinking that if user benchmarking could be achieved for decoders (realtime and non) in an easy way we could get people to contribute data. 00.08.58 # Up to 100.25 it stores the correct frequency, then it wraps 00.09.08 # doing it the way I am not is imprecise and time consuming 00.09.12 # *now 00.10.26 # I just think its a bit unnecessary to go through all that effort *just* for a benchmarking tool, when actual transcoding would be quite useful. 00.10.51 # * Paul_the_Nerd shrugs 00.11.08 # The fact that I've posed the feature request like that no way precludes anyone from doing it differently anyway 00.11.10 # ah 00.11.41 # bluebrother: The settings block uses 8 bits for storing the last frequency. 255*0.05 + 87.5 = 100.25 ... 00.12.02 # I.e. with 50kHz steps, 8 bits aren't enough 00.12.13 # ok. Haven't thought of that :( 00.12.39 # Paul_the_Nerd: I hear ya and it would be cooler the way you proposed it... but if it's much less likely to get coded that way I think a two step solution is fine. 00.12.50 # Use 9 bit and bump the cfg block version. Leaves the other 2 problems... 00.13.01 # WMA-->WAV then WAV-->MP3 00.14.05 # amiconn, how should I address the lang problem? Change all langs in cvs or deprecate the string? 00.14.07 # * amiconn wonders why it looks like quite a number of devs don't really test before committing... :/ 00.14.33 # * jhMikeS maybe I should follow their example :) 00.14.46 # nah 00.15.04 # damn the torpedos...patch goes up now! :D 00.15.06 # Davide-NYC: The biggest problem with that is that the only time I can see myself transcoding on the fly is when wavpack wasn't small enough afterall, which means there's certainly no room to explode to wav first. :) 00.15.56 # I would like to know why it's hard to load both a playback and recording codec simultaneously. I'm curious what the problem actually is. 00.16.02 # You can fill a memory buffer with pcm with the decoder...swap codecs...and write out...wash rinse repeat till done 00.16.12 # * ikke33 doesn't understand any of this 00.16.19 # The way I would use it is if I had a file that was in a non-realtime format and transcode on the fly to something I could listen to!!! 00.16.31 # I think that would just be killer. 00.16.37 # jhMikeS: Pretty much my throught on actually transcoding, when not benchmarking. 00.16.50 # Paul_the_Nerd: nonrelocatable code, that's what 00.16.53 # currently the codecs are written to load at a fixed address, i think 00.16.54 # Davide-NYC: Why not just transcode it *before* putting it on the dap? Would make 100% more sense to me... 00.17.05 # jhMikeS: And when benchmarking either the input is PCM/Wav or the output is being lost as soon as it's created. 00.17.21 Join spiorf [0] (n=spiorf@host20-143.pool8250.interbusiness.it) 00.17.22 # so you'd have to make them relocatable, and also probably make memory allocation more complex to handle two clients at once 00.17.37 # jhMikeS: I know the code's non-relocatable, I'm just a little surprised the input and output codecs are mapped to the same place. Is this in case we have plugins we want to interact with Recording? 00.17.42 # bluebrother: Choose one of these options, I'd say 00.17.46 # The encoders write do their own file writing so youd have to redirect those apis to fake file apis 00.17.51 # amiconn: in general I totally agree, but what if not infront of machine? 00.18.19 # jhMikeS: That sounds like a problem with the "codecs" then, as file writing usually isn't part of a codec's job. 00.18.19 # plus it lends itself to getting the users to help benchmark 00.18.19 # Davide-NYC: How would you move a track onto your dap without a PC? 00.18.53 # Paul_the_Nerd: There's been no effort to really distinguish them yet. I did give the encoders a differnt majic in the headers 'RENC' 00.18.56 # I can imagine myself moving a directory structure to the DAP without being totally familiar with what is in there and listening whiole travleing 00.19.00 # Well, technically you can do that on a H300 - and also X%, but only when rockbox isn't installed - via USBOTG 00.19.03 Quit ikke33 () 00.19.52 # amiconn: For example, transcoding files that turn out to be non-realtime if a computer is not available (say you prepared AAC audiobooks for a trip), or reencoding a lossless recording to something lossy because it ends up taking up more space than expected. 00.20.43 # amiconn: if you check out the wiki page: CodecPerformanceComparison... 00.20.58 # * amiconn still thinks it's a weird idea to load the poor little dap CPU with a task that a PC can do in seconds 00.21.11 # what about benchmarking? 00.21.22 # ?me ducks 00.21.24 # For benchmarking you don't need transcoding 00.21.37 # just decoding 00.21.42 # or encoding 00.21.43 # Pure decoding and pure encoding would be more useful 00.21.47 # Iagree 00.22.04 # For decoding benchmarks, the optimum is to even throw the decoded data away 00.22.23 # agreed 00.22.52 # I think the idea was to have a setting in a decoding_plugin that generated a logfile with performance data 00.22.55 # grr, can some1 explain to me how do i charge an ipod with rockbox through the USB? 00.23.30 Quit Kohlrabi (Nick collision from services.) 00.23.40 Join Kohlrabi [0] (n=Kohlrabi@dslb-082-083-153-178.pools.arcor-ip.net) 00.23.58 Join TCK [0] (n=hahano@bb-87-80-197-109.ukonline.co.uk) 00.23.59 Join JoeyBorn [0] (n=rootmeis@121.55.61.178) 00.24.08 # with this decoding_plugin you could (if necessary) decode a NRT ecoded file to WAV as well 00.24.18 # NRT = non-realtime 00.24.34 Join Angry [0] (i=5438a1b7@gateway/web/cgi-irc/labb.contactor.se/session) 00.24.47 # jhMikeS: please help with a make error 00.24.51 # *patch error 00.24.52 # ?:\ 00.25.09 # The next patch would create the file apps/enc_config.c, 00.25.10 # which already exists! Assume -R? [n] 00.25.10 Part initself 00.25.22 # wow I am too full of turkey 00.25.29 # Kitt0s: Hold MENU as you insert the USB cable. 00.25.51 # Kitt0s: Are you saying that your iPod doesn't reboot to disk mode and charge when USB is connected? 00.26.22 # it becomes diskmode i just want it to charge 00.26.24 # I want to change the files according to the new patch. I have already cvs up -dPC so only files CREATED by this patch are not synced with cvs. 00.26.52 # do I "assume recursive" in this instance? 00.27.10 # Kitt0s: Then do what linuxstb said 00.27.34 # Davide-NYC: what happen?...someone set up us the bomb? 00.28.07 # I had already patched with your v1 patch and forgot to undo it 00.28.08 # hmm, when i reset the ipod while its on USB, it opens rockbox, then gives the USB rockbox bitmap.. then does a wired flashing screen theng goes back to the black&white version of the 'Do not disconnet' of the original 00.28.11 # urghh 00.28.15 # Davide-NYC: I guess you patched over a patched version 00.28.19 # I did 00.28.22 # now what 00.28.25 # :-) 00.28.38 # cvs up -dPC 00.28.47 # Kitt0s: 1) Turn on your ipod (so Rockbox is actually running); 2) Hold MENU and insert USB cable. 00.28.55 # learned that myself today for the same reason 00.29.00 Quit Id2ndR ("Parti") 00.29.23 # but that will not touch the files your patch creates 00.29.32 # so what about those files? 00.29.36 # delete those 00.29.51 Quit obo ("bye") 00.30.13 # how many are there? 00.30.18 # Davide-NYC: It's generally a good idea to undo an old version of a patch before applying a new one 00.30.21 # ok, but i don't want rockbox running.. i want a plain charge 00.30.34 # enc_config.c enc_config.h enc_base.c enc_base.c general.c general.h pcm_sampr.c pcm_sampr.h 00.30.46 # enc_base.h 00.31.38 Quit Angry ("CGI:IRC (EOF)") 00.31.48 # Kitt0s: What do you mean by "a plain charge" ? If you don't want Rockbox running, then don't run Rockbox... 00.31.56 Quit JoeBorn (Read error: 145 (Connection timed out)) 00.32.00 # thanks 00.32.37 # look man, all i want is to rockbox + the orignal firmware to be OFF, and i want it to only charge, not connected to PC. get it? 00.33.28 # Kitt0s: If Rockbox and the original firmware are off, your ipod can't charge. It has to be on (and running something) to charge. 00.33.44 # hmm.. ok then 00.34.19 # Davide-NYC: I think that's all of them 00.34.20 # Kitt0s: yea, the file-transfer mode charges the pod.. 00.34.30 # that's all in apps right? 00.34.48 # Wish you could force patch to overwrite but couldn't find a switch for that 00.34.55 # rm -R ./apps/* ? 00.35.04 # then cvs up -dPC ? 00.35.14 # apps firmware 00.35.25 # done 00.35.27 # eassier 00.36.32 Quit linuxstb_ ("CGI:IRC") 00.36.41 Join dj-fu [0] (n=deejay@203.173.171.223) 00.37.27 # I do different handling on setting the source for SPDIF enabled devices and it may cause problems but the functions spdif_set_monitor really only sets EBU1CONFIG so I'm still not clear 00.41.04 # man, I can;t patch for some reason now 00.42.41 # nix the whole rockbox-devel and checkout again then...that will clear it for sure 00.42.56 Join JdGordon [0] (n=jonno@c220-237-57-32.smelb1.vic.optusnet.com.au) 00.43.04 # doing 00.44.07 # hate to use such a blunt tool as rm -R * 00.47.24 # that rec_set_source needs some rethinking as it is...so unelegant 00.48.41 # I don't know what happened but I chucked the rb-devel dir so now all of my configured build folders are gone :-( 00.48.50 # I get easily frustrated 00.48.51 # :-) 00.49.43 # ...the end is only the beginning grasshopper...;) 00.50.45 # please standby for the never ending MAKE. 00.51.51 # Davide-NYC: Please hurry fast I'm on the fall aslee.....*snore* 8^B 00.52.11 # you kidding? nothing I can do.. sorry 00.52.21 # cygwin? 00.52.32 # actually while I (we) wait what exactly do you want me to do? 00.52.46 # inform me of my mission 00.53.00 # test all the inputs and make sure they record. check the sampr_test plugin too 00.53.19 # Try it on both versions of the recording screen 00.53.59 # both versions? 00.57.07 # The one from FM radio and the other front normal recording 00.58.23 Join TeaSea [0] (n=thunderc@91.84.46.10) 01.02.40 # OK I'm back 01.03.24 Quit rretzbach (Read error: 113 (No route to host)) 01.03.32 # ?erew ot kcab 01.05.47 # from MAKE land 01.05.53 Quit jhMikeS (Read error: 104 (Connection reset by peer)) 01.06.44 Quit lodesi ("leaving") 01.07.02 Join jhMikeS [0] (n=jethead7@adsl-75-46-184-158.dsl.sfldmi.sbcglobal.net) 01.07.12 # damn...connection went down 01.07.41 # something is very wrong (sorry) 01.07.55 # It's stil not working? 01.08.04 Quit |AhIoRoS| (Connection timed out) 01.08.16 # something involving source selection is botched. 01.08.27 Join JoeBorn [0] (n=rootmeis@dsl017-022-247.chi1.dsl.speakeasy.net) 01.08.32 # on first load (defaults to mic in) I got on signal. 01.08.54 # selected source = line and I get input from the mic. 01.09.28 # radio? 01.09.34 # What screen? 01.09.58 # radio = same 01.10.07 # actual audio is from the onboard mic 01.10.13 # mic again huh 01.10.22 # always 01.10.28 # Did you try it from the fmradio screen? 01.10.32 # doing 01.10.52 # haven't been in FM for a while 01.11.17 # The source should be fixed there...no change allowed 01.11.50 # I think fmradio recording screen needs the ability to tune 01.13.21 # stuck at the menu. I long-pressed navi, got to the menu screen (what do we call this screen?) and am now stuck with FM playing and no button responding 01.13.31 # this is from FM 01.13.50 # target=H3x0 01.13.53 # I had that problem...it came after a button patch. 01.13.57 # not mine 01.14.04 # did you reset settings 01.14.09 # oops 01.14.10 # no 01.14.38 # why is it you can never find a paper clip when you need one? 01.14.42 # It should have automatically but try it manually during boot...that can clear a lot of probs 01.14.56 # I have loads of bent ones on my desk :) 01.18.05 # same 01.18.57 # you never made it to recording? 01.19.28 # stuck in that "quick menu" or whatever it's called withthe "recording screen" highlighted and FM playing happily 01.19.35 # that's it 01.19.39 # no button response 01.19.44 # pending reset 01.20.03 # I don;t think the screen is updating at all 01.20.10 # the RTC is not 'moving' 01.20.15 # You mean you went to the recording screen and then to the settings for recording or just made it to the FM radio settings? 01.20.21 # no 01.20.38 # is that when you call the recording screen from the radio menu? 01.20.57 # I went to FM, long-pressed NAVI got to the menu, scolled down to "recording sceen" (it's an item in a list) and short=pressed NAVI. 01.21.04 # yes 01.21.19 # I guess that screen is the FM menu? 01.21.34 # Say like FM Radio > FM Radio Menu > Recording Screen 01.21.41 # yeah 01.21.52 # You actuall tried entering the screen? 01.21.56 # at least I'm stuck listening to "The Who" 01.22.02 # yes 01.22.02 # heh 01.22.06 # might be a general problem from before... I had this with my Ondio (where a recording screen entry doesn't make sense at all) so I thought it would only be hwcodec related 01.22.07 # and now all is stuck 01.22.28 # "teenage wasteland" 01.22.34 # http://www.rockbox.org/tracker/task/6105 01.22.49 # So attempting to enter the recording screen from the FMRadio menu locks it...I just wanna be real clear 01.23.00 Quit JoeyBorn (Read error: 110 (Connection timed out)) 01.23.10 # pixelma: that is EXACTLY what's happening 01.23.15 # yes 01.23.27 # but might be even without the new recording patch 01.23.30 Quit bluebrother ("Leaving") 01.23.44 # FM Radio Menu --> Recording Screen --> LOCKED 01.23.58 # songs over, resetting 01.24.03 # someone should try an unpatched build 01.24.15 # Davide-NYC: No lockup on normal record screen then? 01.24.31 # teenage wasteland isn;t that short man, 01.24.35 # trying now 01.25.15 *** Saving seen data "./dancer.seen" 01.25.27 # I never added the recording screen to the FM Menu for HWCODEC 01.26.02 # ANything that directly adds recording to the radio screen should not have the menu option 01.26.29 # as I stated I don't know exactly when it occured but it wasn't there a while ago (haven't checked that often) 01.26.43 # Recording-->Recording Screen-->No Audio (defaults==mic, M128,44k,stereo) 01.27.23 # If it started on Oct 2 it nothing I did but there was some FM Radio screen work done and apparently not carefully enough 01.27.37 # switch to PCM WAV, no other changes, same result 01.27.40 # no audio 01.27.44 # We have the stations that won't save...buttons used to go dead... 01.27.54 # no audio or mic? 01.28.04 # when does it go from always mic to silent? 01.28.18 # other way around 01.28.31 # silent to always mic...ok....wierd 01.28.34 # I think, that if I make a selection it will go to always mic 01.28.46 # prior to making a selection I have silence 01.28.55 # this is what I believe to be happening 01.29.09 # It's the same code that worked before...there must be a hitch 01.29.32 # I will compare my changes with CVS and find the boo boo 01.29.49 # but I'm ready to just sleep sleep sleep :) 01.29.55 # jhMikeS: you messed up my iPod! YOu guys suckors!! 01.30.04 # or suX0rs 01.30.07 # or whatever 01.30.14 # :-0 01.30.32 # Davide-NYC: You piece of 5h17! 01.30.38 # LOL 01.31.03 # Sincerely, good luck. This will be a very cool addition to RB. 01.31.59 # n3\/3r m355 w1th |\/|3 ! 01.32.58 # 600d n|4ht...I'll be watching though 01.33.33 # * jhMikeS is away for 8 hrs 01.39.20 Join bawb2 [0] (n=bawb2@129.237.2.66) 01.44.16 # Paul_the_Nerd: so what determines who gets sent to the mobile version of the page?...browser fingerprint? 01.44.46 # I just put opera mini on my treo (so much better than blazer), and i am not directed to the regular version 01.44.54 # s/not/now 01.48.53 Quit linuxstb (Read error: 110 (Connection timed out)) 01.49.39 # scorche: I honestly have no idea. I don't know how it makes the determination at all. 01.50.57 # Opera mini goes through a proxy at opera.com 01.53.35 Join linuxstb [0] (n=linuxstb@rockbox/developer/linuxstb) 01.53.40 # At least afaik 01.53.53 # QQ: bootloader for H300 is version 5? 01.54.02 # yes 01.54.08 # thank 01.55.26 # Paul_the_Nerd: well, if possible can you put a link at the bottom or somewhere on both versions to transfer to the other one? 01.58.36 Quit newbyx86 ("I LOVE CLOUDS") 01.59.18 Join newbyx86 [0] (n=newbyx86@ip68-7-14-7.sd.sd.cox.net) 01.59.32 # 'night y'all 01.59.37 Quit Davide-NYC ("Chatzilla 0.9.75 [Firefox 1.5.0.7/2006090918]") 02.00.07 # Ah, yes, this little diagram makes it clear: http://my.opera.com/community/forums/topic.dml?id=122805&t=1160438227&page=1#comment1415421 02.00.37 # scorche: I honestly don't know what I can/cannot do regarding the mobile stuff yet. I need to check out if they talk about it much in some documentation somewhere 02.00.57 # Paul_the_Nerd: alright...well let me know 02.00.59 # scorche: I don't actually have access to it through the Admin menus like I do the main theme/etc, so it'll be a bit harder to toy with 02.02.19 Quit Kohlrabi ("Quit") 02.02.27 Quit TeaSea (Remote closed the connection) 02.15.35 # does rockbox support aac 02.15.46 # I thought it did 02.17.42 # It has limited support 02.17.56 # I can't even get it to play anything 02.18.00 # it's not recognized 02.18.09 # do I need to rename it 02.18.15 # What's the extension? 02.18.21 # .aac 02.18.31 # Is it a raw AAC stream or something? 02.18.45 # it was made with itunes 02.18.59 # Then the extension should be m4a, right? 02.19.04 # oh 02.19.05 # hm 02.19.07 # I renamed it 02.19.11 # ok let me fix that 02.20.10 # ah thats better thanks 02.20.17 # but no HE-AAC I see 02.20.23 # I guess lack of free decoders 02.21.40 # That and the fact that it requires significantly more available power to decode. 02.21.50 # I see 02.22.15 # I guess I am going with aotuv vorbis then 02.22.31 # all my audio is FLAC and I am transcoding to the most efficient format 02.22.45 # MP3 requires a lot less cpu power to decode. 02.23.14 # my player doesn't have cpu scaling yet 02.23.17 # so it doesn't matter 02.23.23 Join |AhIoRoS| [0] (n=ahioros@201.224.122.227) 02.23.24 # Ah 02.23.29 # You'll transcode again when it does then? 02.23.30 # musepack FTW if you don't want MP3. 02.23.49 # Musepack is also more efficient on ARM right now, anyway, isn't it? 02.23.52 # Paul_the_Nerd, probably 02.23.59 # apparently very much so. 02.24.04 # it's not a big deal, I just let the quad opteron at work do it for me :) 02.24.08 # I just bring it on a usb hard drive 02.24.09 # Soap: Hey, did musepack ever get proper seeking? I seem to remember something about that, but haven't really payed attention to it. 02.24.11 # and leave it going overnight 02.24.32 # and has the distinction of being the first lossy codec to acheive "transparent" status. How's that for the ▄bergeek? 02.24.48 # I was under the impression musepack wasn't very good 02.24.53 # Paul_the_Nerd - meh - who needs seeking? 02.24.56 # ;) 02.26.28 # musepack is an excellent codec. Low CPU requirements. Still possibly better than LAME MP3 even as far as bitrate to acheive transparency. Doesn't have the "problem samples" MP3 (even with LAME) does. (pre-echo, etc) but musepack isn't supported by much. 02.26.30 # Soap: I personally don't, but to some people it's a drawback. 02.26.31 # I was reading of this new vorbis encoder that does about the same as aacplus but being compatible 02.27.51 # so if I use musepack 02.27.59 # what is the best setting for space/quality 02.28.08 # just standard? 02.28.10 # The recently thumbed-up by HydrogenAudio OGG encoder is really nice. Encodes much faster than LAME, but still requires more horsepower to decode, and doesn't accheive transparency until about the same point as MP3, if not a bit higher. At low bitrates, though, it beats MP3. 02.28.30 # yea - standard is considered transparent on > 99% of sample. 02.28.33 # s 02.28.36 # ok I will try that 02.28.37 # thanks 02.29.05 # I have rather good headphones 02.29.11 # so I would like a decent encode 02.30.00 # wow musepack is big 02.30.06 # but I guess if it's transparent 02.30.46 # ABX all of them out there. 02.30.50 # See where your tolerance is. 02.31.02 # yeah 02.31.16 # well so far I have had good results with the hydrogenaudio vorbis at 100kbps 02.31.24 # around there 02.31.34 # 96kbps 02.31.40 Join Davide-NYC [0] (n=chatzill@user-12hdtm5.cable.mindspring.com) 02.31.41 # 100kbps it says on the LCD though 02.31.46 # if you have the quad processors you can encode up a real nice set of test samples, and ABX for one evening, and rest assured you have chosen the best codec for _your_ needs. 02.32.07 # what do you mean by ABX 02.32.15 # just listen to them all 02.32.16 # ? 02.32.19 # It's how you blind test two samples. 02.32.40 # You play the A sample, the B sample, The X sample and the Y sample (in foobar) 02.33.04 # then you answer the question "Is A X and B Y, or is A Y and B X?" 02.33.21 # I see 02.33.23 # you keep doing it with lower and lower bitrates until you can tell a difference. 02.33.30 # this gets complex too 02.33.33 # because of types of music 02.33.41 # You do it like 10-15 times per file to make sure you aren't lucky. 02.34.21 # foobar has an excellent ABX routine - just select two files, right click, and ABX. (One file being the original and the other being compressed) 02.34.21 # Paul_the_Nerd: Yes, musepack seeking was committed 02.34.51 # well this musepack at standard sounds outstanding 02.35.00 Quit dpr0 (Read error: 60 (Operation timed out)) 02.35.18 # linuxstb: Good to hear. I thought it was, but I tend to distrust my memory sometimes 02.35.38 # OK, I can no longer get into the OF on my H3x0 02.35.41 # http://www.rockbox.org/since25.html never forgets... 02.35.42 # I would use it except for the fact few programs support it, and none of my friends could be bothered to mess with it. 02.35.52 # I have attempted to write back the EEPROM 02.35.57 # what next? 02.36.29 # pretty much sounds like the cd 02.36.47 # Davide-NYC: did u try with someone elses eeprom? 02.37.01 # yes 02.37.08 # This is wierd 02.37.15 # linuxstb: Very true. 02.37.19 # I plugged in the charger and I am now back in Iriver world 02.37.38 # I thought the filesize was rediclous 02.37.41 # What could cause this/ 02.37.43 # ? 02.37.44 # but I forgot this song is 7 min 02.38.08 # Davide-NYC: Was your battery low? 02.39.26 # half way 02.39.48 # anyway thanks for the advice 02.40.33 # What did I do by writing back my EEPROM? 02.40.42 # what did I lose (if anything) 02.40.45 # ? 02.41.15 # the settings of the original firmware are stored there 02.41.54 Quit lostnihilist (Read error: 110 (Connection timed out)) 02.42.25 # Davide-NYC: It would do stuff like reset the contrast to the original value, etc. 02.42.45 # but nothing to my RB settings? 02.44.00 # Nope 02.44.08 # btw, now that musepack seeking works, why doesn't rockbox resume the file where it was stopped and instead plays the file again from the start? 02.45.39 # he's got a point 02.45.43 # I just reproduced it 02.45.52 # it doesn't resume the position it was playing with musepack 02.46.27 # Is not being able to get back into OF on an H3x0 a known bug? What causes this and should a bug report be put on the tracker? I cannot find one. 02.46.48 # If so, does the bug report belong under bootloader or what? 02.47.19 # what happens if you try to start the original firmware? 02.48.18 # Well now that I'm charging I can't seem to turn the unit fully off (which is different from the H1x0 behavior) 02.48.33 # In other words I cannot leave iriver world 02.48.34 # PaulJam: Resume has to be implemented for each codec, I guess no-one has done it yet for Musepack. 02.49.37 # It's not always the same as seeking - for example, for MP3, the byte-offset in the file is stored as the resume position, for other codecs, it is the elapsed time. 02.50.15 # Unplugging the charger I can shutdown the H3x0, but when I restart while holding the rec button I get a flash of the RB boot loader that says "starting original firmware" and then it shuts off again. 02.51.01 # Are you keeping the ON button held down? 02.51.08 # yes 02.51.09 # maybe you aren't holding the play button long enough 02.51.15 # lemme try again 02.51.31 # doh 02.51.48 # * Davide-NYC smacks himself in the face with a dead fish 02.51.56 # thanks 02.52.36 Quit Genre9mp3 ("I don't suffer from Rockbox psychosis. I enjoy every minute of it.") 02.52.45 Quit Davide-NYC ("Chatzilla 0.9.75 [Firefox 1.5.0.7/2006090918]") 02.53.27 Quit |AhIoRoS| (Remote closed the connection) 02.58.25 Join |AhIoRoS| [0] (n=ahioros@201.224.122.227) 03.01.22 Quit PaulJam (".") 03.13.30 Part pixelma 03.19.23 Quit gromit` (Read error: 104 (Connection reset by peer)) 03.20.42 Join gromit` [0] (n=gromit@ras75-5-82-234-244-69.fbx.proxad.net) 03.20.48 Quit dj-fu (Read error: 110 (Connection timed out)) 03.23.17 Join nave7693 [0] (n=evan@adsl-69-110-36-157.dsl.pltn13.pacbell.net) 03.23.28 Quit pagefault (Read error: 104 (Connection reset by peer)) 03.24.11 Quit EspeonEefi ("Leaving") 03.25.16 *** Saving seen data "./dancer.seen" 03.28.41 Quit ATravelingGeek ("Leaving") 03.32.47 Quit |AhIoRoS| (Remote closed the connection) 03.33.24 Join XavierGr [0] (n=xavier@ppp45-143.adsl.forthnet.gr) 03.34.51 Join |AhIoRoS| [0] (n=ahioros@201.224.122.227) 04.18.15 Join jestuh [0] (i=hithere@paranoid.horrible.net) 04.18.16 Join pagefault [0] (i=pagefaul@pdpc/supporter/active/pagefault) 04.18.23 # fyi: i just approved a quote from here 04.19.19 Quit jestuh (Client Quit) 04.22.34 Join EspeonEefi [0] (i=espeonee@CERULEANCITY.MIT.EDU) 04.24.33 # and the quote is? 04.25.15 # http://bash.org/?697534 04.25.19 # yes! 04.25.21 # :D 04.26.36 Quit nave7693 (Read error: 110 (Connection timed out)) 04.35.07 Join wafflesomd [0] (i=466a8098@gateway/web/cgi-irc/labb.contactor.se/x-0104b1a4224b55f4) 04.36.47 Quit wafflesomd (Client Quit) 04.40.25 Join `burns [0] (n=tom@199-201-8-8-arpa.cust.cinci.current.net) 04.40.51 # <`burns> I'm having a problem with rockboxdev.sh. 04.40.55 Join SereRokR [0] (n=SereR0kR@Ea03e.e.strato-dslnet.de) 04.41.59 # <`burns> it gives me the error: 04.42.20 # <`burns> ../../gcc-3.4.6/gcc/libgcc2.c:1277: internal compiler error: in do_SUBST, at com bine.c:447 04.42.24 Join RoC_MM [0] (i=dragon@c-66-177-58-16.hsd1.fl.comcast.net) 04.42.35 # <`burns> with some stuff about contacting the developers. 04.43.41 # <`burns> I googled it, and got a bunch of cryptic posts to the GCC mailing list. 04.43.44 Quit RoC_MM (Client Quit) 04.44.16 # <`burns> I found an entry for it on the gcc bugtracker too; it was marked as resolved. 04.44.50 # <`burns> But people are getting this error with even new versions of GCC, according to google. 04.45.08 # <`burns> Anybody know what's going on? 04.49.52 Quit SereR0kR (Read error: 110 (Connection timed out)) 04.50.56 Join RoC_MM [0] (i=dragon@c-66-177-58-16.hsd1.fl.comcast.net) 04.56.33 Join amiconn_ [0] (n=jens@rockbox/developer/amiconn) 04.59.14 # `burns: Um, since it's a problem with GCC, your best bet is to investigate it in other places, probably. I know that in your case it occurs during the running of our script, but you're more likely to find a solution in other places, perhaps. 05.01.22 Join Rob2222_ [0] (n=Miranda@ACB0652E.ipt.aol.com) 05.02.24 Join myzar [0] (i=derelict@cpe-72-129-81-32.socal.res.rr.com) 05.03.23 # <`burns> Paul_The_Nerd: yeah, I just wondered if you guys might know. thanks 05.03.34 # anybody looked into the recent 5.5g developments? 05.03.37 Quit `burns ("Leaving") 05.03.52 # i've been meaning to take a look on my 80 05.06.37 Quit NickDe ("Leaving") 05.09.55 Quit Rob2222 (Read error: 60 (Operation timed out)) 05.13.18 # i'm going to try the stuff from the forum thread tonight, if i get back from the movie early enough 05.13.38 # i've never had an excuse to use hexl-mode before 05.15.07 Quit amiconn (Read error: 110 (Connection timed out)) 05.15.08 Nick amiconn_ is now known as amiconn (n=jens@rockbox/developer/amiconn) 05.15.31 Quit _Veseliq_ (Remote closed the connection) 05.16.45 Join _Veseliq_ [0] (n=veseliq@195.85.215.210) 05.23.56 Join revelation [0] (n=3ee23139@lx02.formativ.net) 05.24.56 Join revelation_ [0] (n=3ee23139@lx02.formativ.net) 05.25.19 *** Saving seen data "./dancer.seen" 05.25.26 Quit |AhIoRoS| ("Abandonando, see you http://ahioros.homelinux.net") 05.39.02 Quit revelation ("CGI:IRC (Ping timeout)") 05.40.01 Quit revelation_ ("CGI:IRC (Ping timeout)") 05.41.29 Join vertic420 [0] (i=bla@dslb-084-056-248-214.pools.arcor-ip.net) 05.47.52 # yeah sneakums 05.48.04 # i'm willing to go off my vow to never return to nix again just to see it done 05.48.05 # =p 05.48.23 # though it might take some figuring out 05.48.32 # the byte reversing isn't really as hard as people say it is, though 05.59.19 Quit vertic23 (Read error: 110 (Connection timed out)) 06.07.33 Join lol_ur_dead [0] (n=viper_gt@CPE00036df52be9-CM000a73666b6e.cpe.net.cable.rogers.com) 06.07.44 # hi could someone help me? 06.08.24 # You might have better luck if you just ask your question 06.09.15 # lol 06.09.16 # ok 06.09.36 # is 2nd generation ipod able to install rockbox? 06.09.52 # ipod nano snd generation 06.09.56 # 2nd* 06.09.57 # No. 06.09.59 # ok 06.10.38 Quit lol_ur_dead (Client Quit) 06.16.14 Join Ribs2 [0] (n=freenode@91.84.8.218) 06.21.44 Join z35 [0] (n=z@adsl-226-227-239.dab.bellsouth.net) 06.22.20 # is there an alarm clock plugin by any chance? 06.23.30 Quit Ribs (Read error: 60 (Operation timed out)) 06.27.12 # z35: There is one, though it's only available/working on certain targets right now. If you don't see it in your plugin list, than it's not on yours yet. 06.27.31 # not the archos recorder v1? 06.27.44 Quit XavierGr (Read error: 113 (No route to host)) 06.28.22 # Hm 06.28.25 # Maybe it's not a plugin 06.29.33 # i couldn't find it looking through the menus either 06.29.48 # I know there's a patch for Alarm functionality on the V1 and V2 recorders. 06.29.58 # But it's really old 06.31.21 # http://www.rockbox.org/tracker/task/2021/edit would this be it? 06.32.11 # Yes 06.34.57 # cool 06.39.24 Nick Ribs2 is now known as Ribs (n=freenode@91.84.8.218) 06.41.17 Quit JoeBorn ("Leaving") 06.55.27 Join nave7693 [0] (n=evan@adsl-69-110-36-157.dsl.pltn13.pacbell.net) 06.58.07 Part nave7693 07.00.09 Quit webmind (Remote closed the connection) 07.01.44 Join webmind [0] (i=webmind@feather.perl6.nl) 07.08.43 Quit webmind (Remote closed the connection) 07.08.44 Join webmind [0] (i=webmind@feather.perl6.nl) 07.11.27 Quit midkay ("Leaving") 07.11.43 Quit TCK (Remote closed the connection) 07.12.04 Join midkay [0] (n=midkay@rockbox/developer/midkay) 07.12.51 Join TCK [0] (n=hahano@bb-87-80-197-109.ukonline.co.uk) 07.16.09 Join lostnihilist [0] (n=lostnihi@adsl-69-211-10-88.dsl.chcgil.ameritech.net) 07.17.18 Ctcp DCC request from kronic!n=gnorman@mail.stabat.com (CHAT CHAT 167772318 4417) 07.17.19 *** Server message 505: 'logbot :Private messages from unregistered users are currently blocked due to spam problems, but you can always message a staffer. Please register! ( http://freenode.net/faq.shtml#privmsg )' 07.25.20 *** Saving seen data "./dancer.seen" 07.37.53 Join mordov [0] (n=mordov@mail.furuno.no) 07.40.55 # what is the '5.5' gen ipod? 07.41.32 # The "new" iPod Videos 07.43.37 # does 5.5G only come in 80GB 07.43.48 # No, it's also the new 30gb ones 07.43.54 # oh 07.44.03 # 30 and 80? that's a weird set of choices 07.44.31 # I don't know why they didn't upgrade the smaller ones to 40 07.44.42 # costs probably 07.44.48 # a few people are trying to get rockbox working on them 07.44.50 # and somebody did it 07.44.53 # but it took a lot of hacking 07.47.32 # what needed to be coded? new hard drive driver? 07.47.58 # I thought the exterior was identicl 07.57.23 # no 07.57.35 # everything is identical to the 5g 60gb 07.57.41 # except the gapless feature 07.57.43 # and search feature 07.57.45 # in the firmware itself 07.57.50 # as well as some screen brightness 07.57.58 # the key differences are in the file system 07.58.13 # check the "new ports" area to get more info 07.58.17 Quit lostnihilist ("Leaving") 07.58.28 # all you'd need to do is hack the bootloader and part of rockbox to support those changes 07.58.32 # and it'll work 100%, it seems 08.01.34 Join lostnihilist [0] (n=lostnihi@adsl-69-211-10-88.dsl.chcgil.ameritech.net) 08.02.05 Join MarcoPolo [0] (n=MarcoPol@virlet.rez-gif.supelec.fr) 08.03.41 Join theli_ua [0] (n=theli@mail.ukrcard.com.ua) 08.04.00 Quit MarcoPolo (Remote closed the connection) 08.04.45 Quit lostnihilist (Client Quit) 08.04.52 Join lostnihilist [0] (n=lostnihi@adsl-69-211-10-88.dsl.chcgil.ameritech.net) 08.08.52 # Paul_the_Nerd, z35: There _is_ alarm functionality built into rockbox, without patch. However, since such functionality requires both hardware and software support, it only works on archos atm, and then only devices supporting it _unmodified_ are the archos fm recorder and recorder v2 08.09.07 Quit lostnihilist (Client Quit) 08.09.49 # The recorder v1 can also support alarm functionality with a small hardware mod and a custom rockbox build. The latter requires no patch, but just setting a definition in the Makefile 08.09.57 # HAVE_ALARM_MOD 08.09.58 Join lostnihilist [0] (n=lostnihi@adsl-69-211-10-88.dsl.chcgil.ameritech.net) 08.11.30 # yo 08.11.55 # Here's the description of the necessary hardware mod, linked from www.rockbox.org 's doc index: http://www.uwe-freese.de/hardware-projekte/rockbox/rtc_alarm_en.html 08.12.49 Join derelicte` [0] (i=derelict@cpe-72-129-81-32.socal.res.rr.com) 08.12.59 Quit myzar (Nick collision from services.) 08.13.01 Nick derelicte` is now known as myzar (i=derelict@cpe-72-129-81-32.socal.res.rr.com) 08.13.14 # amiconn: Thanks 08.13.57 # sup people 08.14.48 # Many of the swcodec devices should be capable of wake-up alarm, but nobody coded support for it yet: H300, X5, all iPods (perhaps except 1G and 2G, which have no rockbox port anyway yet) 08.17.25 # The H1x0 doesn't have an RTC, so no wake-up alarm possible. Not sure about the H10 and iFP 08.24.16 Join LinusN [0] (i=linus@rockbox/developer/LinusN) 08.28.50 Join pondlife [0] (n=Miranda@cpc1-rdng11-0-0-cust472.winn.cable.ntl.com) 08.38.16 Join MarcoPolo [0] (n=MarcoPol@virlet.rez-gif.supelec.fr) 08.40.37 Join ender` [0] (i=null@84.52.165.220) 08.52.52 # JdGordon: around? 08.54.05 Join _FireFly_ [0] (n=FireFly@dslb-084-056-078-124.pools.arcor-ip.net) 08.54.34 Join petur [0] (i=d4efd6a6@gateway/web/cgi-irc/labb.contactor.se/session) 08.58.08 # Does anyone else see Misticriver as being missing? 08.59.25 # hahaha apache starting page 09.00.51 # Hm 09.00.56 # That's not the page I saw 30 minutes ago. 09.01.19 # I was just making sure it wasn't somehow me, since about 30% of webpages I go to right now are coming up unresponsive. 09.09.03 # mr works for me now 09.09.55 # Me too 09.09.59 # sadly 09.10.14 # * pondlife gets annoyed by custom builds for no good reason... 09.11.19 # :-) 09.11.40 # Actually more annoyed because I find any bug report hard to ignore 09.11.44 # I still see the Apache page. 09.11.50 # Even if it's none of my business ;-) 09.12.18 # Ah well, backed up our forums tables just in case that precludes any signs of screwiness. 09.12.18 # Paul_the_Nerd: http://www.misticriver.net/ ? 09.13.11 # the custom builds are a two-edged sword 09.13.37 # they help us get some runtime of patches 09.13.53 # but they give us more support work 09.14.15 # "two-edged" - is that even a word? 09.14.26 # When we get album art support in CVS, I predict one or more custom builds will die 09.14.45 # heh 09.14.56 # nah, there are still lots of odd patches out there 09.15.11 # like the left-to-wps patch 09.15.23 # Urgh. I hate that one. 09.15.24 # scrolling margins 09.15.42 # LinusN: Yes, I see an apache start page there. 09.15.49 # Paul_the_Nerd: how weird 09.16.01 # Paul_the_Nerd: could it be a dns prob? 09.16.03 # your ISP has a caching proxy 09.16.03 # Did we not get scrolling left margins yet? Or is that patch not ready... 09.16.09 # Or specifically "Great Success ! Apache is working on your cPanel® and WHM™ Server" 09.16.17 # mine has too (but not at work) 09.16.34 # Well, my ISP is being particularly naughty tonight 09.16.40 # I'll just rule out any hijinks I come across. 09.16.41 # Mine has, but it responds to explicit refreshes in some way 09.16.51 # pondlife: the left margin patch is even more half-baked than the "regular" one 09.16.55 # Right now the *only* two webpages that will load for me consistently are rockbox.org and forums.rockbox.org 09.17.18 # Ah, I thought you were saying it was ready. Must have been thinking of someone else. I know nothing of its work... 09.17.33 # i want viewports 09.17.34 # Paul_the_Nerd: well, those are good ones to use 09.17.50 # but i can go with the scrolling margins patch until that happens 09.18.15 # Paul_the_Nerd: Tried http://72.29.70.126/ ? 09.18.34 # pondlife: ERROR: Cannot find database misticr_ivbd1   09.18.41 # Wooh 09.18.46 # And then more information about said error. 09.18.49 # Me too 09.19.16 # really odd, it works fine from here 09.19.17 # well, just using an ip is not necessary enough to get a proper web page 09.19.21 Quit bawb2 (Read error: 104 (Connection reset by peer)) 09.19.36 # I heard some ISPs cache by name rather IP. Unlikely I thought.... 09.19.56 # yeah, but servers do name-based vhosting 09.20.10 # So it appears! 09.20.32 # * petur also still gets the apache page for MR 09.20.38 # You'd know. I wouldn't. I'm using IIS for starters :( 09.20.46 # strange 09.21.03 # I go straight in to http://www.misticriver.net/forumdisplay.php?f=137 09.21.11 # Does that help at all? 09.21.16 # not found 09.21.21 # (404) 09.21.43 # It's a bit slow, but Works For Me 09.21.46 # but I don't need to be there ;) 09.21.54 # Me neither 09.22.14 # * pondlife closes a browser before he reads any bug reports on custom builds 09.23.18 # 404 here as well 09.23.27 Quit _FireFly_ ("Leaving") 09.24.04 # I like it when bug reports vanish once you tell them that "even though it seems unrelated, we require you verify it on a real build" 09.24.06 # Do others think that bug reports which are down to CPU/performance on iPods should be closed? 09.24.32 # http://www.rockbox.org/tracker/task/6073 is the one I'm looking at, but it's a regular thing 09.24.52 # I tried leaving a few open in the hopes that people would see them and not file more, and it didn't work. 09.25.02 # is there a clear FAQ entry about ipod performance? 09.25.21 *** Saving seen data "./dancer.seen" 09.25.40 # I'm more just Mr. Zero tolerance for support-on-Flyspray... 09.25.54 # 'taint a bug! 09.26.42 # http://www.rockbox.org/twiki/bin/view/Main/IpodFAQ#Playback_is_glitchy_skips 09.26.45 Join einhirn [0] (i=Miranda@bsod.rz.tu-clausthal.de) 09.26.45 Quit einhirn (Client Quit) 09.27.14 # then close them with a link to that faq entry 09.27.35 # Done 09.27.59 # But if you close them, people will just report them again... I doubt that people search the closed bug reports. 09.28.11 # They don't search the open ones either 09.28.34 # lol 09.28.41 # We need an FAQ link at the top of the page 09.28.46 # I know - but that's what they _should_ do. 09.29.30 # But yes, we've talked about having a "How to report bugs" page in the wiki, with a big link from Flyspray, but no-one has written it yet. 09.29.49 # Paul_the_Nerd: You have a decent summary on the forum, don't you? 09.29.52 # That page would ask people to read the FAQ first. 09.30.01 Join _jhMikeS_ [0] (n=jethead7@adsl-75-45-230-185.dsl.sfldmi.sbcglobal.net) 09.30.03 # How to report bugs the smart way or something.. 09.30.14 # That's something different I think. 09.30.48 # Maybe. I don't do the fora much 09.31.01 # I think he has the link to esr's "How to ask questions the smart way" paper. 09.31.42 # No, I also have a summary of how things to do before filing a bug report 09.31.42 # http://forums.rockbox.org/index.php?topic=3858.0 09.31.58 # That's the one 09.34.04 Join daurn|laptop [0] (n=quae@unaffiliated/daurnimator) 09.38.03 Quit BigBambi ("Leaving") 09.44.50 Quit jhMikeS (Read error: 110 (Connection timed out)) 09.50.10 Part _jhMikeS_ 09.50.10 Join _jhMikeS_ [0] (n=jethead7@adsl-75-45-230-185.dsl.sfldmi.sbcglobal.net) 09.50.42 Nick _jhMikeS_ is now known as jhMikeS (n=jethead7@adsl-75-45-230-185.dsl.sfldmi.sbcglobal.net) 10.08.19 Quit dan_a (Read error: 145 (Connection timed out)) 10.14.09 Join rretzbach [0] (n=robert@dslb-084-062-063-052.pools.arcor-ip.net) 10.15.57 Quit RoC_MM ("Leaving") 10.24.11 Join aliask [0] (n=chatzill@c210-49-190-113.eburwd8.vic.optusnet.com.au) 10.33.59 # daurnimator: i am now 10.34.47 Quit BHSPitLappy (Success) 10.37.40 Join BHSPitLappy_ [0] (n=steve-o@adsl-65-69-155-134.dsl.rcsntx.swbell.net) 10.37.58 Nick BHSPitLappy_ is now known as BHSPitLappy (n=steve-o@adsl-65-69-155-134.dsl.rcsntx.swbell.net) 10.42.57 Join BHSPitMonkey [0] (n=stephen@adsl-65-69-155-134.dsl.rcsntx.swbell.net) 10.44.28 # pondlife: Name-based vhosting isn't an apache exclusive. It's plain HTTP/1.1 standard 10.45.43 # Afair IIS can do that too 10.46.03 # indeed, all http 1.1 ones can 10.46.17 # and non-1.1 ones shouldn't be used 10.47.11 Join freqmod [0] (n=freqmod@140.84-48-78.nextgentel.com) 10.50.50 # Sorry, I was more just showing a lack of cluefulness 10.51.15 # JdGordon: where abouts are you? 10.51.18 # Not really a web guy. Maybe that's why I prefer NNTP/IRC every time 10.51.40 # daurnimator: melb 10.51.50 # suburb? 10.51.51 # Bagder: what does the channel comment refer to BTW? It's a bit depressing at the mo, IMHO 10.52.06 # daurnimator: going into the stalking buisness are you ? :D 10.52.09 # caulfield 10.52.13 Mode "#rockbox +o Bagder " by ChanServ (ChanServ@services.) 10.52.18 Topic "[empty]" by Bagder (n=daniel@rockbox/developer/bagder) 10.52.23 # boooo 10.52.28 # even more depressing 10.52.28 # \o/ 10.52.40 # change it to Rockbox 3.0 released and wait for the confusin :D 10.52.44 # I was only curious 10.52.45 # haha 10.53.02 # Nah, 3.1 released early 10.53.24 # Then sit back and watch the fireworks 10.53.33 # speaking of which.. is there going to be a try for fireworks? 10.54.11 # a topic that bashes specific individuals in the channel is always a good option =) 10.54.13 # Danger! Danger! Step away from the release schedule and walk slowly... 10.54.18 # JdGordon: wow, close to me :S 10.54.32 # daurnimator: where r u? 10.54.36 # elsternwick 10.54.44 # ha, yeah 10.54.50 Join dan_a [0] (i=dan_a@217.23.160.38) 10.55.19 # * daurnimator turns up music - can you hear it? 10.55.23 # ;) 10.55.34 # nope 10.55.39 # wind is blowing the wrong way 10.55.55 # are you near glen eira rd? 10.56.02 # or more south 10.56.13 # * JdGordon starts getting worried... 10.56.16 # more north 10.56.32 # worried? 10.56.39 # * JdGordon is also being funny 10.59.57 # * daurnimator gets your address 11.00.42 # 7-12 home st elsternwick 11.01.28 # your probably the closest person to me i've net online 11.01.29 # :P 11.01.30 # *met 11.02.20 # i guess that was a long shot @ a joke.. oh well (the address i gave) 11.02.59 # uh, no, i mean caulfield 11.03.00 # :P 11.03.26 Quit chendo (Remote closed the connection) 11.06.58 Join bluebrother [0] (i=810d4658@gateway/web/cgi-irc/labb.contactor.se/session) 11.17.57 # Heh, we all live in the S.E suburbs... 11.22.50 Quit freqmod (Remote closed the connection) 11.23.36 Part Paul_the_Nerd 11.23.38 Join Genre9mp3 [0] (n=yngwiejo@88.218.17.158) 11.24.22 Join TeaSea [0] (n=thunderc@82.152.192.39) 11.25.24 *** Saving seen data "./dancer.seen" 11.26.58 # or Eastern 11.27.05 # Who's eastern? 11.27.15 # western suburbs don't have "tech" 11.27.25 # aliask: a few users 11.28.22 # are there any other melbournian dev type people? 11.28.42 # none come to mind. 11.28.53 # but then again i have a terrible memory :) 11.29.03 # * petur points to rashers page 11.29.20 # * aliask is already loading it :) 11.30.38 # daurn|laptop: There's someone out near Werribee, so there goes your no-western users theory 11.30.39 # * scorche feels lonely 11.32.36 Join chendo [0] (n=chendo@203-206-33-162.dyn.iinet.net.au) 11.35.11 Join PaulJam [0] (n=pauljam@vpn-3046.gwdg.de) 11.38.17 # chendo! 11.38.35 # :o? 11.39.03 # are you vic? 11.39.09 # nope, why? 11.39.14 # damn 11.41.19 # Hahahaha, chendo on urbandictionary (sorry) 11.42.23 # lol 11.42.25 Join dpro [0] (n=x@chello080109121047.8.15.vie.surfer.at) 11.42.27 # some nubs were bored 11.42.34 # Clearly :D 11.43.09 # haha...wow 11.43.13 # heh. 11.48.49 Quit chendo (Remote closed the connection) 11.48.55 # guess what i did 11.49.47 # oh no 11.50.03 # i bashed my shin against the roof 11.50.05 # !! 11.50.10 # hit and run involving your truck, a kid, and his tricycle? 11.50.11 # oh 11.50.17 # you're a tall fellow 11.50.26 # now i'm icing it 11.50.36 # what flavor? 11.50.36 # its fucking sore 11.50.39 # how did u bash your shin on the roof? 11.51.01 # i did a somersault while holding onto the architrave 11.51.21 # ha 11.52.01 # is there any particular reason why the rockcalerdar plugin in the tracker hasn't been added to cvs? it looks nice 11.54.58 Quit spiorf (Remote closed the connection) 11.55.50 Join Life^ [0] (n=12@a137118.upc-a.chello.nl) 11.56.11 # it's here: http://www.rockbox.org/tracker/task/4760 11.58.25 # if i've obtained and played rockdoom, can i play any other .wad file by putting them in the games\doom\addons directory? 11.59.47 # JdGordon: in the randon_folder_advance_config plugin in the screen to edit the list, the line on top is overlapping the list when you use a larger font (nimbus12 in my case). (h300) 12.00.13 # which line on top? 12.00.17 # JdGordon: and another issue: it would be better if removed folders were removed from the list instead of appearing as blank lines in the list. 12.00.32 # the line that tells the number of folders 12.00.35 # PaulJam: yes, but harder to code :) 12.01.06 # that shouldnt be there... is that what Linus' commit did? 12.02.31 # bummer, no joy on my 80G with the hacked MBR and such 12.04.29 # JdGordon: well, your original code called update_screen() all the time 12.04.53 # so the list never showed because the screen was cleared 12.05.23 # i added a parameter to update_screen() to tell it to not clear the screen 12.05.50 # non-coding advice please? 12.05.53 # i assumed that the folder count was expected to be shown above the list 12.06.04 # since you called update_screen() 12.06.14 # anyway, i'm off to lunch 12.06.19 # LinusN: hmm.. no, the folder count wasnt intended for that screeen 12.06.52 # barrywardell: I guess it's buggy, otherwise I can't find another reason 12.07.40 # PaulJam: ill have a play in that code later tonight, i have assignment due friay i have to get done 12.09.40 # Genre9mp3: I don't see any mention of buggyness on the tracker, and it seems to work quite well for me. Are there any specific bugs you're thinking of? 12.09.53 # barrywardell: The reason is that there already is a calendar plugin, and we don't need two of them. Calendar is (currently) recorder only, while rockcalendar works on the newer targets, but llooks rather odd on recorder 12.11.44 # how can i play other .wad files other than rockdoom? -.- 12.12.00 # Life^: see PluginDoom 12.12.19 # ah, OK. but would it not be good to use this one for targets with bigger screens and keep the existing one for the recorder? 12.14.01 Quit dan_a (Read error: 110 (Connection timed out)) 12.16.04 Quit petur ("lunch") 12.16.44 # -.-, first wad i install using the site givin on the plugindoom site, 248 errors -.- 12.22.41 Join JoeBorn [0] (n=jborn@222.76.229.178) 12.22.44 # barrywardell: It's been quite some time when I last used RockCalendar on my H300.. I remember having some bugs but probably these are fixed now... I just thought that maybe this was still the case... 12.23.31 # my nano finally went dead... got about 9hours batt life.. thats not too shabby :D 12.24.33 # But this reminds me of the rockblox/tetrox situation (for some time we had both) 12.24.41 Join dan_a [0] (n=dan-mirc@wormhole.domicilium.com) 12.24.58 Quit SereRokR () 12.25.06 # lol @ the battery bench output file... apart from the opening text, its empty 12.25.40 # Then tetrox (now renamed to Rockblox) finally replaced the old rockblox though... 12.26.08 Quit TeaSea (Remote closed the connection) 12.26.56 # it seems like rockcalendar could replace the existing calendar 12.27.06 # if it could be adapted to the recorder too 12.27.54 Quit bluebrother ("CGI:IRC") 12.29.00 # barrywardell: As I can see here: http://www.rockbox.org/twiki/bin/view/Main/PluginRockCalendar it is already adapted 12.29.41 # Hmm, it has it's own virtual keyboard? 12.29.51 # oh, so maybe it could just be a drop in replacement? 12.30.07 # Does it include RTC support? 12.30.10 # pondlife: yes 12.30.35 # ^ to both questions 12.30.42 # pondlife: i think it uses the same virtual keyboard as rockword 12.30.44 Quit PaulJam (Read error: 104 (Connection reset by peer)) 12.31.17 # It would be good to have a single virtual keyboard for all of Rockbox - filename entry etc... 12.31.28 # scorche: got some more of that advice? PluginDoom doesn't seem to want to work with any of the wads :/ 12.31.32 # But I expect I'm not the first to say that 12.32.15 # * barrywardell agrees 12.32.21 # it would be nice 12.32.34 Join anjo [0] (n=anjo@210.89.157.65.static.nexnet.net.au) 12.33.25 # re 12.33.40 Join PaulJam_ [0] (n=pauljam@vpn-3023.gwdg.de) 12.34.10 # minor rant: shouldn't the statusbar honor my preferred font setting for the clock and the rest if set to "numeric" ? 12.34.18 # hi, trying to compile under ubuntu, got this - WARNING: The compiler you must use (arm-elf-gcc) is not in your path! 12.34.49 # pondlife: Don't we already have a single virtual keyboard for all of Rockbox? 12.34.50 # anjo: well then export PATH=/path/to/rb/toolchain/bin:$PATH # ? 12.34.52 # ran rockboxdev.sh and now have a build-rebdev folder. what do i do next? 12.35.16 # Well, maybe, but not if RockWord and this calendar use a second one 12.35.41 # anjo: when you've run rockboxdev.sh you get the compiler installed in a new path that you need to add to your $PATH before you build Rockbox 12.35.44 # RockWord isn't in CVS 12.35.48 # Ah, ok 12.36.12 # I guess I think they should both use the in-built one, rather than a new one 12.36.28 # pondlife: see http://plugbox.rockbox-lounge.com/ for rockword 12.36.51 # Although that one looks nicer. Not sure if I want QWERTY or ABCDEF though 12.36.53 # Though I like the vk they use 12.38.29 # ok, added the apth. running make with error- pdflatex: Command not found 12.39.09 # is the regular rockbox vk available to plugins? i kinda like the one rockcalendar uses too 12.39.31 # Either way, there should only need to be one. 12.39.54 # Also, someone at MisticRiver once draw some alternative vks 12.40.03 # see here: http://www.misticriver.net/showpost.php?p=413903&postcount=37 12.40.11 # BTW my minimal wps for ipod mini, based on snap (I just like the font) -> http://powerlesspointless.com/gfx/mywps.png 12.40.13 # i guess i need tetext installed under ubuntu 12.40.32 # anjo: shouldn't be a problem, it simply won't make the docs then 12.41.42 # barrywardell: I think it is 12.42.15 # anjo: are you building a binary or a manual? For the binary you won't need the tex stuff but for the manual you won't need the compiler... 12.43.09 Join Baerman [0] (i=Joe@ny-lackawannacadent1b-ham-77.buf.adelphia.net) 12.43.16 # do these chats always get posted on google? 12.43.33 # they're never "posted on google" 12.43.36 # Oh.. I just found this, too: http://www.rockbox.org/twiki/bin/view/Main/VKeyboardDesignProposal 12.43.44 # yea theres one on google 12.43.47 # 2 actually 12.43.48 # but yes, google index the irc pages we host 12.43.52 Quit MarcoPolo (Remote closed the connection) 12.44.00 # and yes, we log these conversations 12.44.13 # o0o for wat 12.44.50 # Baerman: every year a prize is given to the best speller 12.44.57 # lol riight 12.45.11 # for many watts actually 12.45.46 # 1.21 gigawatts 12.45.52 Join pixelma [0] (i=pixelma@82.193.235.34) 12.46.02 # jigawatts... 12.46.28 # ot question: how dangerous is a 450V 360 uF ( I think ) capacitor? 12.46.29 # i'm following the Simpleguide to compiling , run ../tools/configure > select 24 > N > Normnal build selected 12.46.46 Quit Baerman (Client Quit) 12.46.51 # Lynx_: Depends if you eat it 12.47.08 # * pondlife doesn't know, sorry 12.47.14 # hehe 12.47.24 # Lynx_: that isn't very dangerous even with full charge in it, but it still might be 12.47.48 Join damaki [0] (n=Chocolat@ALille-253-1-38-251.w90-7.abo.wanadoo.fr) 12.47.53 # http://anjo.pastebin.ca/196142 12.47.53 # Slasheri: ok. it's from a photo flash i want to repair. 12.47.56 # quite common in cameras flash units 12.48.07 # ok, just discharge it before touching 12.48.24 # Slasheri: how, just by shorting it? 12.48.26 # barrywardell: But I think that lots of problems will come up if we switch to a bitmaped vk (eg. lot of bmps for different languages, kbd files etc.) 12.48.31 # that should do it 12.48.38 # Slasheri: ok, thanks 12.48.57 # and if you don't get any sparks, it's already discharged 12.49.20 # i think that has lost in capacity anyway, it's old and the flash doesn't work anymore 12.49.58 # Bagder: I also observed gcc complaining about missing crosscompilers even when building the manual 12.50.11 Join Dawid20 [0] (n=Dawid20@87.97.23.46.pool.invitel.hu) 12.50.23 # yeah, I've seen that too 12.50.32 Part Dawid20 12.50.45 # should i move the rockbox source code into the /root/build-rbdev folder created by rockbox.sh? 12.51.21 # anjo: rockboxdev.sh only builds the cross-compiler, no need to save anything from that apart from the actually installed tool set 12.51.35 # rockboxdev.sh* 12.53.26 # i'm totally confused. 12.54.06 Join petur [0] (i=d4efd6a6@gateway/web/cgi-irc/labb.contactor.se/session) 12.55.23 # once you've installed the cross-compiler and edited your path, get the rockbox source and run configure as mentioned 12.56.08 # ah, i need to install the cross-compiler also. 12.56.15 # ? 12.56.19 # that's what rockboxdev.sh does 12.56.33 # * petur finds a nice pic to hang up: http://content.techrepublic.com.com/2347-22_11-4505-4512.html?seq=7 12.57.02 # despair.com has the best posters ;-) 12.57.10 # lol 12.57.11 # inded 12.57.16 # indeed even 12.58.00 # Genre9mp3: yes, it could get quite complicated. it might be worth the complication if it ends up being easier to use 13.00.39 # * LinusN re-reads an old-time favourite - www.actsofgord.com 13.01.00 # * scorche <3s BOFH 13.01.40 Join rr3tzbach [0] (n=robert@dslb-084-062-003-253.pools.arcor-ip.net) 13.07.03 Join chendo [0] (n=chendo@203-206-33-162.dyn.iinet.net.au) 13.07.08 # well, i keep getting the same error as "re-rockboxdev.sh" install 13.08.02 # pre* (before i ran rockboxdev.sh ) i added /root/build-rbdev to my path 13.08.15 # * petur thanks LinusN for the link but really should stop reading and get back to work ;) 13.08.33 # anjo: what's in "/root/build-rbdev" then? 13.09.13 # it seems unlikely to have the cross-compiler binaries in there 13.09.50 # ls /root/build-rbdev/ binutils-2.16.1 build-binu build-gcc gcc-4.0.3 summary-a 13.09.52 # rockboxdev.sh tells you what dir you should add to your path 13.10.26 # JdGordon: what devices do you have? 13.10.51 # daurnimator: h340 and my sisters nano (which has so far spend more time in my room than in her pocket :D ) 13.10.57 # h320 even :p 13.10.58 # heh 13.11.33 # JdGordon: lol 13.11.36 # anjo: so what's "prefix" set to in your rockboxdev.sh script, did you change that? 13.13.36 # i didn;t change anything, just ran the script and it downloaded agcc 403 etc. i 13.14.01 # then your PATH should contain /usr/local/[target gcc]/bin 13.14.10 # it did create a /usr/local/arm-elf/bin folder with binaries 13.14.14 # right 13.14.23 # i add that toi my path ? 13.14.24 # that's what you should have in your path 13.14.32 # okey dokey :-) thanks 13.14.35 # and that's why rockboxdev.sh said so 13.15.59 Join wafer [0] (i=3ce488eb@gateway/web/cgi-irc/labb.contactor.se/session) 13.15.59 Join _FireFly_ [0] (n=FireFly@fhrouter83.fh-wuerzburg.de) 13.16.05 # oh slap me silly... 13.16.14 # Make your PATH include :/usr/local/arm-elf/bin 13.16.19 # barrywardell: the current vkeyboard gives more characters than the RockWord one (all the accented...) 13.16.33 # * anjo braces for an e-punch in the face 13.16.40 # haha 13.16.41 # hey has anyone tried the mpegplayer on rockbox yet? 13.17.15 # wafer: no, it was developed blindly and no one ever tried it 13.17.18 Quit rretzbach (Read error: 110 (Connection timed out)) 13.17.43 # oh 13.18.03 # rofl 13.18.19 # so.. anything new the rockbox team is developing 13.18.49 # compiling nicely, thanks Badger 13.21.00 # pixelma: i see. what about the proposal on the wiki. seems well thought out 13.24.09 Quit chendo (Remote closed the connection) 13.25.25 *** Saving seen data "./dancer.seen" 13.26.52 # hmm, bootloader seems to be hanging in ata_read_sectors() on my ipod 13.27.06 # (80G 5.5G) 13.28.04 # when trying to read the MBR in disk_init 13.29.27 # sneakum: IIRC then there was some talk in here lately about the 5.5gen being a bit rockbox unfriendly 13.29.56 # dpro: someone got it running on a 30G 5.5 with some hackery, which i'm trying to duplicate on my 80G 5.5 13.30.25 # http://forums.rockbox.org/index.php?topic=6475.msg52653 13.30.52 # sneakums: I think you need to downgrade the original firmware 13.31.09 # sneakums: but that's hearsay ... I never had one of those 13.31.29 Join chendo [0] (n=chendo@203-206-33-162.dyn.iinet.net.au) 13.31.39 # i wish that damn forum wouldn't allow post editing, i keep missing info 13.31.40 # sneakums: basically what I'm trying to say is, if you fry it don't come after me ;) 13.33.17 # dpro: the later posts cover the recipe i'm trying to follow 13.33.59 # (i'm pjdc on the forum) 13.34.29 Quit Life^ ("( www.nnscript.de :: NoNameScript 4.02 :: www.XLhost.de )") 13.35.12 Join Criamos [0] (n=Criamos@p54930CFE.dip0.t-ipconnect.de) 13.35.31 Join bluebrother [0] (i=Jh3BA5dy@nat-wh-1.rz.uni-karlsruhe.de) 13.36.02 Quit _FireFly_ (Read error: 104 (Connection reset by peer)) 13.36.39 Join webguest68 [0] (i=c27f0812@gateway/web/cgi-irc/labb.contactor.se/session) 13.37.49 Quit wafer ("CGI:IRC (EOF)") 13.38.43 # May I humbly ask the devs to look at my patch FS#6145 (http://www.rockbox.org/tracker/task/6145)? It allows to change pitch in semitone steps. Are there serious shortcomings in it? 13.41.26 Quit pondlife (Read error: 131 (Connection reset by peer)) 13.42.44 Quit chendo (Remote closed the connection) 13.44.05 # can lcd functions be called with a mutex held? 13.44.14 # i'm thinking of trying to work out where exactly in ata_read_sectors i'm hanging, tomorrow 13.45.03 # sure, why not? ;0 13.49.35 # aaargh ... I'm just trying to port my pitchscreen from june to last weeks cvs, where are all the PITCH* buton defs gone ... 13.50.43 # hmm or did I write them .... 13.53.38 # ah so it's now ACTION_* 13.54.35 # webguest68: you'll need to find keymaps for other targets. and it would be good to find a solution to that 99.9% bug 13.58.50 # wow not that's odd ... now I heard another track mixed over the current one, but only for a very short time and crossfade is definitely off ... 13.59.20 # barrywardell: Ok, I have an idea about 99.9%, but how can I figure out the key mpping for diveces I don't own? 13.59.23 # and it wasn't at the end more like in the last quarter or so ... 13.59.41 # barrywardell: I like the proposal - the only thing that I don't like (after first glance) is the "select" to change between input area and keyboard (and might be impossible on Ondio) - "stepping over" like it is done now seems easier to me (just my opinion) 14.01.32 # webguest68: you could test in the simulator (precompiled sims for windows are here: http://rasher.dk/rockbox/simulator/ ) or ask people here for suggestions. I can come up with a keymap for the H10 14.01.43 Join Kohlrabi [0] (n=Kohlrabi@dslb-082-083-153-178.pools.arcor-ip.net) 14.02.32 # pixelma: I'll start looking at the vk code and see how easy it would be to implement the proposal 14.04.36 # you should ask others, too (before putting too much effort in this) :) 14.06.00 # will do 14.06.39 Join GreyFoux [0] (n=greyfoux@APoitiers-155-1-184-134.w83-193.abo.wanadoo.fr) 14.08.11 Quit barrywardell () 14.08.40 Part anjo ("Leaving") 14.09.10 Quit petur ("worrrk") 14.09.28 # barrywardell: if you're more or less familiar with mappings in other devices: would the MODE button fit in all of them? Is it present in all daps? (I assume this) 14.10.53 # barrywardell: the 99.9% problem can be solved by simply adding of 0.5 before taking the int part. 14.12.58 # webguest68: you can also find out about keymaps here: http://www.rockbox.org/manual.shtml (should always be in 4.3.1 WPS Key controls) 14.13.22 # i want a new mp3 player!!!!! 14.13.46 # webguest68: err... 4.3.3 WPS Context menu 14.16.46 # * amiconn doesn't like the vkeyboard proposal 14.17.27 Join XavierGr [0] (n=xavier@ppp45-143.adsl.forthnet.gr) 14.17.27 # It wastes too much screen space on lower resolution LCDs 14.17.28 # pixelma: thanks! But the problem is that it's a new key -> not described in the manual. Do all the daps have the MODE key (as in C code, not as in the manual)? 14.17.48 # (Archos, iPod mini, H10-5GB, iriver remote, X5 remote...) 14.17.58 # webguest68: nope 14.19.02 # webguest68: and you can see in the keytables if the key is already used in the pitch screen (for example: http://download.rockbox.org/manual/rockbox-ondiofm/rockbox-buildch4.html#x7-400004.3.1) 14.22.40 # pixelma: yes, that's a good proposal. I'll try to do it. Or anybody can ;-) Or I'll start a thread in forums. 14.30.07 Quit webguest68 ("CGI:IRC") 14.34.40 Quit JoeBorn ("Leaving") 14.40.25 Join chendo [0] (n=chendo@203-206-33-162.dyn.iinet.net.au) 14.41.26 Join NickDe [0] (n=nicholas@198.7.232.64) 14.47.55 Part maedhros 14.48.18 Quit aliask ("Chatzilla 0.9.75 [Firefox 1.5.0.7/2006090918]") 14.49.57 Quit PaulJam_ (Read error: 110 (Connection timed out)) 14.50.29 Join PaulJam_ [0] (n=pauljam@vpn-3014.gwdg.de) 15.00.12 Join Moos [0] (i=5950bebb@gateway/web/cgi-irc/labb.contactor.se/session) 15.00.12 Quit myzar (Read error: 104 (Connection reset by peer)) 15.00.34 Join Ribs2 [0] (n=freenode@91.84.8.218) 15.03.08 Quit damaki (Read error: 104 (Connection reset by peer)) 15.05.07 # amiconn, how exactly doesn't loading fm presets work anymore? It seems to be fine for me 15.05.49 Join barrywardell [0] (i=892b7a86@gateway/web/cgi-irc/labb.contactor.se/x-f0ea3d696d7e2ead) 15.07.59 Quit Ribs (Read error: 60 (Operation timed out)) 15.13.28 # Morning guys 15.19.28 Quit idnar (Nick collision from services.) 15.19.31 Join idnar_ [0] (i=mithrand@unaffiliated/idnar) 15.21.34 # Anyone have a copy of itunes 6 they can send me? 15.21.43 # Or any word on rockbox on 5.5g's? ;p 15.21.47 # which would be even better 15.25.27 *** Saving seen data "./dancer.seen" 15.26.22 Join Rincewind [0] (n=Miranda@proxy1.rz.uni-karlsruhe.de) 15.30.35 Nick idnar_ is now known as idnar (i=mithrand@unaffiliated/idnar) 15.32.26 Part LinusN 15.32.37 # run perfectly 15.32.49 # just only currently available to the elite 15.32.57 # wait a month and you'll be on happy hill 15.35.24 # anyone knows what got updated with the 1.2 nano firmware? 15.42.08 # daurn|laptop: wait, someone has it running on a 5.5g? 15.42.17 # preglow: I know the nike thing got added... 15.42.22 # other than that not sure 15.42.44 # godzirra: according to forum posts it can be tweaked to run on the 5.5 already, yes 15.42.47 # godzirra: yes 15.43.20 # crap 15.43.26 # the forum stopped notifying me :/ 15.43.28 # I thought it had been quiet 15.43.33 # * godzirra goes to read 15.43.57 Quit TCK (Remote closed the connection) 15.44.31 Join TCK [0] (n=hahano@bb-87-80-197-109.ukonline.co.uk) 15.46.05 # awesome. 15.46.16 # I'll wait a few more days and let kinks get ironed out by people smarter than I ;) 15.47.05 Quit bluebrother ("back shortly") 15.47.20 # but thats great news. 15.52.24 Join tucoz [0] (n=martin@rockbox/developer/tucoz) 15.53.47 # pixelma, around? 15.54.03 # here.. 15.54.30 # What do you think about including the 'Working with playlists'-chapter to the daily builds? 15.55.17 # It is half-written as it is, but I think it will stay that way for a long time unless the readers have the opportunity to include additions to it. 15.55.41 # Now it simply resides in the source tree, but isn't read by anyone 15.56.02 # In that case, I'll add a \fixme to the top of that chapter. 15.56.11 # I haven't looked at this, yet 15.57.12 # that is ok. I am just thinking of reasons to leave it as it is (half-written, unread by users), or include it (half-written, read and possibly improved by users) 15.57.59 # but I think if it's included... maybe others who want to contribute (but don't compile) could file patches to the tracker 15.58.10 # exactly 15.58.16 Quit mordov (Remote closed the connection) 15.58.42 # so if it's not wrong or misleading it could help 15.58.52 # tucoz: maybe though the second part can also be... "half-written, read and possibly confusing users" ? 15.59.27 # Genre9mp3, as a lot of other things. I think the \fixme note could save us at least some confusion. 16.00.13 # I'll commit a cleanup at least. 16.00.54 Join CriamosAndy [0] (n=Criamos@p54930078.dip0.t-ipconnect.de) 16.01.16 # also: other things already in there could be confusing too (thinking about the Split editor for example) 16.01.17 # tucoz: did you see my manual bugreport, FS#6146? would fix it myself, but I'm not too sure what the preferred way of doing it is 16.01.36 # barrywardell, let me check 16.02.16 # * tucoz gives an employee of the month badge to barrywardell, for being a developer committing stuff to the manual 16.02.50 # hehe you stay on your side of cvs and we'll stay on ours... 16.03.00 # haha 16.03.19 # hehe 16.05.06 # barrywardell, is there some define we could use to fix that issue? 16.08.19 # Sigh... why the hell does itunes import two copies of every song into my itunes database? 16.08.29 # I downgraded to itunes 6 and it does the same thing. 16.08.49 # tucoz: that's what i was wondering 16.10.31 # do you have anything defined in the h10 config files that we could use perhaps? 16.10.51 # or maybe we could define a HAVE_DUAL_BOOT? 16.12.20 # the best way to include/exclude stuff is by use of defines instead of targets 16.13.30 # maybe add a define HAVE_FIRMWARE_IN_FLASH? 16.14.58 # maybe. in that case, then that should be added to the appropriate platform/*.tex files 16.16.33 Join lodesi [0] (n=lds@82.247.165.89) 16.17.23 Quit Criamos (Read error: 110 (Connection timed out)) 16.17.23 # ah, yes. i see it 16.17.32 # think i can fix that myself now. thanks 16.17.42 # thank you :) 16.18.02 # what are the keys to start and shutdown the h10? 16.18.14 # there is a power button 16.18.23 # long hold of power to shut down 16.18.50 # ok. thanks. I'll fix the missing entry underneath the image of the H10. 16.19.02 # great 16.19.26 Quit theli_ua ("Leaving") 16.20.08 Join bluebrother [0] (i=0aW00Tdc@nat-wh-1.rz.uni-karlsruhe.de) 16.20.14 Part barrywardell 16.21.42 Quit JdGordon ("Konversation terminated!") 16.22.33 # bluebrother, if you remember me talking about dash yesterday. dash is debian's shell. Debian Almquist SHell. Ubuntu edgy uses this instead of bash (for /bin/sh) by default. 16.22.33 Join pondlife [0] (n=Miranda@cpc1-rdng11-0-0-cust472.winn.cable.ntl.com) 16.23.08 # hmm. Why are they using some different shell? Any advantages over bash? 16.23.17 # * bluebrother thinks debian is strange 16.23.29 # and the problem is that that shell does not interpret -e at all. in dash, echo -e hello, would would echo -e hello. 16.24.00 # It is less dependent and slightly faster than bash. 16.24.34 # and i've heard that the tab completion is better. 16.24.41 # ... and a bit incompatible? ;-) 16.24.57 # I use the programmable bash completion. Really great 16.25.06 # ? My debian installations all use bash by default 16.25.11 Nick daurn|laptop is now known as daurn|afk (n=quae@unaffiliated/daurnimator) 16.25.20 # Anyone thinking of fixing the H300 build warnings? 16.25.34 # bash is a perfect example of something that has embraced and extended posix since day 1 16.25.43 # "screen_access.c:58: warning: assignment from incompatible pointer type" etc. 16.25.51 # so of course nothing is compatible with bash ;-) 16.26.06 # amiconn, this is ubuntu edgy. I don't know why it links /bin/sh to dash. 16.26.15 # AH 16.26.37 # * amiconn only tried to install ubuntu once, unsuccessfuly 16.26.50 # I like ubuntu 16.26.59 Join webguest20 [0] (i=c27f0812@gateway/web/cgi-irc/labb.contactor.se/session) 16.27.30 # in fact, i have never been this satisfied with any OS in the past 16.27.36 # I tried debian once and disliked it pretty much 16.27.56 # * Bagder runs debian all over 16.28.01 # crap.. anyone know what the link is to the ipod updater? 16.28.09 # Why there is LANG_PITCH_UP and LANG_SYSFONT_PITCH_UP in english.lang? (The same for _DOWN)? The texts are the same. 16.28.15 # I'm trying to use itunes 6 instead of itunes 7, but I think firmware 1.2 might require you to use 7 :/ 16.29.01 # godzirra, some of these files? http://download.rockbox.org/bootloader/ipod/ 16.29.51 # tucoz: nope, I meant the official apple ones. I have a 5.5g so I can't get rockbox workign yet on mine :( 16.30.03 # I would -love- to get rockbox working and ditch itunes forever. I already hate it. 16.32.39 # webguest20: probably something that has happened over time 16.33.36 # webguest20: The LANG_SYSFONT_* strings were introduced by lamed. The sysfont doesn't have characters for foreign scripts (e.g. hebrew) 16.33.39 # anyone know how to return to the wps screen on the h10's when you are browsing and a file is playing? 16.34.03 # So the strings are identical for languages which use latin script, and different for others 16.34.14 # *sigh* Yeah, apparently if you have the 1.2 firmware, itunes 6 just -doesn't work- 16.34.25 # Note that this is the wrong solution, imho 16.35.15 # Instead, all screens (apart from debug stuff) should be made to adapt to the user font 16.35.39 Join scottder [0] (n=sdexter@ip70-188-142-96.ri.ri.cox.net) 16.36.09 # indeed 16.37.34 # hrm 16.38.04 # any thoughts on whether the pitch control should always use the same resampler playback does? 16.39.17 # preglow: what do you mean ? 16.39.20 # bluebrother, what do you say about including the playlist chapter to the manual? 16.40.15 # amiconn: so what? Are the strings handled in different ways in code? In pitch_screen for example there is nothing special. 16.40.15 # dpro: i can't really elaborate any more than what i said right there 16.40.28 # we should definitely include it but maybe adjust it a bit before ... 16.40.42 # hrm, bah, we probably can't do any special tricks anyway 16.40.52 # bluebrother, adjust it in what sense? 16.40.54 # preglow: because I would really like to get a grip on the playbacksystem 16.41.09 # iriver just supports sample rates which lets them use halfband filters 16.41.13 # but we can't do that 16.41.21 # preglow: not in the current state but backwards playback would be a true gimmick 16.41.43 # dpro: a true gimmick, and utterly useless 16.42.00 # it would require us to support backwards decoding in files, not trivial 16.42.01 # bluebrother, I am having a hard time believing anything will happen to that section unless it is included in the manual people read. 16.42.11 # great for finding hidden satanic messages :) 16.42.23 # I'm not sure ... currently it's mostly a incomplete list. 16.42.26 # true. 16.42.38 # preglow: au contraire, that would mean scratching on the clickwheel, dj world domination 16.42.47 # I changed the coding style some time ago. Haven't got around looking into it further 16.42.55 # (i.e. remove tabs mostly) 16.43.01 # on that chapter? 16.43.17 Join Life^ [0] (n=12@a137118.upc-a.chello.nl) 16.43.22 # yeah, locally. 16.43.31 # can somebody help me with building my site in html? 16.43.33 # so did i. I committed it half an hour ago. (sorry) 16.43.45 # also, shouldn't it get included as section in the getting started chapter? 16.43.48 # hehe :) 16.43.49 # dpro: i sincerely doubt the clickwheel is good enough for that 16.44.00 # bluebrother, yes. it should be a section 16.44.07 Quit Kitt0s (Read error: 110 (Connection timed out)) 16.44.09 # and we could probably get rid of some sections 16.44.34 Join Kitt0s [0] (i=Kaa@84.94.24.157.cable.012.net.il) 16.44.35 # a bit different: I really dislike having multiple files called "main.tex" 16.44.53 # currently I have 5 files in my editor open with the same name. 16.45.04 # preglow: not hiphop style just to scrub the buffer to set your cuepoints works ok for me but I can't hear the backspin 16.45.11 # I think we should move everything out of that main.tex files and use that only to include the section. 16.45.18 # bluebrother, why? My idea of the main.tex files, is so that they are used to control that chapter. 16.45.43 # dpro: that should be somewhat easier anyway 16.45.49 # currently there is a lot of text in the main.tex files. 16.45.52 # as long as we don't have to support decoding backwards 16.46.02 # an option would be to have only includes in that files 16.46.12 # so they need to get changed seldomly. 16.46.36 # also, the chapters don't match the folders exactly anymore. 16.46.56 # preglow: that shouldn't be much of a problem for most formats - mod maybe being an exception 16.47.29 # I had a dream we could use the pitch control system to give audible fast forward 16.47.53 # And -ve pitch for rewind ;-) 16.48.01 # bluebrother, yes. I think the plugin/main.tex is a good example to how we should work. 16.48.30 # bluebrother, unfortunatley cvs doesn't support renaming very well. 16.49.16 Quit webguest20 ("CGI:IRC") 16.49.18 # as a first step we could move all text out of the main.tex files 16.49.37 # so the playlists stuff becomes playlists.tex and main.tex simply includes that 16.49.55 Quit dan_a () 16.50.01 Join spiorf [0] (n=spiorf@host193-125.pool8248.interbusiness.it) 16.50.08 # but we should not rip out too much. We should stop at the \section level. 16.50.37 # you mean not having a separate file for subsections? 16.50.42 # not having a file start with \subsection 16.50.43 # yes 16.50.49 # a file should be at least a section, yes. 16.51.02 # that will mess up emacs indentation at least 16.51.51 # I can clean up the playlist file some more 16.51.59 # ok. 16.52.24 # emacs has problems with indenting when the file doesn't start with chapter? 16.52.33 # or am I getting it wrong here? 16.52.35 # no. it is fine with \section 16.52.40 # but not with \subsection 16.53.27 # and i think that it will be too many files if we start extracting \subsections to their own files 16.54.19 Quit Moos ("CGI:IRC") 16.54.22 # agreed. 16.54.56 # but I don't think it's good to have text in main.tex -- which is why I want to rip it up a bit more ;-) 16.55.25 # yes. I agree. A main would ideally only be used to control that chapter. 16.55.36 # what to include and what not to include 16.56.05 # indeed 16.56.18 # Just like the plugins chapter is now :) 16.56.30 # :) 16.57.54 # Hmm. how should I solve this. Now the sections are of very long names. Like 'Creating playlists by playing a song' 16.58.05 # and 'Creating a dynamic playlist using the Insert and Queue functions' 16.58.38 # Isn't it good enough to cut that to 'Playing a song' and 'Using Insert and Queue'? 16.59.10 # the descriptions are in a context (Creating playlists) after all. 16.59.31 # maybe. Try it and see if the users complain :D 16.59.35 # hehe 17.02.09 # bluebrother, should I move the playlist file to the rockbox_interface chapter then? 17.02.29 # hmm. Maybe that's better. 17.02.49 # servus bluebrother :-) 17.02.59 # hi Rincewind 17.06.03 Quit perpleXa (Read error: 104 (Connection reset by peer)) 17.07.04 Join perpleXa [0] (n=perplexa@62.153.151.131) 17.07.46 Quit perpleXa (Client Quit) 17.08.35 Join perpleXa [0] (n=perplexa@unaffiliated/perplexa) 17.11.24 # bluebrother, I think I just add the playlist section from the current location. 17.16.45 Quit Life^ ("( www.nnscript.de :: NoNameScript 4.02 :: www.XLhost.de )") 17.17.40 Join barrywardell [0] (i=892b7a86@gateway/web/cgi-irc/labb.contactor.se/session) 17.18.11 # damnit, ituns won't even let me import my m4a files. 17.18.40 # and it reduplicated every god damned song. 17.18.40 # ARGH 17.18.56 # I fraeking hate itunes. 17.19.05 # so how do you edit your mbr with a hex editor in linux? 17.19.47 # godzirra: Relax... you are in the right place! ;) 17.20.27 # Genre9mp3: I know. I've had rockbox on my h-120 for 3 years or so 17.20.39 # I'm just frustrated horribly by itunes and how horribly it sucks. 17.20.53 Join SereR0kR [0] (n=SereR0kR@Ea03e.e.strato-dslnet.de) 17.24.42 # so while I'm not clear on how editing the mbr works, I'm not an un-technical person. 17.25.00 # can someone point me towards how to hex edit the mbr? 17.25.29 # tucoz: about your wps on the H10 question. Play brings you from the file browser to the WPS. 17.25.30 *** Saving seen data "./dancer.seen" 17.30.48 # anyone? 17.31.10 # google? 17.31.16 # barrywardell, ok. thanks. What key is to go to the parent directory? 17.32.17 # left 17.32.42 # :) good. then the browser table is complete. 17.32.54 # great :) 17.34.26 # godzirra, you could extract the mbr using dd, convert it to a hex representation using xxd, edit it with your favourite editor and then convert it back (xxd -r) and dd it back. 17.35.13 # bluebrother: and I do it with dd by doing dd if=/dev/sdX of=mbr.bin ? 17.35.20 # i.e. just sdb, not sdb1? 17.35.36 # mbr is /dev/sdb 17.35.42 Join netmasta10bt [0] (n=torment@pool-71-243-248-216.tampfl.fios.verizon.net) 17.35.48 # (replace sdb with your disk, of course) 17.35.54 # its sdb :) 17.36.00 # mbr is the first 512 bytes of the disk -- see wikipedia :) 17.36.24 # got it 17.38.21 # I wonder if you can do it in windows if you have the appropriate tools. 17.38.37 # sure. 17.38.45 Quit mirak (Connection timed out) 17.38.46 # hmm... I dont think I have mtools 17.39.09 # http://www.mirkes.de/de/freeware/tinyhex.php 17.39.17 # should do it. Never tried, though 17.41.18 # huh. I just realized I have no ideaq what to use as the if= line in dd in windows. 17.41.22 # ohw ell.. i'll boot to linux. 17.41.30 # (use the "english" link on the left side, noted it too late) 17.41.52 # I got it :) 17.42.34 Join mirak [0] (n=mirak@AAubervilliers-152-1-14-245.w82-121.abo.wanadoo.fr) 17.44.11 Quit Galois (Remote closed the connection) 17.44.31 Join Galois [0] (i=djao@efnet-math.org) 17.45.35 Join thegeek [0] (n=thegeek@s026b.studby.ntnu.no) 17.47.57 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 17.48.19 Join daurn|afk [0] (n=quae@124.243.137.107) 17.49.53 Quit dpro (Read error: 110 (Connection timed out)) 17.55.31 Quit spiorf (Remote closed the connection) 17.56.03 Quit XavierGr (Read error: 113 (No route to host)) 17.56.04 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 17.56.35 Join daurn|afk [0] (n=quae@124.243.137.107) 17.59.05 # So what/where is mtools? 17.59.48 # godzirra, what do you exactly want to do with mtools? 18.00.18 # bluebrother: I'm going to follow the info on the website and see if I can get rockbox running on my 5.5g 18.00.19 # mtools consists of a bunch of tools named like m 18.00.56 # which website? 18.00.57 # ahh. 18.01.02 # http://forums.rockbox.org/index.php?topic=6475.45 18.03.31 Join lightyear [0] (n=lightyea@p54875AFD.dip.t-dialin.net) 18.03.42 # sounds awful 18.04.59 Join thegeek_ [0] (n=thegeek@s026b.studby.ntnu.no) 18.05.31 # More awful than being forced to use itunes? :) 18.05.38 Quit thegeek (Read error: 113 (No route to host)) 18.07.12 Quit daurn|afk (Read error: 131 (Connection reset by peer)) 18.07.27 Join daurn|afk [0] (n=quae@124.243.137.107) 18.08.35 # tucoz: i posted my suggested changes to the bug report. what do you think? 18.09.14 Join mordov [0] (n=mordov@88.80-202-254.nextgentel.com) 18.10.15 # barrywardell, looking at it now 18.10.41 # is it too technical? 18.12.34 # I think it looks great. Not too technical. But, you should add a {} after the macros if they are followed by a space. 18.12.50 # ah, ok. was wondering about that 18.13.07 # will do. is it ok to commit then? 18.13.43 # you use the \ sometimes (which works). But if you do not have anything after the macros, it will cause the word after the macro to be merged with the macro word. 18.13.56 # yes. I think you should 18.14.20 # damn 18.14.37 # this means the ipod wins;P 18.14.46 # breaking the divide between manual editor an coder :) 18.14.48 # if a macro is followed by a . or , etc. you should not add a \ or a {} afterwards. 18.15.18 # as that will add a space 18.15.39 # ok, thanks. i was a bit confused by that 18.16.00 # hmm. Adding {} shouldn't do any harm. 18.16.04 # the \ escapes a space. 18.16.04 # ok 18.16.10 # i'll change the \ to {} 18.16.16 # barrywardell, listen to bluebrother 18.16.24 # yes. that will be fine 18.16.46 # \, gives a space in math mode, I'm not sure about text mode. 18.16.50 Join floridablink [0] (n=keith@12.8.224.252) 18.17.10 # but I guess it will give a half space there too. 18.17.35 # bbl 18.18.43 # is the X5 rockbox bootloader loaded from disk or flash? 18.18.44 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 18.19.11 Join daurn|afk [0] (n=quae@124.243.137.107) 18.22.17 # It's loaded from flash 18.23.28 # thanks 18.23.39 # just spotted that in the wiki too:) 18.32.35 Join MarcoPolo [0] (n=MarcoPol@virlet.rez-gif.supelec.fr) 18.36.01 Quit scottder (Read error: 145 (Connection timed out)) 18.41.29 Quit SereR0kR () 18.44.16 Quit MarcoPolo (Remote closed the connection) 18.45.37 Quit daurn|afk (Read error: 131 (Connection reset by peer)) 18.46.10 Join daurn|afk [0] (n=quae@124.243.137.107) 18.47.42 Nick Ribs2 is now known as Ribs (n=freenode@91.84.8.218) 18.53.35 # Hrm 18.53.47 # dd if=/dev/sdb of=mbr.bin should generate a 512 byte file shuoldnt it? 18.54.48 # or am I missing something? 18.57.07 # it should 18.57.07 Quit Kitt0s (Read error: 131 (Connection reset by peer)) 18.57.15 Join Kitt0s [0] (i=Kaa@84.94.24.157.cable.012.net.il) 18.58.14 # hm 18.58.33 # shawn@ubuntu:~$ sudo dd if=/dev/sdb of=/mbr.bin 18.58.44 # it doesnt return in like 5 seconds like it should 18.58.54 Join obo [0] (n=obo@82-46-82-224.cable.ubr02.trow.blueyonder.co.uk) 18.58.55 # and when I hit ctrl-c it says 223 MB copied 18.59.34 # try adding bs=512 count=1 18.59.44 # seems it tries to copy the whole disk 18.59.49 # ahh there we go 19.02.10 Quit Ribs ("eh eh ehhhh!") 19.03.21 Quit mordov (Read error: 110 (Connection timed out)) 19.04.54 Quit daurn|afk (Read error: 131 (Connection reset by peer)) 19.05.56 Join daurn|afk [0] (n=quae@124.243.137.107) 19.06.58 # when it says reformat that partition, it means just the fat32 partition? 19.07.23 # or the whole drive? 19.12.55 # what mtools do I use to copy the files over onto the rockbox partition after formatting? 19.15.58 Part tucoz ("Leaving") 19.19.50 # mcopy I guess 19.20.00 # When I try and moutn the drive with mmount /dev/sdb2 or mmount /dev/sdb2 /mnt 19.20.06 # it gives me the usage arguments 19.21.01 # you need to configure a drive letter in mtools.conf 19.21.08 # ahh 19.21.37 # at least as far as I can see. Never used mmount before 19.22.03 Join mordov [0] (n=mordov@88.80-202-254.nextgentel.com) 19.22.05 # I used mtools back the days when floppy disks were still in use. mcopy a:foo.txt . 19.22.07 # and similar 19.23.13 # ok, I have it set this way in my mtools.conf: drive c: file="/dev/sdb2" 19.23.18 # barrywardell: I think the definitions (HAVE_FIRMWARE_IN_FLASH / HAVE_FIRMWARE_ON_DISK) are a bit misleading 19.23.39 # then I do this: shawn@ubuntu:~$ sudo mmount c: -t msdos 19.23.49 # is that right? I'm not sure how to confirm its mounted.... 19.24.06 # when it gets mounted "mount" will show it up 19.24.17 # then its not getting moutned correctly 19.24.20 # what am I doing wrong? 19.24.28 # no idea. Never used it. 19.24.31 # On archos (and inofficially, H1x0) it's possible to flash the actual rockbox in addition to the bootloader (the latter with a slightly different meaning on archos) 19.24.36 # sigh. 19.24.37 # but you can simply mcopy your files 19.24.44 # without mounting it? 19.24.49 # or, at least, you should be able doing so. 19.24.59 # oh. yup. 19.25.00 # yes, that's one of the purposes of mtools. 19.25.00 # neat! 19.25.12 # try floppy:/ in konqueror ;-) 19.25.31 *** Saving seen data "./dancer.seen" 19.25.33 # amiconn: why do you say that? 19.25.53 # nvm. just read your second comment 19.26.17 # when I write the mbr back to /dev/sdb, do I still need bytes=512 count=1? 19.26.43 # amiconn: any suggestions for a better definition? 19.27.03 Join GFoux [0] (n=greyfoux@APoitiers-155-1-100-225.w86-201.abo.wanadoo.fr) 19.27.05 # I don't think so -- the mbr file is only 512 bytes, so dd will stop on end of file 19.27.09 # ok 19.28.09 # Hrm 19.28.12 # that didnt seem to do anything at all 19.28.29 # when it rebooted 19.28.30 # amiconn: maybe HAVE_ROCKBOX_BL_*? 19.28.35 # it popped right back up into the apple firmware 19.28.37 # HAVE_BOOTLOADER_IN_FLASH / HAVE_BOOTLOADER_ON_DISK comes to mind... 19.29.03 # On, and on archos, there is no bootloader to install by default 19.29.05 # there are two bootloaders on H10/ipod. 19.29.48 # As long as you don't want to have rockbox in flash (that's optional), the archos bootloader directly loads rockbox 19.30.08 # there is the one in flash which we don't touch and then the rockbox one which is on disk 19.30.14 # I know 19.30.29 # HAVE_RB_BL_* 19.30.43 # that sounds best to me 19.30.57 # None of them should be defined for archos, then 19.31.10 # Or is that impossible 19.31.12 # ? 19.31.36 # Hmm, maybe it is. We need a different text, so we need a different option, correct? 19.31.36 # that's how it is now. nothing defined for archos 19.31.54 # those definitions are only used for SWCODEC 19.32.22 # Hmm. Are there no installation instructions for archos? 19.32.27 # * amiconn checks the manual 19.32.35 # Or does anyone have a patcher version of ipod_fw.c they can send me? It doesnt patch right for me. 19.32.55 # the instructions are different for SWCODEC/MASCODEC 19.33.44 # anyone know? 19.34.12 # amiconn: see getting_started/installation.tex 19.34.50 Quit GreyFoux (Read error: 60 (Operation timed out)) 19.35.53 # Hmm, ok 19.38.16 # so i'll change it to HAVE_RB_BL_* then? That sounds better to me anyway... 19.38.25 # YES! 19.38.28 # * godzirra does the uber happy dance. 19.38.33 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 19.38.45 Join dan_a [0] (n=dan-mirc@217.23.173.156) 19.38.48 # I have rockbox loading 19.38.49 # on my ipod 19.38.55 # I still need to use mtools to copy mp3s though 19.39.04 Join daurn|afk [0] (n=quae@124.243.137.107) 19.42.15 # * godzirra does the happy dance. 19.43.29 Quit ender` (" Do not fear the enemy, for your enemy can only take your life. It is far better that you fear the media, for they will steal) 19.44.12 # does rockbox need a special build to use themes? 19.44.13 # i'm confused. 19.45.31 # to use themes? 19.45.40 # Yes.. I was reading the jclix theme info 19.45.48 # and it has on his page a "rockbox build" for themes. 19.47.03 # godzirra: yes, you need a special build for his themes 19.47.24 # Ahh. 19.47.28 # I won't use his themes then. 19.48.08 # godzirra, have a look at rockbox-themes.org 19.48.27 # Ahh thank you 19.50.54 Join ender` [0] (i=null@84.52.165.220) 19.50.55 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 19.51.09 Join daurn|afk [0] (n=quae@124.243.137.107) 19.51.51 # how long does it take to copy 17 gigs to an ipod? :) 19.53.23 # approximately? 19.53.49 # no idea about ipod, but to iriver, it's about 20 minutes 19.54.05 # ok 19.54.12 # it should be done pretty quick then 19.55.43 # unless you only have USB 1.1 19.56.34 # I'm pretty sure I have 2... how can I tell? 19.57.01 Quit FOAD ("I'll be back") 19.57.34 Join FOAD [0] (n=dok@a82-93-10-238.adsl.xs4all.nl) 19.59.55 # godzirra: you probably have 2, but if it takes the better part of today to transfer, you have 1.1, and will then be forced to go out and upgrade your pc.. :D 20.00.26 # lol 20.00.32 # Its a laptop I bought about 2.5 weeks ago 20.00.44 # oh yea.. you're good 20.01.05 # usb 2 has been around for >5 years, at least.. 20.01.27 # yeah, I just looked it up to make sure 20.01.31 # I was pretty sure it wasnt 1.1 :) 20.01.41 # although it -is- still copying :/ 20.01.53 # well, ipods are slow 20.02.03 # it takes about 20 minutes to fill my 2gb nano 20.02.14 # jesus 20.02.16 # are you serious? 20.02.33 # is there a way on linux to tell how long somethings been running? 20.02.39 # yea.. idk why either..it's rather annoying, but i've always noticed that about ipods 20.03.08 # excitatory, in Apple's disk mode, or the hardware disk mode? 20.03.08 # godzirra: the only way i know is to append the time command before the command you're running. 20.03.18 # or use ps? :) 20.03.23 # 24 minutes. 20.03.27 # idk, perhaps 20.04.08 # BHSPitMonkey: um..idk.. hardware disk mode, i believe.. i deleted my apple firmware a long time ago.. so hardware, i guess, right? 20.04.14 # excitatory, that's why. 20.04.25 # hrm. 20.04.35 # please elaborate.. 20.04.42 # in that diskmode it's restricted to usb 1.1 20.04.51 # look at lsusb output when you have it connected 20.04.56 # argh. 20.05.03 # i knew something was up 20.05.06 # in the disk mode within appleOS, it's 2.0 20.05.10 # that's just a nano bug. 20.05.18 # lame.. 20.05.30 # might be corrected by now, but you probably don't want to run the updater, right. 20.05.32 # well damn. i can't be havin' this 20.05.42 # well, you could just backup your firmware partition 20.05.46 # wait... 20.05.51 # in which diskmode its usb 1.1? 20.06.00 # and is it for all ipods? 20.06.03 # the crappy looking one. 20.06.03 # hardware, on the nano 20.06.05 # and no, just the nano. 20.06.07 # Oh ok 20.06.08 # whew 20.06.10 # :) 20.06.19 # just type lsusb and look at the output 20.06.22 # There is no hardware disk mode. 20.06.39 # USB is completely software-driven on the ipod 20.07.12 # amiconn, whatever you want to call the disk mode that's outside of apple's firmware. 20.07.16 # BHSPitMonkey: well..damn.. i've been rather sick of slow transfers.. so what can i do? (keep in mind i don't have access to a mac or windows.. well maybe a friend..idk) 20.07.30 # There is 'emergency disk mode' (in the apple EEPROM) and "ordinary" disk mode in retailos 20.07.44 Quit HCl ("leaving") 20.07.50 # BHSPitLappy: No, it _is_ apples disk mode in both cases 20.07.54 # I wish there was an mtools command to do a disk usage 20.07.56 # or an ls 20.08.04 Join hcl [0] (i=hcl@hecate.student.ipv6.utwente.nl) 20.08.11 # Just one is in eeprom, the other in retailos itself 20.08.12 # amiconn, if you want to be technical you could say portalplayer's. 20.08.33 # amiconn, we communicate to be understood, not to be scored for accuracy. 20.09.23 Nick hcl is now known as HCl (i=hcl@hecate.student.ipv6.utwente.nl) 20.09.29 # so do i need teh appleos to have usb2? (i had originally deleted it to gain an extra ~64mb, and increase boot time by 2 seconds) 20.09.32 # 30 minutes its been copying now :/ 20.10.29 # excitatory, it's possible that if you update your iPod, that bug would be fixed. 20.10.41 # and then you could just re-write your firmware partition as it is now 20.11.08 # I am unsure as to whether it's been fixed. 20.12.11 # hrmph 20.12.20 # godzirra, mdir? 20.12.24 # Shutdown screen on recv1 is still not working 20.12.48 Quit TCK (Remote closed the connection) 20.12.49 # I thouht mdir heh 20.12.51 # oops 20.12.52 # heh 20.12.55 # last time I copied my complete h120 it took several hours -- the disk isn't as fast as a usual usb2 disk. 20.12.56 # plain floppy: device "/dev/sdb2" busy (Resource temporarily unavailable): 20.13.05 # Wow. 20.13.06 # that sucks. 20.13.13 # oh well, i'm going to have t ohit ctrl+c and do it later then 20.13.18 # i've got to go install a server. 20.13.23 Join TCK [0] (n=hahano@bb-87-80-197-109.ukonline.co.uk) 20.13.54 # amiconn: do you know anything about this? the usb1/2 thing in EDM, and if an ipod update would fix this? 20.14.26 # I don't know. My mini2g does transfer at USB2 high speed in emergency disk mode 20.14.31 # ok 20.14.35 # in 30 minuts I got to the O's 20.14.44 # But Overclock Remix has about 7 of the 20 gigs :) 20.15.09 # godzirra: How many gigs did it transfer in 30mins? 20.15.17 # how do I check? 20.15.28 # hmm 20.15.29 # thats interesting. 20.15.33 # 73 071 378 432 bytes free 20.15.38 # is what it said at the bottom. 20.15.44 # correct me if i'm wrong, but that says 73 gigs? 20.16.06 # depends if you're calculatin gigabytes or gibibytes 20.16.10 # no idea 20.16.14 # thats what mdir output 20.17.00 # it's bytes. That's about 68 GiB or 73 GB 20.17.06 # yeah, thats wrong :) 20.17.07 # lostlogic: around yet? 20.17.07 Quit barrywardell ("CGI:IRC (EOF)") 20.17.14 # godzirra: eh? 20.17.24 # I have a 30 gig ipod :) 20.17.27 # windows calls GiB GB, which is confusing and even wrong. 20.17.40 # For it to have 73 GB free would be a pretty cool trick 20.18.10 # Slasheri: you around perchance? 20.18.27 # then I guess it calculates wrong ... wrong sector size? 20.18.34 # pondlife: you never know ;) 20.18.38 # Maybe mdir calculates wrong as it's confused by the 2048byte real vs. 512byte virtual sectors (as seen from the pc) 20.18.41 # Aha! 20.18.44 # Could be. 20.18.59 # What's the real disk size? 20.19.06 # nm, you said it 20.19.19 # pondlife: so, what is in your mind? :) 20.19.36 # Slasheri: I have made a slightly radical change to playback.c, I've scrapped buf_ridx and used ci.curpos to work the read position out instead 20.19.50 # This has cured the problem I was looking into... 20.19.59 # pondlife: hmm, interesting 20.20.08 # pondlife: how did it work when track changes? 20.20.14 # Seems ok. 20.20.21 # godzirra: With a little interpretation I guess that it managed to copy around 10gigs within the 30 mins. 20.20.33 # That's definitely faster than usb1.1 full speed 20.20.39 # Eh. thats not horrible I guess. 20.20.49 # so you use instead tracks[track_ridx].buffer_start[ci.curpos] or something like that? 20.20.54 # Rather than buf_ridx, I'm using tracks[track_ridx].buf_idx+ci.curpos (allowing for ring buffer overflow of course) 20.21.05 # ok, that sounds good 20.21.11 # Also filebufused has gone too 20.21.21 # That is now buf_widx-"buf_ridx" 20.21.27 # i think that should work without problems 20.21.37 # nice :) 20.21.44 # So the codec controls all read positions, and audio just fills 20.22.14 # Crossfade still works, I just wondered it there was anything else I might have sacrificed by doing this 20.22.19 # 27.58 seconds to copy 97 megs. 20.22.23 # I'm off to go install a server folks. 20.22.24 # yep, seems to be a good approach. And now it might be even simplier to separate buffering code if ever needed 20.22.25 # talk to you all later. 20.22.38 # It did seem to be a juggling act, synchronising all these variables... 20.22.40 # pondlife: just commit and fix later :) 20.22.49 # Not ready for commit yet 20.22.54 # ah ;) 20.23.01 # Lots of debugging code to clear out etc. 20.23.04 # Maybe tomorrow 20.23.14 # I'll pop a patch up first too 20.23.32 # But it's another big simplification... if it all works. 20.23.33 # if i get ever time to work with the playback.c, i would like to separate the buffering code into a different file 20.23.56 # Well, I've now seperated playback.c into 3 sections - audio_ codec_ voice_ 20.24.02 # They could easily become 3 files if needed 20.24.16 # I did think about scrapping playback.c ;) 20.24.30 # :D 20.24.33 # And introducing playbackc.c, playbackv.c and playbacka.c 20.24.38 # Or something 20.24.49 # That's another day's work though 20.25.12 # There would need to be more interfaces introduced to delink the voice stuff more 20.25.13 # i would like to implement a simple and powerfull api for the buffering without dependencies from playback.c 20.25.18 # how weird 20.25.20 # on my ipod 20.25.21 Join SereR0kR [0] (n=SereR0kR@Ea03e.e.strato-dslnet.de) 20.25.26 # none of the themes wps files are loading graphics right it seems 20.25.30 # it loads a background but no other graphics 20.25.42 # that would allow it to allocate the tracks differently without need for playback engine know about how it works 20.25.47 # actually, it doesnt appear to parse much of anything right... 20.25.56 # pondlife: I hope your work also makes playback.c easier to understand. The task sepaaration (audio fills, codec reads) sounds good 20.26.02 # Like it says 114|318|Alien Angel 20.26.05 # So you don't know of any good reason why buf_ridx needs to exist. 20.26.08 # * amiconn still wants to unify playback code 20.26.17 # amiconn: This should help 20.26.30 # pondlife: no, it's only an improvement that it has been removed 20.26.37 # OK 20.26.43 # no more as strict dependencies from other tracks in the buffer 20.26.50 # anyone have any ideas? 20.27.10 # My new code may be less efficient though. More calculations for sure. 20.27.15 # haloa 20.27.22 # Although small compared to the codec work, and much more readable 20.27.56 # pondlife: Does your work already include metadata on buffer, or prepare that? 20.28.02 # No 20.28.18 # That's why I wanted to talk to lostlogic 20.28.21 # ok 20.28.28 # I hope what I'm doing won't make that harder. 20.28.57 # Because the read position will now be at the mercy of the codec 20.28.59 # * amiconn thinks he should start separating hwcodec playback from hwcodec recording 20.29.17 # pondlife: and please don't hurry about moving the metadata to the buffer.. there is many ways to do that 20.29.29 # * amiconn needs a spare time generator :( 20.29.47 # amiconn: There are more plugins to be ported to the player yet too. 20.30.04 # Charmap doom anyone? 20.30.09 # Yes, and in fact I am on to one 20.30.14 # :) 20.30.26 # aalib doom? :) 20.30.29 # FlipIt needs cleanup anyway, and is also a candidate for a player port 20.30.45 # Solitaire? Those cards still don't bounce realistically enough IMHO. 20.30.54 # lol 20.31.01 # pondlife: i think that the buffering api might be good idea to implement before that change.. would be a more advanced solution 20.32.51 # Sorry, I don't understand... 20.32.57 Join Bojannnn [0] (n=opera@PPP-01-64.beobug.com) 20.33.20 # I've got to go, too. :( 20.33.33 # don't worry, i will have a look on that if i get some time soon ;) 20.33.45 Part Bojannnn 20.33.46 # Soap around? 20.33.55 Quit pondlife ("disconnected has pondlife") 20.36.06 Join spiorf [0] (n=spiorf@host91-0.pool80183.interbusiness.it) 20.36.39 Quit spiorf (Remote closed the connection) 20.36.47 Join spiorf [0] (n=spiorf@host91-0.pool80183.interbusiness.it) 20.38.45 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 20.38.59 Join daurn|afk [0] (n=quae@124.243.137.107) 20.39.00 Join rconan [0] (n=richard@82-45-37-17.cable.ubr08.azte.blueyonder.co.uk) 20.39.11 Quit rconan (Read error: 104 (Connection reset by peer)) 20.50.03 Quit FOAD ("Lost terminal") 20.53.13 Join _FireFly_ [0] (n=FireFly@dslb-084-056-066-085.pools.arcor-ip.net) 20.53.47 Join FOAD [0] (n=dok@a82-93-10-238.adsl.xs4all.nl) 20.56.06 Join dpro [0] (n=x@chello080109121047.8.15.vie.surfer.at) 20.57.51 Join Lear [0] (n=chatzill@h210n7c1o285.bredband.skanova.com) 20.59.53 Quit _FireFly_ ("Leaving") 21.00.15 # re 21.00.52 # ok, i'm at the data center waiting for crap to copy 21.01.01 # anyone have any idea why my ipod seems to only be parsing part of the wps file? 21.03.50 # godzirra: Is it a WPS which comes with Rockbox, or one you downloaded? 21.03.56 # one which I downloaded 21.04.02 # which ones come with rockbox? i'll test one of those 21.04.07 # dan_a: And its -all-of the ones I downloaded 21.04.08 # not just one 21.04.13 # from rockbox-themes.org 21.04.39 # A lot of the downloaded ones need a patched version of Rockbox - for e.g. album art 21.05.04 # this one seems to be just loading bmps 21.05.06 # no album art 21.07.03 # DancePuffDuo, Unicatcher, boxes, engineeer2, iAmp, iCatcher, ipodVOL, marquee and zezayer are the included ones. 21.07.39 # Load the whole theme (not just the WPS) otherwise they probably won't look right 21.08.18 # ok, of those I only have boxes 21.08.19 # and it looks ok 21.08.40 # wait, i have unicatcher and icatcher too 21.09.19 # I think if you get a theme for your machine, that has a minimum version of "any recent daily build" it *should* work 21.09.21 # nope 21.09.23 # still doesnt load the background 21.09.31 # I have a daily build from probably... hmm 21.09.33 # i dunno.. a week ago? 21.10.22 # Which themes haven't worked? 21.10.51 # godzirra: which ipod anyway ? 21.11.03 # 5.5g 21.11.24 # jblackglass, flamebox, hipod dark x5,and then unicatcher and icatcher 21.11.24 # godzirra: ah ok, I have only access to a mini ATM so backgrounds aren't really an issue over here ;) 21.11.28 # hhe 21.11.29 # hehe 21.12.06 # godzirra: but my last cvs checkout is about from that time 21.12.20 # godzirra: but all the less spiffy ones work ? 21.12.26 # jBlackGlass has a minimum version of "jBuild" 21.12.38 # (i.e. a patched Rockbox) 21.12.38 # they still display an image trying to load in the top left corner 21.12.41 # and it doesnt load 21.12.45 # dan_a: ok 21.13.05 # all of them seem to be trying to load a background 21.13.17 # Try the ones that say "Any Recent Daily Build" as the Min Version 21.13.30 # ook, i'll have to try when i get home 21.13.35 # I'm just thrillde i have it running 21.13.37 # I detest itunes :) 21.13.40 # HiPod Dark should work 21.14.18 # (though HiPod Dark X5 is probably for the IAudio X5) 21.14.27 # Probably 21.14.35 # but it should still load the background 21.14.38 # and just look funny maybe 21.14.44 # i'll try more when I get home and chat with you guys about it 21.15.18 # I'm just happy to have the LED on my Sansa flashing... WPSs are a long way away! 21.15.34 # hehe 21.17.10 # sounds good 21.18.21 Join _FireFly_ [0] (n=FireFly@dslb-084-056-066-085.pools.arcor-ip.net) 21.18.41 # Archos users might dislike the recent changes in TagCache. With the default tagnavi.config, it now allocates some 280 kB during startup (with no tagcache in RAM). :) 21.19.14 # darn, missed pondlife 21.19.27 # jhMikeS: what's the latest commit good for? 21.20.43 # lostlogic: yep, that will be optimized in future.. more dynamic allocations =) 21.20.51 # i meant Lear. 21.22.29 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 21.22.43 # Slasheri: no performance concerns with pondlife's new buf_ridx removal? That's be the only thing I'd have against it. It actually also makes metadata-on-buffer easier, IMO 21.22.56 Join daurn|afk [0] (n=quae@124.243.137.107) 21.23.22 # lostlogic: i don't think that would have a huge impact in performance 21.23.30 # something like +-2% should be ok 21.24.03 # yes, and it makes it easier to implement the separate buffering api and buffering schemes 21.24.16 Join ikke33 [0] (n=jdjdjdj@d54C3F52B.access.telenet.be) 21.24.20 # hi 21.24.32 # i've got a question about rockbox on my ipod video 21.24.42 # is there a way i can set the font higher 21.24.48 # so the lettres are bigger? 21.24.54 # words* 21.25.18 # Slasheri: coo' hey -- we agreed about something just now :-P 21.25.29 Quit _FireFly_ ("Leaving") 21.25.33 *** Saving seen data "./dancer.seen" 21.25.52 # hehe, the legendary moment :D 21.26.28 # ikke33: you can select fonts... somewher ein the menu 21.26.31 # check the manual for details 21.27.07 # Hmm... Build server down again? 21.27.08 # and make sure you've downloaded the font zip from the daily build page if you haven't done so before 21.27.50 # ok thx 21.28.49 Quit mordov (Read error: 110 (Connection timed out)) 21.30.04 # there's a build running on my box atm 21.30.19 Join _FireFly_ [0] (n=FireFly@dslb-084-056-066-085.pools.arcor-ip.net) 21.30.34 # and here as well 21.30.47 # Ah, now it shows on the cvs page. Took a little while. 21.31.02 Quit _FireFly_ (Client Quit) 21.33.34 Join ender1 [0] (i=null@84.52.165.220) 21.33.51 Quit ender` (Nick collision from services.) 21.33.56 Nick ender1 is now known as ender` (i=null@84.52.165.220) 21.34.34 # anyone know where i can find the .fnt files for fonts? 21.34.43 # i downloaded last update but can't find them 21.34.47 Join [TCK] [0] (n=hahano@bb-87-80-197-109.ukonline.co.uk) 21.35.27 Quit Ed (Nick collision from services.) 21.35.28 Join Ed_ [0] (i=ed@palm.hoeg.nl) 21.36.57 Join _FireFly_ [0] (n=FireFly@dslb-084-056-066-085.pools.arcor-ip.net) 21.38.23 # lostlogic u still here? 21.38.35 # ikke33: See "last" archive on http://www.rockbox.org/daily.shtml 21.38.47 # (Down to the right) 21.38.47 # preglow: which? 21.38.57 # ahh 21.38.58 # srry :p 21.41.45 # the one you just commited? 21.42.23 # preglow: Help keep the meters better synced with the audio even if playback struggling and lurching. 21.42.49 # cool 21.43.37 Join merbanan [0] (n=banan@c80-216-155-218.cm-upc.chello.se) 21.43.46 # It looked a bit better on x5 so it probably helps on iRiver too. I didn't change the update rate defined for the WPS though (20fps) 21.44.04 # can gcc4 be used to build the toolchain ? 21.45.06 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 21.45.38 Join daurn|afk [0] (n=quae@124.243.137.107) 21.46.52 # mirak: I would think so 21.46.59 # doesn't it work? 21.47.22 Quit TCK (Read error: 110 (Connection timed out)) 21.48.17 # don't know, I didn't switched yet 21.48.23 # I think I've done that on ubuntu... (32-bits at least) 21.50.22 Join Id2ndR [0] (n=ubuntu@laf31-2-62-34-88-193.dsl.club-internet.fr) 21.50.42 # dan_a: nice commit! 21.52.25 # Bagder: Thank you! It was about time we had some movement 21.52.36 # indeed 21.53.30 # It seems to take a *very* long time to start running though 21.54.01 # it does? how weird 21.54.10 # how long? 21.54.19 # well I think the OF takes oddly long too 21.54.26 # tried doing a set_cpu_frequency? 21.54.33 Join mordov [0] (n=mordov@88.80-202-254.nextgentel.com) 21.54.52 # what's the risk of breaking the sandisks, btw? 21.54.59 # Not yet, and I've not set the cache up yet 21.55.11 # preglow: there should be no risk at all really 21.55.55 # I've not broken mine yet 21.56.23 # ... as we don't mess with the original bootloader and that has a recovery mode 21.56.39 Join pondlife [0] (n=Miranda@cpc1-rdng11-0-0-cust472.winn.cable.ntl.com) 21.57.16 # lostlogic: he's here! 21.58.33 Join Paul_the_Nerd [0] (n=Llorean@cpe-70-112-165-230.austin.res.rr.com) 21.58.43 Join Ribs [0] (n=freenode@91.84.8.218) 22.00.39 # godzirra: Iirc background bitmaps are loaded _only_ if the bitmap matches the LCD resolution exactly 22.02.40 Quit NickDe ("Leaving") 22.03.38 Quit Ribs ("eh eh ehhhh!") 22.04.40 Join Ribs [0] (n=freenode@91.84.8.218) 22.06.05 Join Davide-NYC [0] (n=chatzill@user-12hdtm5.cable.mindspring.com) 22.06.58 # And the bitmap must be 24-bit I believe 22.09.55 Quit dpro (Read error: 110 (Connection timed out)) 22.10.23 Join XavierGr [0] (n=xavier@ppp45-143.adsl.forthnet.gr) 22.10.32 Join lee-qid [0] (n=liqid@p54967C4B.dip.t-dialin.net) 22.11.45 # the ipod sim loaded my optimized 8-bit backgrounds, fwiw 22.12.46 # Using either the %X wps tag or the "Set as Backdrop" menu option? 22.12.57 # the latter 22.13.19 Join rconan [0] (n=richard@82-45-37-17.cable.ubr08.azte.blueyonder.co.uk) 22.13.28 # Hm, I thought 24-bit was a requirement on backdrops for some reason, even though 1 and 8 are valid in WPSes. 22.13.34 # Then again, it doesn't really matter what you use. 22.13.50 # For backdrops they're all converted to the native LCD dept and stored in a static sized buffer anyway. 22.14.00 # depth 22.14.32 # mostly i did it because i was concerned about the 24bit -> 16-bit colour squash, so figured bitmaps with fewer colours might work better 22.14.49 # but since i haven't been able to get it to run on my 5.5 yet, i can't really check 22.19.35 Join petur [0] (n=petur@rockbox/developer/petur) 22.22.16 # a colour subject to squashing will squash (I like that word) regardless of how many colours you use I believe. 22.22.21 Quit daurn|afk (Read error: 104 (Connection reset by peer)) 22.22.45 Join daurn|afk [0] (n=quae@124.243.137.107) 22.24.22 Quit lostnihilist ("Leaving") 22.27.33 Quit pondlife ("disconnected has pondlife") 22.28.25 Join lostnihilist [0] (n=lostnihi@adsl-69-211-10-88.dsl.chcgil.ameritech.net) 22.30.44 Join Elric-Kun [0] (n=Elric-Ku@cm100.epsilon203.maxonline.com.sg) 22.30.55 Nick Elric-Kun is now known as L (n=Elric-Ku@cm100.epsilon203.maxonline.com.sg) 22.30.59 # Hello guys 22.31.47 # hi L 22.32.11 # Hey 22.39.48 Quit spiorf (Remote closed the connection) 22.47.05 Quit perpleXa ("Leaving") 22.51.07 Quit ikke33 () 22.52.08 Quit alberink ("using sirc version 2.211+KSIRC/1.3.12") 22.52.35 Join NickDe [0] (n=nicholas@ip68-14-79-70.ri.ri.cox.net) 22.54.01 Quit GFoux ("Le vrai danger, c'est quand les hommes penseront comme les ordinateurs") 22.55.41 Quit lightyear (Remote closed the connection) 22.56.19 Join alberink [0] (n=alberink@cc516682-b.ensch1.ov.home.nl) 23.00.41 Quit Davide-NYC (Read error: 104 (Connection reset by peer)) 23.06.33 # markun: did you research of appartment advanced ? 23.07.18 Quit _FireFly_ (Read error: 110 (Connection timed out)) 23.09.58 Join _FireFly_ [0] (n=FireFly@dslb-084-056-117-153.pools.arcor-ip.net) 23.16.54 Quit _FireFly_ ("Leaving") 23.20.01 # mirak: haven't found a room yet 23.20.15 # Why, are you inviting me? ;) 23.20.34 # that's really too small sorry :) 23.20.38 # 18 m² 23.20.58 # moving to france? 23.21.07 # internship in paris 23.21.13 # ritghieo 23.21.22 Quit petur ("here today, gone tomorrow") 23.21.44 # markun: 300 euros is really the max you can afford ? 23.22.23 # you want to live near Univ Paris 8 or inside Paris ? 23.23.04 # hah 23.23.13 # you wouldn't get anything in oslo for that, i think 23.23.20 # how are paris prices? 23.24.09 # sneakums: why not dither 24->16? 23.24.56 Quit psiborg ("leaving") 23.25.06 # jhMikeS: couldn't find an easy way to do that in the gimp 23.25.14 Join matsl_ [0] (n=matsl@1-1-4-2a.mal.sth.bostream.se) 23.25.18 # i betcha there is a way, though 23.25.27 # dithering to 256 with F-S looks pretty good though 23.25.35 # gimp? enlighten me on that term 23.25.38 *** Saving seen data "./dancer.seen" 23.25.48 # jhMikeS: image-editing softwre 23.25.53 # jhMikeS: www.gimp.org 23.25.53 # www.gimp.org 23.26.10 # photoshop-alike that's not really photoshop yet, heh 23.26.10 # I mean on the fly when you load it. I could put that together pretty quick 23.26.55 # only need 32 bytes for the matrices 23.27.51 Quit Id2ndR ("Parti") 23.28.20 # maybe I'm way off purpose? 23.30.50 Join linuxstb_ [0] (i=5343d4aa@gateway/web/cgi-irc/labb.contactor.se/session) 23.36.19 # heh...I'll just do it...recording's stuck right now anyway. 23.37.54 # * scorche is off to a covenant/rotersand/imperative reaction concert ^_^ 23.38.25 # Hmmmmm 23.40.33 Quit Lear ("Chatzilla 0.9.75 [Firefox 2.0/2006100319]") 23.42.24 # jhMikeS: that'd be pretty keen 23.46.42 Join BigBambi [0] (n=Alex@cpc2-nfds9-0-0-cust419.leic.cable.ntl.com) 23.46.45 # jhMikeS: Some effort is made to convert from 24->16, but I'm not sure how it's done. 23.47.05 # all i saw when i read the code was the colours being truncated 23.47.09 # but maybe i missed somethiing 23.47.35 # I doubt they were just truncated. 23.47.44 # That seems odd 23.51.07 Quit rconan ("Leaving") 23.54.19 # Paul_The_Nerd: truncation 23.54.36 # It just uses the RGBPACK macro 23.55.55 Join PaulJam [0] (n=pauljam@vpn-3013.gwdg.de) 23.57.05 # Ah well