Page 2 of 2

Re: iPhone alpha/beta testers needed...

Posted: September 8th, 2010, 6:44 pm
by NK26
I have one install on my server and one install on my main system. Sometimes its easier to just download what I need locally. I would definitely support multiple servers.

Re: iPhone alpha/beta testers needed...

Posted: September 9th, 2010, 7:46 am
by mcglynnapps
Cool, I'll put it on the list.  Shouldn't be too hard to implement and much easier than what I've done so far anyways.

Re: iPhone alpha/beta testers needed...

Posted: September 9th, 2010, 2:00 pm
by prophetizer
i keep a server running on my macbook pro incase i need anything fast where i am at, and another at home where most stuff goes

Re: iPhone alpha/beta testers needed...

Posted: September 9th, 2010, 8:35 pm
by coatezy
I'm willing to help test if your still looking for testers. I'm running Sab on my ubuntu server as well as my ubuntu desktop and windows 7 desktop. I would be testing on an iPhone 4 running 4.0.1 (jailbroken). I am a nzbs.org user and would consider myself a very proficient sab user. I.e used the api's to create controls within Linux so can view current status within conky and also stop and start downloads.

Currently using mynzb daily.

Re: iPhone alpha/beta testers needed...

Posted: September 16th, 2010, 7:06 pm
by mcglynnapps
Still chugging along...tracking about two dozen bugs and features that I want to get finished up before a real beta period.  I think I'm about a week out or so.  Once I tackle some of the tougher ones I'll send out some info to everyone that's responded so far.

I think I've got enough people for the beta in this thread so thanks for all the responses.

Just out of curiosity, what kind of authentication are you all using?  API key or user/pass?  And do you use HTTPS or just regular HTTP?

Planning on supporting all of these methods but since I've been using HTTP and API key it's the only thing I've gotten around to implementing so far  :D

Re: iPhone alpha/beta testers needed...

Posted: September 17th, 2010, 9:57 am
by prophetizer
just http and api key for me, no ssl but i could always change if need be

Re: iPhone alpha/beta testers needed...

Posted: September 17th, 2010, 10:05 am
by nomar383
prophetizer wrote: just http and api key for me, no ssl but i could always change if need be
+1

Re: iPhone alpha/beta testers needed...

Posted: September 18th, 2010, 10:55 am
by mcglynnapps
Looks like those are a couple issues that can wait until v1.0 then.  Guess I'll get back to the fun stuff like tracking down memory leaks.

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 1:52 pm
by maxrogers
Interested in helping test!  8)

Two sab servers both on OSX (one 10.5 and one 10.6) https, API key, iPhone 3GS & 4

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 2:04 pm
by mcglynnapps
Hope to have everything ready for beta by this weekend...FINALLY got the memory leaks tracked down.  Multithreading is so much fun.

So who knows how to clear history via the API?  I don't see anything in the docs so tried

api?mode=warnings&name=delete&value=all&output=json&apikey=zzzzzzzzzzzzzzzzzzzz

and I get back something saying it's not implemented.  Tried searching the forums and can't find anything either and don't see it documented in the API.  History stuff works OK though.

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 2:40 pm
by nomar383
mcglynnapps wrote: Hope to have everything ready for beta by this weekend...FINALLY got the memory leaks tracked down.  Multithreading is so much fun.

So who knows how to clear history via the API?  I don't see anything in the docs so tried

api?mode=warnings&name=delete&value=all&output=json&apikey=zzzzzzzzzzzzzzzzzzzz

and I get back something saying it's not implemented.  Tried searching the forums and can't find anything either and don't see it documented in the API.  History stuff works OK though.
Here's an idea of how mine works:

Code: Select all

   DebugLog(@"Deleting all history now...");
      
      // Create NSURL string from settings
      NSURL *url = [NSURL URLWithString:[settings getBaseAPICallString]];
      
      ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
      [request setPostValue:@"history" forKey:@"mode"];
      [request setPostValue:@"delete" forKey:@"name"];
      [request setPostValue:@"all" forKey:@"value"];
      
      [request setValidatesSecureCertificate:NO];
      [request setDelegate:self];
      [request startAsynchronous];
If you meant warnings, then there is no official API call. I implemented it by create a programtic UIWebView and opening the "page" that clears the warnings. Check my Bug tracking system. I think how i did it is in there somewhere.

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 2:44 pm
by mcglynnapps
Thanks, that's what I'm doing for history too, but warnings is what I'm having trouble with  ;)

I've gotten it to work by grabbing the session ID and calling

clearwarnings?session=zzzzzzzzzzzzzz

but that's kinda clunky since it's not going through the API.  Do you have a real API method for clearing warnings?

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 2:45 pm
by mcglynnapps
Aha, saw your reply right after you posted.  Glad I didn't miss anything.  Thanks for the help! :)

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 2:47 pm
by nomar383
mcglynnapps wrote: Thanks, that's what I'm doing for history too, but warnings is what I'm having trouble with  ;)

I've gotten it to work by grabbing the session ID and calling

clearwarnings?session=zzzzzzzzzzzzzz

but that's kinda clunky since it's not going through the API.  Do you have a real API method for clearing warnings?
I think the session ID is the same as the api key (in case you didn't know and are doing more work to get it :))

Re: iPhone alpha/beta testers needed...

Posted: September 22nd, 2010, 2:50 pm
by mcglynnapps
You know I didn't even check, looks like you're right though.  Ah well, guess I'll leave the property in there so I can get confused about it in two months