00:20:21 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps 00:41:44 *** techfreak243 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps 00:45:31 *** Oni-Neoxes has quit () 00:48:25 *** mzzt (~mzzt@2001:0:5ef5:79fb:7d:1666:52c2:132b) has joined #portableapps 00:50:35 *** The_MAZZTer has quit (Ping timeout: 260 seconds) 00:56:24 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps 00:57:36 *** techfreak243 has quit (Ping timeout: 240 seconds) 00:59:11 *** mzzt is now known as The_MAZZTer 01:07:35 *** techfreak244 has quit (Ping timeout: 240 seconds) 01:07:59 *** PlauSocks has quit (Quit: Leaving) 01:15:46 *** SergentSiler (~Kyle@unaffiliated/sergentsiler) has joined #portableapps 01:15:47 SergentSiler is a pony 01:15:49 ... 01:15:55 *** SergentSiler is now known as PlauSocks 01:27:57 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps 01:45:18 *** Oni-Neoxes has quit () 02:00:48 why is popstring giving me an ANSI string when I am using all UNICODE? 02:00:49 stupid plugins 02:10:42 *** kAlug (~kalug@187.74.6.78) has joined #portableapps 02:12:08 ok how do I get NSIS to pass unicode to my plugin? 02:12:14 it'll only pass strings in ANSI >:( 02:13:16 Did you disabled CallANSIPlugin? 02:14:24 I don't see it enabled anywhere? 02:14:26 at least not in custom.nsh 02:15:48 oh 02:15:53 pluginsex 02:15:59 haha 02:16:00 here it is 02:16:22 yeah that will help 02:17:54 that also explains why my ansi plugin was sorta working 02:18:00 something was screwy somewhere though, kept crashing 02:24:14 *** Thasmo has quit () 02:53:06 sweet, my hashing function works 03:04:35 TCHAR* endOfPassword = masterPassword + wcslen(masterPassword) * sizeof(TCHAR); 03:04:35 wcscpy(endOfPassword, _T(":{\\O*`'=pC#\"R=.Jo/XYI&MB*V-'Wis.JZ1W1!E(etZHVX5z\\@")); 03:04:38 why is this not concatinating my strings :( 03:05:55 wait figured it out... pointers are smart enough to increment by ELEMENTS rather than BYTS when I add to them 03:06:00 this is confusing I hate complex string types :( 03:11:52 The_MAZZTer: Please tell me as soon as you make some progress. 03:13:48 INSERT INTO "logins" VALUES('https://accounts.goo','Em','megazzt@','Pas',X'8E04D 03:13:48 09A0CC111392D95A8E2CBC9','','https://accoun'); 03:13:52 X( FAILURE 03:13:56 getting there though lol 03:14:02 it doesn't crash anymore 03:14:27 I think this is a problem in my sqlite stuff now, I converted all that to utf-16 and I rpboably did something dumb along the way 03:14:41 (strings are all halved) 03:16:41 You'll need to convert it to UTF-8. 03:17:40 Maybe sqlite3_value_text16le() works. 03:17:50 nah 03:17:54 not sure what I did wrong but reading the docs I was doing it a hard way 03:18:05 * The_MAZZTer tells sqlite to use null-terminated strings not fixed length! 03:19:29 Wait, you don't need to convert everything; just the encryption process. 03:19:55 I'm just talking about the sqlite bits where I am doing my prepare stuff 03:20:07 encryption itself looks like it is working :) 03:20:17 just have to make sure everything looks ok and I can see if the passwords are indeed portable 03:20:42 What changed then? 03:20:43 INSERT INTO "logins" VALUES('https://accounts.google.com/ServiceLogin','Email',' 03:20:43 megazzt@gmail.com','Passwd',X'8E04D09A0CC111392D95A8E2CBC9','','https://accounts 03:20:44 .google.com/'); 03:20:46 yey 03:21:44 I was calculating the length of a string by hand in one spot... it LOOKED correct but I was off by 2 because of unicode vs ansi 03:21:44 or something 03:21:51 anyway the docs say I can pass in -1 to have sqlite figure out the length from the null terminators :) 03:22:01 now to test portability! 03:26:46 bad news is this portable passwords will be incompatible with the old version :( 03:26:49 good news is it will work with utf-16 passwords now 03:28:26 Decode with old & encode with new. 03:29:35 the user can do it if they upgrade carefully 03:29:45 plus it's not too big a deal if they lose passwords like that if they have Chrome Sync 03:29:56 which didn't exist when I first wrote Portable Passwords 03:30:19 Chrome Sync should bring them all back, no need for Portable Password usage 03:30:42 aaand 03:30:46 it crashed on XP -_- 03:30:52 no error no nothing 03:31:00 back to square 1 again ugh 03:57:23 *** Flametail (481742a9@gateway/web/freenode/ip.72.23.66.169) has joined #portableapps 03:57:50 Hello, is there a pro app portabalizer here? 04:02:05 Flametail: What do you mean? 04:03:08 I'd like to portabalize an old freeware app...but I dont remember where to begin....wondering if someone will A) walk me through it again, or B) just do it for me. 04:03:50 Its the old freeware version of LiveZilla 04:05:01 Oh yes, me. Me, me, me. 04:05:29 Do you have it available already? 04:05:37 http://dl.dropbox.com/u/3295546/LiveZilla_3.1.8.4_Full.rar 04:06:04 Glad I kept the installer archived....with version 4 they stopped being freeware.... 04:06:58 Alright, do you want option A or option B? 04:08:01 Option B is prefered. If you don't mind, of course. 04:08:49 Alright. I'm just not going to support it officially. 04:09:09 Thats not a problem, so long as it works :) 04:10:18 hmm something about my plugin is not working 04:10:22 I am getting the correct value returning from my function call in 7, but not XP 04:10:31 in XP I just get the value I passed in (which I never return?) 04:10:35 something funky is going on 04:11:06 Flametail: can you PM me with your email address? 04:11:40 The_MAZZTer: Some change in the Windows APIs? 04:11:53 ah looks like the Pop after the function call is not happening (nothing got pushed on the stack?) 04:11:54 hmmmm 04:12:06 yeah I'm gonna have to debug inside my function and see what it is doing 04:13:43 great, my function never actually runs? 04:20:08 *** kAlug has quit (Quit: goodbye (cruel)? world\.\.\.) 04:20:14 *** ronjn___ (~ronjn@p5B13CCC3.dip.t-dialin.net) has joined #portableapps 04:21:41 *** ronjn has quit (Ping timeout: 240 seconds) 04:29:05 oh 04:29:17 well it looks like whenI switched from using virtualbox to virtual pc to test 04:29:25 now my DLL runs >_> 04:29:47 AND passwords ARE PORTABLE ! :D 04:33:55 *** ronjn___ has quit (Read error: Connection reset by peer) 04:34:20 *** ronjn (~ronjn@p5B13CCC3.dip.t-dialin.net) has joined #portableapps 04:37:46 *** ronjn has quit (Remote host closed the connection) 04:38:32 *** ronjn (~ronjn@p5B13CCC3.dip.t-dialin.net) has joined #portableapps 04:49:59 I think that's it for testing and bugs, I'll release a development test tomorrow whee 05:19:16 *** Flametail has quit (Quit: Page closed) 05:27:15 *** The_MAZZTer has quit (Ping timeout: 268 seconds) 05:57:22 *** PlauSocks is now known as PlauSocks|AFK 06:26:20 *** Flametail (481742a9@gateway/web/freenode/ip.72.23.66.169) has joined #portableapps 06:54:37 *** Flametail has quit (Quit: Page closed) 09:23:59 *** OliverK|Away has quit (Ping timeout: 244 seconds) 10:41:02 *** OliverK|Away (~OliverK@unaffiliated/oliverk) has joined #portableapps 11:43:53 *** PlauSocks|AFK has quit (*.net *.split) 11:47:46 *** PlauSocks|AFK (~Kyle@unaffiliated/sergentsiler) has joined #portableapps 13:00:27 *** The_MAZZTer (~mzzt@2001:0:4137:9e76:18d6:3763:52c2:132b) has joined #portableapps 15:40:48 *** pa_3164 (ce2fbff3@gateway/web/freenode/ip.206.47.191.243) has joined #portableapps 15:42:10 I guys, anybody would know why google chrome won't start with my portableapps. I installed portableapps on my usb stick, so as google chrome...and it appears in the apps, but just won't run 15:42:48 does it give you an error at all? 15:43:02 nothing at all, nothing happens, its not even starting to run at all 15:44:39 I see the little hourglass thingy appear for like 2-3 seconds, but then nothing 15:45:52 do you ever see the process(es) in task manager? 15:46:31 nope, just checked, i just see portable apps running...nothing about google or chrome 15:47:20 what happens if you launch the GoogleChromePortable.exe process manually 15:47:25 do you get a splash screen? 15:48:40 I did it, it installed everything fine, then if i go back and click on the .exe again it just does the same thing with the hourglass 15:48:56 what version of windows are you on? 15:49:03 Xp something 15:49:27 where is the app located? 15:49:33 on my usb stick 15:49:48 try copying the folder to your desktop and running it. 15:50:54 says that chrome.exe cannot be find...which is stupid because its in the folder with it... 15:52:10 it shouldn't be in the same folder. 15:53:37 no i mean one is in chrome bin, but they are all in the google chrome portable folder 15:53:41 the GoogleChromePortable folder should have GoogleChromePortable.exe, but the GoogleChromePortable\App\Chrome-bin\ folder should contain it. 15:53:48 try reinstalling. 15:53:49 yeah 15:53:52 i tried 15:55:11 try installing it to your desktop, or C:\ and see if you can run it from there. 15:55:27 tried, says the same thing, that it cant find chrome.exe 15:55:40 i dunno i have a weird computer...i might just kick it out the window 15:56:15 it sounds like some type of machine issue...it does work here. 15:57:26 well thanks anyways, i will try my luck with firefox 15:58:26 yw 15:58:36 *** pa_3164 has quit (Quit: Page closed) 16:05:18 *** andreasma (~andi@p5B07D6EB.dip.t-dialin.net) has joined #portableapps 17:04:40 *** TPFC-SYSTEM (~opera@cs84248.pp.htv.fi) has joined #portableapps 18:04:14 *** Thasmo (~thasmo@d86-33-68-66.cust.tele2.at) has joined #portableapps 18:22:01 *** JohnTHaller (~JohnTHall@cpe-98-14-114-27.nyc.res.rr.com) has joined #portableapps 18:24:46 *** benedikt93 (~benedikt9@unaffiliated/benedikt93) has joined #portableapps 18:26:31 *** kAlug (~kalug@189-18-40-198.dsl.telesp.net.br) has joined #portableapps 18:26:47 ohai JohnTHaller 18:26:59 hola 18:27:55 How are you? 18:28:36 Doing well. You? 18:31:40 To the extent possible. Spent the whole night building Chromium dev just to find out I was building the wrong version. 18:31:50 Ouch 18:33:12 I was thinking that we should add the latest translations updates to PAL 2.1.3/2.2. 18:33:40 what is .3? 18:34:48 The current one is 2.1.2. 18:37:39 so what is .3? or is that what you were debating calling it? 18:39:05 PAL 2.1.x + mutexes. I still haven't got the opportunity to talk with Chris. 18:39:11 *** andreasma has quit (Quit: Verlassend) 18:45:54 JohnTHaller: Do you want/need some help with the sort-of-unmaintained apps (those abandoned by the original maintainer)? 18:46:21 Sure. I'd love more help. But wouldn't want to take your limited time away from PAL and such 18:51:02 Don't worry. I have lots of free time ATM. And PAL stuff is quick (in fact, most of time I'm blocked because I need to talk with Chris). Just tell me what you need help with. 18:51:47 Ok. I'm catching up on stuff today and will think about which ones would make sense for you. Some of them haven't been PALed yet, but I've been waiting on the mutex. 18:56:06 Hopefully the mutex fix will be released this week. 18:56:35 *** kAlug has quit (Quit: Need to recharge the notebook. May be back in 5 minutes.) 19:00:22 *** kAlug (bd1228c6@gateway/web/freenode/ip.189.18.40.198) has joined #portableapps 19:05:37 *** os65k (~Woodzy@75-174-153-208.chyn.qwest.net) has joined #portableapps 19:19:34 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps 19:58:18 *** kAlug has quit (Ping timeout: 258 seconds) 20:15:40 *** TPFC-SYSTEM has quit (Quit: Have a good night! :)) 20:18:44 *** Venusaur (~desu@wikipedia/Antonio-Lopez) has joined #portableapps 20:20:11 *** Suiseiseki has quit (Ping timeout: 268 seconds) 20:27:15 *** pa_1476 (44220dcc@gateway/web/freenode/ip.68.34.13.204) has joined #portableapps 20:27:20 hi 20:27:48 I'm trying the new version but is not loading my app so i can see it. 20:27:58 plus other issues 20:28:17 how should i install this? 20:34:08 new version of what, the platform? 20:35:55 yes 20:37:23 You need to install it to the same location as the old version of the platform. Generally this is the root directory (X:\). But sometimes people install it elsewhere. You can tell where the old one is installed by finding the StartPortableApps.exe or Start.exe executable and install to there 20:39:03 I'm doing it aas a new one but i can see the apps that are there by default... and I can't update eaither. 20:39:14 I can't 20:39:18 There are no apps by default in the new platform 20:39:38 You build your own suite now by clicking Apps and Get More Apps 20:41:24 *** pa_1476 has quit (Quit: Page closed) 20:42:58 *** JohnTHaller has parted #portableapps (None) 21:01:26 *** benedikt93 has quit (Quit: Bye ;)) 21:59:19 *** Gizmokid2005 has quit (Ping timeout: 252 seconds) 22:02:09 *** Venusaur is now known as Suiseiseki 22:06:31 *** Guest94233 (~Gizmokid2@dedi.gizmokid2005.com) has joined #portableapps 22:28:47 *** Thasmo has quit () 22:46:58 *** JAWS (~JAWS@adsl-99-164-46-2.dsl.akrnoh.sbcglobal.net) has joined #portableapps 22:47:45 Hi, PA.c folks thanks for the STK update! :) 22:54:58 *** Thasmo (~thasmo@d86-33-68-66.cust.tele2.at) has joined #portableapps 22:55:30 *** techfreak244 has quit (Quit: techfreak244) 23:03:26 *** PlauSocks|AFK is now known as PlauSocks 23:03:58 Well, see you everyone, thanks again! :) 23:04:13 *** JAWS has quit (Quit: Leaving.) 23:21:42 *** sar3th (~sar3th@unaffiliated/sar3th) has joined #portableapps 23:23:05 *** Guest94233 is now known as Gizmokid2005