00:04:19 *** marlop has quit (Quit: marlop) 00:12:37 anyways I'm going to work on a new portable app, bsnesPortable, much easier, and relatively much newer than zsnes and already has an option to be made portable 00:13:35 Good. Are you going to try the PortableApps.com Launcher for it or write your own NSIS code? 00:14:52 well prefferably my own nsis code 00:15:49 nothing against your launcher idea but I like coding on my own 00:16:15 and I did test your launcher and it worked as expected but the fun factor of coding my own launcher is 10x more exciting to me 00:18:32 *** kaeos has quit (Quit: kaeos) 00:26:46 *** ptmb has quit (Read error: Connection reset by peer) 00:38:02 *** SrgSiler|ZNC is now known as SergentSiler 00:38:14 *** SergentSiler has quit (Excess Flood) 00:38:45 *** SergentSiler (sergentsil@unaffiliated/sergentsiler) has joined #portableapps 00:38:49 SergentSiler is a PortableApps.com Menu Themer, his theme website is http://silerhost.site50.net 01:00:07 *** SergentSiler is now known as SrgSiler|ZNC 01:04:54 *** Res2216firestar (Sam@wikipedia/Res2216firestar) has joined #portableapps 01:15:03 *** Jacobm001 (~jacobm001@75-95-186-183.mfd.clearwire-dns.net) has joined #portableapps 01:15:25 *** Jacobm001 is now known as Guest11237 01:15:33 *** Guest11237 has quit (Read error: Connection reset by peer) 01:30:51 *** Res2216firestar has quit (Quit: Leaving) 01:35:36 *** Bruce_ (~466f03b8@gateway/web/freenode/x-geyifldawurkfjrm) has joined #portableapps 01:36:05 *** Bruce_ is now known as BrucePascoe 01:36:14 Hello, BrucePascoe! 01:36:18 Good to see you here :-) 01:36:25 Glad you could come in 01:37:19 The latest fix didn't solve my issue with SD, and Inno Setup already worked fine before... so I guess that wasn't it. 01:38:09 Hmm... 01:38:41 And IS doesn't have a WaitForEXE? 01:38:49 Or WaitForOtherInstances=false? 01:39:00 Nope, just ProgramExecutable=InnoSetup\Compil32.exe 01:39:33 Have you tried debug mode yet? 01:39:52 If so, does SD get as far as the "All instances are finished." message? 01:39:58 Hold on, let me try. 01:44:17 Ah hah! 01:44:22 What happens? 01:44:36 It's trapped in an endless cycle of cleaning up %APPDATA%\ICSharpCode over and over and over again... 01:45:11 OK... I'll look at that now 01:45:31 Nevertheless, that "fix" of mine should improve performance ever so slightly 01:46:05 Yeah, I wasn't doubting the fix was a good thing, it just didn't fix the particular issue I was having. :) 01:46:54 Seems like that in particular was never a problem. But if I can skip the need to check the process table etc. it'll improve performance ever so slightly 01:47:34 So it keeps on doing its "Copying settings from $1\*.* to $DATADIRECTORY\$0." stuff over and over again? 01:47:48 No 01:47:56 "Removing directory if it is empty" over and over again 01:48:09 Ahh, so it's the DirectoriesCleanupIfEmpty which is breaking 01:49:08 So it's saying "Cleaning up $1 if it is empty." 01:49:12 Yes. 01:49:21 With parsing in between each iteration. 01:49:26 Where $1 is C:\...\ICSharpCode 01:49:37 I believe so, yes. 01:49:41 Let me check again to make sure. 01:50:18 Oh dear. Oh deary dear. I can't work out what the problem is. 01:51:04 Take a look at Other\Source\Segments\DirectoriesCleanup.nsh yourself and see if you can spot anything wrong... I can't. 01:52:02 Yep, "before location parsing", "after location parsing", "cleaning up $1 if empty" in an infinite loop. 01:52:08 All right, I'll check it out, give me a bit. 01:53:41 It's got the IntOp $R0 $R0 + 1, that should do it. But it's not getting above 1..? 01:54:05 What does {|} mean? I'm not familiar with LogicLib. 01:54:14 ${|} I mean 01:54:19 It puts in ' 01:54:56 ${IfThen} ${Errors} ${|} ${ExitDo} ${|} is equivalent to three lines, ${If} ${Errors}, ${ExitDo}, ${EndIf} 01:55:14 It's part of the way the macros work. 01:55:57 Yeah, NSIS really wasn't designed for this type of thing. But anyway, is there a way I can get it to print the indexer? 01:56:43 indexer? You mean $R0? 01:56:59 Yes 01:57:14 You could put in something like ${DebugMsg} "$$R0 = $R0" at the start and end of the loop and just before the IntOp 01:59:21 Wow, the NSIS compiler sure is verbose when compiling this thing 02:00:06 It is fairly. I should trim down the verbosity on some things. 02:00:33 It's not as verbose as it could be though. Think yourself lucky that *Func.nsh have verbosity at 3 rather than 4. 02:00:49 *** MaienM is now known as MaienM|Sleep 02:00:50 Languages I should take down to 3. 02:01:40 Ah 02:01:44 This is strange 02:02:03 Before the IntOp, $R0 is literally blank ("$R0 = "), afterwards it's 1 02:02:18 And that's true with each iteration 02:02:24 It starts blank, then increments to 1 02:02:32 Thought that might be the case. So I've got a stack problem in there somewhere. 02:03:49 let me do some more testing, give me a couple more mintues 02:04:25 *** Res2216firestar (Sam@wikipedia/Res2216firestar) has joined #portableapps 02:04:48 I've been rewriting the whole variable parsing mechanism anyway - using real environment variables rather than string replacement. 02:07:05 That wouldn't help here, though... would it? 02:07:12 I think you'll find that just before ParseLocations $R0 = 1 and immediately after it is null 02:07:36 BrucePascoe: rewriting it can fix stack problems by removing them 02:08:12 yep, becomes null after ParseLocations. NSIS is weird 02:08:58 (In future due to this change you'll be using %PAL:DataDir% and things like that rather than %DATADIR%, and instead of %/DATADIR% it'll be %PAL:DataDir:ForwardSlash%. Ones like %APPDATA% will stay the same as they're system environment variables, and all local variables will also be thus available) 02:09:41 And I can't work out what the issue is with ParseLocations. 02:09:51 What if I need something like %/APPDATA% though? 02:10:13 Some new variables will be defined for this purpose: %APPDATA:ForwardSlash% 02:10:38 And %*:DoubleBackslash% and :java.util.prefs as well 02:11:39 Won't you still have the stack bugs though, since you'll have to handle the custom variables yourself? 02:11:45 * ChrisMorgan is thinking StrReplace is destroying $R0 02:12:37 BrucePascoe: they will just be set in the global environment space, so no. 02:12:57 *** JacobMastel (~Miranda@75-95-186-183.mfd.clearwire-dns.net) has joined #portableapps 02:13:19 You can use characters like : and . in environment variable names? 02:13:20 It will no longer be using ${StrReplace} to expand %whatever% - it will be using the NSIS command ExpandEnvStrings which passes it onto a method in the Win32 API which... expands environment strings 02:13:23 Sure 02:13:44 There are a few "PortableApps.comThingummy" variables set by the Platform even now. 02:13:51 And be sure I tested : before using it. 02:14:10 :~ is a dangerous combination though so I'm not using it 02:14:40 %foo:~2,2% takes two characters starting at character two, or something like that, of environment variable foo 02:15:02 Is there a limit to how many environment variables you can set though? I'm sure with the way PAL is set up you're going to have lots of them, one for each path style. 02:16:06 BrucePascoe: not all that many, actually. The only limit is of how long each can be. 02:16:46 *** JacobMastel is now known as JacobMastel-Away 02:17:09 Which is either 4KB (Up to 2000, SP4 or so) or 32KB (ever since). 02:17:23 Ah 02:17:24 And seeing as NSIS_MAX_STRLEN is 1024, you're safe. 02:17:42 off topic a bit, I read about java.util.prefs paths in help.html, they're really weird. What purpose does it serve to add a slash before each uppercase character? 02:17:45 I don't believe we're in danger of running out of environment space at all. 02:17:55 BrucePascoe: don't ask me, ask the designers of them... 02:18:16 But it's not just uppercase character, it's before every character that's not lowercase or a colon as far as I can tell. 02:19:26 I haven't tested java.util.prefs as thoroughly as I could, but that seemed to be what it was. I should try it with . and , and high ASCII and Unicode characters really to make sure it's doing that, or find some source code for java.util.prefs that covers paths. 02:20:00 So can this be fixed, or do you have to do the overhaul first? 02:20:31 BrucePascoe: I think it's an issue with StrReplace itself, gotta check that first 02:21:17 I have to say, programming with NSIS feels like programming in the dark ages. No stepping debugger, assembly-style constructs... 02:22:52 Anyway I gotta go for now, let me know in the PAL thread if you have any updates. 02:24:08 *** BrucePascoe has quit (Quit: Page closed) 02:25:47 StrReplace fails a stack test. 02:26:25 $R0 gets the value from $R1 02:30:47 Uh oh, this is a messy stack list... *sigh* 02:31:18 I think I'll throw StrReplace out and use WordReplace for the moment even though it's slightly less efficient 02:51:45 *** OliverK|Mepis (~OliverK@unaffiliated/oliverk) has joined #portableapps 02:56:30 *** qwertymodo (~Ben@216.115.8.130) has joined #portableapps 02:57:14 *** OliverK|Mepis has quit (Quit: Leaving) 03:01:53 *** JacobMastel-Away has quit (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 03:20:24 Oh ho, a splash screen for PChat Portable! 03:21:30 finally :D 03:22:04 *** qwertymodo has parted #portableapps ("Leaving.") 03:23:55 Yep, a good thing 03:24:18 Seemed to me it should be a candidate for rapid output, as XChat had got to Pre-Release 03:26:27 There, I've replaced StrReplace with WordReplace from WordFunc. 03:33:47 *** alexis_ (~6c008656@gateway/web/freenode/x-cmhyaiteqfhakcdv) has joined #portableapps 03:34:05 *** alexis_ has quit (Client Quit) 03:36:36 *** pa_5624 (~6c008656@gateway/web/freenode/x-pwslilafxgakntrm) has joined #portableapps 03:37:01 Hello, pa_5624! Can we help you with anything? 03:37:29 *** Scriptdaemon (~KennyW@139.182.188.186) has joined #portableapps 03:37:42 I just got a new computer and have been using Thunderbird on my old one for some time. Is it possible to transport it to my new computer? 03:37:54 Folders and everything??? 03:39:06 Are you still there 03:41:06 <@ChrisMorgan> are you still there? 03:41:17 Sorry, yes 03:41:33 Are you using Thunderbird Portable or just Thunderbird itself? 03:41:50 Take a look at http://www.mozilla.org/support/thunderbird/profile 03:41:52 I think just Thunderbird. My brother set me up on it. 03:42:28 any other suggestions or will it be self explanatory from there? 03:42:44 Use the instructions on that page to locate the profile and copy it to the new location. 03:43:03 It should make sense 03:43:16 Awesome! Thank you so much. I was ready to tear my hair out! :) 03:45:03 <@ChrisMorgan> 03:45:16 do I want to locate or back up?? 03:45:31 You want to locate it, and then copy it onto the new computer in the same location 03:45:58 thank you! 03:46:01 http://www.mozilla.org/support/thunderbird/profile#move 03:46:05 You're welcome 03:51:18 *** Scriptdaemon has quit (Quit: Politeness, n. The most acceptable hypocrisy.) 04:00:43 <@ChrisMorgan> okay... I am an idiot! I have no clue what I am doing here??? Do I want to save it somewhere and then save it on a USB drive and put it on my new computer? 04:01:08 Is there someone I can talk to on the phone to walk me through it? 04:01:52 pa_5624: you are wanting to copy it to %AppData% on the new computer 04:02:31 so do I do this stuff on the new computer or do the directions on my old computer? 04:03:25 what is %AppData%? do i access from the new computer? 04:04:14 Yes 04:05:20 You're wanting to copy it from %AppData%\Thunderbird\Profiles on the old computer to %AppData%\Thunderbird\Profiles on the new computer. 04:06:04 So, you should probably just go to %AppData% in Explorer on the first one, copy the Thunderbird directory, and then go to %AppData% on the new one and paste it in there. 04:07:53 PChat Portable Pre Release 1 ready for testing http://portableapps.com/node/22610 04:08:33 ZachThibeau: good for you :-) 04:08:40 yes :) 04:09:04 I'm moving my svn repo from sourceforge to my own hosted svn for PChat development too 04:13:39 You prefer SVN to bzr, hg or git? 04:14:06 you bet 04:14:13 tis the only way for me :) 04:14:31 I've tried all others and I just prefer good ol' svn 04:15:52 Why, oh why? 04:15:58 bzr is better than svn any day 04:18:18 *** Res2216firestar has quit (Quit: Leaving) 04:18:18 in your own opinion, if you are going to say that you shoving what you think is better, I just happen to like svn out of all of the others 04:19:58 ZachThibeau: having been an svn-only user, once I got started with bzr I can say quite straight that it's better than svn. Faster, more powerful, more useful, but not harder to use (other than for setting up authentication) 04:20:15 *** JohnTHaller1 (~JohnTHall@cpe-67-247-35-38.nyc.res.rr.com) has joined #portableapps 04:20:21 *** JohnTHaller1 has parted #portableapps (None) 04:20:29 hey like I said I've used others and much prefer svn over all the rest 04:20:34 it fits my needs 04:22:00 *** JohnTHaller (~JohnTHall@cpe-67-247-35-38.nyc.res.rr.com) has joined #portableapps 04:22:03 hi all 04:22:10 Hey JohnTHaller 04:22:11 howdy JohnTHaller thanks for the splash :D 04:22:18 you're welcome ZachThibeau 04:22:37 Well, JohnTHaller, I just had to replace StrReplace because of a stack bug with $R0... 04:23:03 That was v4 of it, not v3 which used private variables 04:23:26 StrReplace pluing or built in NSIS function? 04:23:38 nsh 04:23:43 Not TextReplace 04:23:56 I haven't looked into using TextReplace for find/replace in a string at all. 04:24:35 ok 04:24:38 good to know 04:24:43 you post the fix to NSIS? 04:25:15 ZachThibeau: Sorry it took a few days. I was installing Win7 and took a bit to rebuild my dev box. 04:26:00 no worries, I was kind of busy myself, I had my pc to reinstall win7 on and I'm recompiling my ircd and reconfiguring ZachNet again 04:26:02 No, I looked at StrReplace and decided it would be too hard to fix :D 04:27:21 ChrisMorgan ------ So I got the profile from my olde computer... Starts with General... then profile.... When I opened up %appdata% on the new computer, I dont know where to put it???? 04:27:48 You should have just copied the Thunderbird directory from %AppData%. That's the easiest way of doing it. 04:29:19 wheres the directory? It shows Profiles and Registry.... 04:30:13 *** dbdii407 (~dbdii407@unaffiliated/dbdii407) has joined #portableapps 04:30:57 Copy the Thunderbird directory - not Profiles or Registry, but the whole Thunderbird directory 04:35:49 I have NO clue what I am doing? Is there any number I can call? This is all of my work e-mail. 04:38:01 pa_5624: on your old computer: go to %AppData% in Explorer (type it in) and copy the Thunderbird directory. 04:38:21 Then on your new computer, go to %AppData% and put your Thunderbird folder in there. 04:38:28 I dont see the directory... 04:38:38 on the old computer? 04:39:50 Yes on the old computer there are a bunch of files when I go to appdata. Then I go to the folder that says Thunderbird. Then there is a profiles folder, profiles configuration settings, and a registry 04:40:02 No, just copy the Thunderbird directory. 04:40:12 Don't go into it, copy the whole directory. 04:40:31 night all 04:40:35 *** ZachThibeau is now known as ZachT|ZzZz 04:40:36 G'nite ZachThibeau 04:40:37 Night ZachThibeau 04:41:04 I don't know what you mean by directory? 04:41:58 Folder 04:42:41 Should it end in \thunderbird ? 04:43:44 and when I past it in on the new computer.... where do I paste, under search? 04:45:36 *** JohnTHaller has parted #portableapps (None) 04:48:51 pa_5624: you paste it in %AppData% on the new computer, just as it was on the old computer 04:49:01 <@ChrisMorgan> I am an absolute idiot! I need help. Is there anyway I can get someone to talk me through this on the phone. 04:49:21 I doubt it 04:49:23 *** Computator (~Computato@unaffiliated/computator) has joined #portableapps 04:49:40 I can't paste because I am going from one to the other. I don't even know what I am supposed to paste????? 04:49:59 Is it the C:\Documents and settings?? 04:52:29 pa_5624: you may need to copy it via a USB disk 04:52:34 The Thunderbird folder. 04:53:02 Then, do the same, open Explorer, type in %AppData% to the address bar. 05:13:36 *** JohnTHaller (~JohnTHall@cpe-67-247-35-38.nyc.res.rr.com) has joined #portableapps 05:29:17 *** JohnTHaller has parted #portableapps (None) 05:31:22 *** JohnTHaller (~JohnTHall@cpe-67-247-35-38.nyc.res.rr.com) has joined #portableapps 05:31:33 hello all 05:32:48 Hello once more JohnTHaller :-) 05:33:14 * ChrisMorgan is just reducing the verbosity of compiling PortableApps.comLauncher.nsi significantly 05:33:37 * JohnTHaller is trying to remain sane this week, 05:33:55 How're you faring? 05:34:25 * JohnTHaller just lost $180 to buy a new code signing cert because our old one wasn't properly backed up (by him) during a system upgrade. 05:35:11 By whom? 05:35:18 By him as in me him 05:35:23 Ah 05:35:29 That wasn't very sensible :-( 05:35:51 Nope. Thought it was all set. But it was the one that expired in Sept 09 that was all properly backed up. 05:36:02 Which is VERY useful 05:36:23 Erk. At least it's VERY useful ;-) 05:37:53 Just a horrendously bad week on my end. 05:38:44 And trying to work out a release for Wed is becoming impossible. We're doing a special version of the suite with a couple of hiphop artists in NYC geared towards music creators with lots of music assets released under CC licensing. 05:39:38 That's a release I wouldn't have thought about... :P 05:40:43 Yeah, I had the idea after talking to an artist who'd wanted to get tools in musicians hands. Either open source, freeware or low cost. And the assets to get them started. Seemed like a good fit. So we started working on it a few weeks ago. 05:43:14 So what sort of software included? 05:43:30 Audacity, VLC?, CoolPlayer?, 05:43:39 Custom theme? 05:44:12 Yeah and yeah. 05:44:49 We are working on a couple freeware additions as well. Some back and forth over naming and such. 05:49:58 I /think/ that it should now be working... true environment variable expansion in the PortableApps.com Launcher. 05:50:48 And it's 3KB smaller - 118KB instead of 121KB :D 06:05:22 cool 06:05:26 alrighrt, need sleep 06:05:28 some anyway 06:06:30 G'nite JohnTHaller 06:08:44 There, just pushed 6 changesets to the launcher repository. 06:08:57 I'm up to revision 106 already. 06:09:12 *** JohnTHaller has parted #portableapps (None) 06:10:41 Now I should go and feed a friend's dogs, and then shortly afterwards we'll be off to a school picnic for the young ones, so I'm probably off for the night. Enjoy my latest changes to the PortableApps.com Launcher, and don't forget to test them for me, please :-) 06:15:10 *** Computator has quit () 06:16:13 *** pa_5624 has quit (Quit: Page closed) 06:55:35 *** ChrisMorgan has quit (Ping timeout: 246 seconds) 07:34:23 *** rmccue (~rmccue@unaffiliated/rmccue) has joined #portableapps 07:34:31 *** rmccue has quit (Client Quit) 07:45:14 *** palogbot (~palogbot@delawarepark.safesecureweb.com) has joined #portableapps 07:45:14 Topic for #portableapps is: Welcome to the PortableApps.com support channel. Visit us at http://portableapps.com/ | If you need assistance, just say "help!", or ask your question, and WAIT rather than just leaving. | This channel is logged: http://nascent-project.org/irc/logs | The #PortableApps IRC rules are here: http://gizmokid2005.com/paircrules Read and abide by them. 07:45:14 Users on #portableapps: palogbot dbdii407 SrgSiler|ZNC +GizmoBot BjornH rouilj2 MaienM|Sleep Suiseiseki Bensawsome @Gizmokid2005 Guest82786 Zarggg +ZachT|ZzZz StatBot Mir 07:45:15 *** GizmoBot has quit (Remote host closed the connection) 07:45:15 Auto-Message: palogbot has been restarted. 07:45:15 Auto-Message: palogbot has been restarted. 07:45:42 *** GizmoBot (~GizmoBot@gizmokid2005.com) has joined #portableapps 07:45:45 GizmoBot is the official bot of #Gizmokid2005 and #PortableApps. 09:42:12 *** ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan) has joined #portableapps 09:42:14 ChrisMorgan is a PortableApps.com developer and moderator and works on the PortableApps.com Launcher (please test it!) 10:10:40 *** Twinkletoes|W (~chatzilla@dze3bf81.brookes.ac.uk) has joined #portableapps 10:37:15 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps 10:42:43 *** Oni-Neoxes has quit (Quit: Quit... D:) 10:51:38 *** W0TAN (~N972059@zep11.it-austria.net) has joined #portableapps 10:53:35 Hi, does anyone know why the https certificate of https://portableapps.com has expired and was never renewed? 10:53:42 * W0TAN loves PortableApps.com 10:54:09 *** pa_3142 (~d596017d@gateway/web/freenode/x-jkcfthvzzapjdecf) has joined #portableapps 10:56:42 *** pa_3142 has quit (Client Quit) 10:57:54 *** W0TAN has parted #portableapps (None) 10:58:36 *** W0TAN (~d596017c@gateway/web/freenode/x-gtorksymkriapjhw) has joined #portableapps 11:03:32 W0TAN: we have no need to use https 11:05:05 well, "we" might be but to avoid listening in to conversations by overly suspicious sysadmins or bored sysops this might be helpful. 11:05:07 Hence you'll note https also redirects to http 11:05:53 W0TAN: we don't support circumventing restrictions which have been set in place. They're generally there for a reason (even if it's hard to spot ;-)) 11:05:56 gtg, bye 11:06:24 yes I see that - but e.g. FireFox completely rejects to access the site at all since the certificate is not trustable 11:08:12 this is not a circumvention issue, really, but I do see your point - good people have nothing to hide - still, PA is good to have ;-) 11:08:27 bye 11:10:11 *** ChrisMorgan has quit (Ping timeout: 245 seconds) 11:12:58 *** W0TAN has quit (Quit: bye) 12:57:22 *** Bensawsome has quit (Read error: Operation timed out) 12:58:17 *** Bensawsome (~Bensawsom@unaffiliated/bensawsome) has joined #portableapps 12:58:23 Bensawsome is from the PortableApps.com forums, likes waffles VERY MUCH, and has a site at http://www.bensawsome.com . He also maintains StatBot and the IRCStats pages @ http://www.ircstats.info 13:56:17 *** Computator (~Computato@69-20-171-61.static.ida.net) has joined #portableapps 13:56:17 *** Computator has quit (Changing host) 13:56:17 *** Computator (~Computato@unaffiliated/computator) has joined #portableapps 13:56:18 *** Computator has quit (Client Quit) 13:56:49 *** Computator (~Computato@69-20-171-61.static.ida.net) has joined #portableapps 13:56:49 *** Computator has quit (Changing host) 13:56:49 *** Computator (~Computato@unaffiliated/computator) has joined #portableapps 14:27:43 *** Gizmokid2005 is now known as Gizmokid2005|AFK 14:27:44 *** Gizmokid2005|AFK is now known as Gizmokid2005 17:03:25 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 17:04:10 *** marlop has parted #portableapps (None) 17:04:54 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 17:16:10 *** ptmb (~PTMblogge@a83-132-128-25.cpe.netcabo.pt) has joined #portableapps 17:24:27 *** Twinkletoes|W has quit (Ping timeout: 252 seconds) 17:55:42 *** gluxon (~gluxon@c-76-23-212-66.hsd1.ct.comcast.net) has joined #portableapps 18:12:12 gluxon: hi 18:14:57 Hi marlop :) 18:16:27 is there any prob with eclipse port that it didn't go pre-release ? 18:21:25 *** gluxon has quit (Read error: Connection reset by peer) 18:21:58 *** Darwin4Ever (~Darwin4Ev@082-146-104-023.dyn.adsl.xs4all.be) has joined #portableapps 18:22:38 *** gluxon (~gluxon@c-76-23-212-66.hsd1.ct.comcast.net) has joined #portableapps 18:30:14 gluxon: is there any prob with eclipse portable that it didn't go pre-release ? 18:31:26 d 18:46:33 gluxon: is there any prob with eclipse portable that it didn't go pre-release ? 18:49:27 *** Bensawsome has quit (Quit: This computer has gone to sleep) 19:11:13 *** kaeos (~Miranda@84.76.55.235) has joined #portableapps 19:15:11 *** marlop has quit (Ping timeout: 256 seconds) 19:28:09 *** gluxon1 (~gluxon@c-76-23-212-66.hsd1.ct.comcast.net) has joined #portableapps 19:29:21 *** gluxon has quit (Ping timeout: 256 seconds) 19:30:48 *** gluxon (~gluxon@c-76-23-212-66.hsd1.ct.comcast.net) has joined #portableapps 19:32:45 *** gluxon1 has quit (Ping timeout: 256 seconds) 19:56:01 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 20:02:52 *** pa_7031 (~d95bb681@gateway/web/freenode/x-oydtgighxiecgksi) has joined #portableapps 20:04:08 Hi there! Is it possible to configure the PortableApps Launcher to exclude the Documents/Music/Pictures/Video-Links at the side? 20:04:42 *** markomlm (~chatzilla@pD9555A27.dip.t-dialin.net) has joined #portableapps 20:05:27 *** markomlm has quit (Client Quit) 20:06:50 pa_7031 : what is this folder exactly ? 20:07:26 he means hide the shortcuts to each of those folders 20:07:33 that's not a path string 20:07:46 (or at least not supposed to be) 20:09:16 understood, so it can't be done. 20:09:46 i think it might be able to 20:09:53 but idk how 20:10:17 probably in the ini file 20:13:02 the shortcuts at the side of the menu can't be removed even in the ini 20:13:13 oh ok 20:16:45 although i think that there should be an option to hide and/or change them 20:17:34 me too 20:17:34 :) 20:19:15 *** marlop has quit (Quit: marlop) 20:26:36 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 20:28:22 *** marlop has quit (Client Quit) 20:30:33 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 20:46:03 *** marlop has quit (Quit: marlop) 20:47:44 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 20:49:10 *** computerfreaker (~computerf@64-201-72-179.static.genevaonline.com) has joined #portableapps 20:49:10 computerfreaker is working on KidSafe and TopOCR, and would very much like to have folks test them and give feedback 20:50:07 *** computerfreaker has quit (Client Quit) 20:54:48 *** marlop has quit (Quit: marlop) 20:56:46 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 20:59:29 *** Avalloc (~a@port-1595.pppoe.wtnet.de) has joined #portableapps 21:07:28 *** Gizmokid2005 is now known as Gizmokid2005|AFK 21:12:39 *** marlop has quit (Quit: marlop) 21:13:03 *** kaeos has quit (Ping timeout: 256 seconds) 21:13:24 *** marlop (~marlop@201-88-18-99.gnace704.dsl.brasiltelecom.net.br) has joined #portableapps 21:15:10 *** Avalloc has quit (Quit: HydraIRC -> http://www.hydrairc.com <- Go on, try it!) 21:20:52 *** gluxon has quit (Read error: Connection reset by peer) 21:21:20 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps 21:23:12 *** gluxon (~gluxon@c-76-23-212-66.hsd1.ct.comcast.net) has joined #portableapps 21:23:47 *** gluxon has quit (Read error: Connection reset by peer) 21:25:02 *** gluxon (~gluxon@c-76-23-212-66.hsd1.ct.comcast.net) has joined #portableapps 22:05:35 *** kaeos (~Miranda@84.76.55.235) has joined #portableapps 22:14:30 *** Oni-Neoxes has quit (Quit: Quit... D:) 22:31:50 *** Darwin4Ever has quit (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 22:32:27 *** Darwin4Ever (~Darwin4Ev@082-146-104-023.dyn.adsl.xs4all.be) has joined #portableapps 22:35:31 *** rcmaehl (~rcmaehl@unaffiliated/rcmaehl) has joined #portableapps 22:35:58 * rcmaehl has 2 hours of diagnostics to do 22:44:16 *** pa_7536 (~45aba417@gateway/web/freenode/x-ltbczvaqdnoxvtci) has joined #portableapps 22:44:26 Hello pa_7536 22:45:42 I have a question I see downbar.function.virusLoc in the about:config and want to know how to configure it in firefox portable or how to disable it 22:45:58 oh & hello 22:46:27 pa_7536: Wait, let me see :) 22:46:58 Hm.. I don't have it in my about:config. 22:47:03 not sure if it is finding my virus software to scan the files I download or it is just simulating a scan 22:47:19 it is part of download status bar 22:47:25 Ah. 22:47:39 Can't you right click, modify? 22:48:09 ya I was just making sure the add-on wouldn't go crazy 22:48:41 Oh. 22:49:10 I'm pretty sure by default the download statusbar addon uses the built in firefox scanner. 22:49:50 does portable firefox do the same thing with it's built in download window and what does the firefox scanner scan with 22:50:48 this is what is shown as the value for that preference C:/Program Files/myAnti-VirusProgram.exe 22:51:01 That's not a real AV! 22:51:14 I have no such folder in my programs 22:51:23 Oh 22:51:24 good 22:51:52 Yep :) 22:51:53 ya figured that was it and don't want to set it to my virus protection microsoft security essentials cause not all computers use it. 22:52:27 so I am just going to make that field blank 22:53:36 also I see a preview.prefetch option aned can find nothing about what it relates to or if I even need it 22:54:08 I wouldn't touch those values. 22:54:34 Let me install Download Status bar first though :) 22:54:57 ok 22:56:12 i bet preview.prefetch is to look what's in a zip file before you download the whole thing 22:56:22 ya that preview.prefetch shows as a modifyed string in firefox portable but there is no default value it just says no next to it so was woundering where it came from or what it is for. 22:56:42 it can get just the file info without downloading the whole zip 22:56:48 so that might be why 22:56:56 Okay, don't worry about it. 22:57:08 By default, download status bar just uses the regular firefox scanner. 22:57:39 But just to be sure, go into the options for download status bar. Click on the "Virus Scan" tab. 22:57:51 Make sure the manually scan files checkbox isn't checked. 23:00:18 *** Darwin4Ever has quit (Read error: Connection reset by peer) 23:01:42 ok I just checked it out it isn't checked so I can just leave that alone thanks & I guess I should just use preview.prefetch alone even though I have no idea what it is for. 23:01:55 for zip preview 23:02:06 see above 23:02:13 :)\ 23:02:26 :) * 23:04:11 *** pa_7536 has quit (Quit: Page closed) 23:07:02 *** marlop has quit (Quit: marlop) 23:18:22 * rcmaehl thinks Gizmokid2005|AFK is gizmo on flipnote hatena and is posting stuff like http://flipnote.hatena.com/56650B50CC783E17@DSi/movie/783E17_0920911F53442_005 about me 23:19:52 *** ZachT|ZzZz is now known as ZachThibeau 23:25:36 *** Res2216firestar (Sam@wikipedia/Res2216firestar) has joined #portableapps 23:30:50 rcmaehl, -_- No :P 23:31:04 k 23:32:15 Hi, I'm gizmo. I'm 13 years old and I live in California. 23:32:22 Gizmokid2005 is in his 20's :P 23:33:41 he's about 2 years older than me iirc and I'm 21 years old 23:34:16 *** kaeos has quit (Quit: kaeos) 23:36:14 No rcmaehl, if I had a problem with you, I'd tell it to you to your face, trust me. 23:36:26 and I don't live in CA, and I'm certainly not 13. 23:37:05 I miss pabot :( 23:37:13 East Side of North American FTW (aka Atlantic side :P) 23:38:15 I thought you lived in Canada? 23:38:32 North America is the continent 23:38:36 Canada is the country 23:38:49 Canada is in the continent of North America 23:38:55 you get it now? :P 23:38:56 Oh yeah :P 23:39:37 *** rouilj (~rouilj@pool-74-104-157-242.bstnma.fios.verizon.net) has joined #portableapps 23:40:50 *** rouilj2 has quit (Ping timeout: 272 seconds) 23:48:50 k 23:49:24 *** rcmaehl has quit (Quit: Callarse o Achmend se matarte con los gatos que comió a través de su cable de teclado y que ahora están comiendo lejos en su CPU. JK.)