iPhone alpha/beta testers needed...

Got a program that plays well with SABnzbd? Share it here!
NK26
Newbie
Newbie
Posts: 19
Joined: May 19th, 2010, 8:39 pm

Re: iPhone alpha/beta testers needed...

Post 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.
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post 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.
prophetizer
Newbie
Newbie
Posts: 20
Joined: May 14th, 2010, 11:18 pm

Re: iPhone alpha/beta testers needed...

Post 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
coatezy
Newbie
Newbie
Posts: 13
Joined: June 29th, 2010, 6:12 pm

Re: iPhone alpha/beta testers needed...

Post 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.
Last edited by coatezy on September 9th, 2010, 8:41 pm, edited 1 time in total.
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post 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
prophetizer
Newbie
Newbie
Posts: 20
Joined: May 14th, 2010, 11:18 pm

Re: iPhone alpha/beta testers needed...

Post by prophetizer »

just http and api key for me, no ssl but i could always change if need be
User avatar
nomar383
Release Testers
Release Testers
Posts: 221
Joined: April 14th, 2010, 1:34 am
Location: Rexburg, ID
Contact:

Re: iPhone alpha/beta testers needed...

Post by nomar383 »

prophetizer wrote: just http and api key for me, no ssl but i could always change if need be
+1
SABCommand for iPad Developer
SABConnect for Safari 5 Developer

Bug Tracking:
http://redmine.kalenhansen.com

Twitter:
http://twitter.com/SABCommand
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post 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.
maxrogers
Newbie
Newbie
Posts: 29
Joined: May 24th, 2009, 11:52 am

Re: iPhone alpha/beta testers needed...

Post 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
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post 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.
User avatar
nomar383
Release Testers
Release Testers
Posts: 221
Joined: April 14th, 2010, 1:34 am
Location: Rexburg, ID
Contact:

Re: iPhone alpha/beta testers needed...

Post 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.
Last edited by nomar383 on September 22nd, 2010, 2:43 pm, edited 1 time in total.
SABCommand for iPad Developer
SABConnect for Safari 5 Developer

Bug Tracking:
http://redmine.kalenhansen.com

Twitter:
http://twitter.com/SABCommand
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post 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?
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post by mcglynnapps »

Aha, saw your reply right after you posted.  Glad I didn't miss anything.  Thanks for the help! :)
User avatar
nomar383
Release Testers
Release Testers
Posts: 221
Joined: April 14th, 2010, 1:34 am
Location: Rexburg, ID
Contact:

Re: iPhone alpha/beta testers needed...

Post 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 :))
SABCommand for iPad Developer
SABConnect for Safari 5 Developer

Bug Tracking:
http://redmine.kalenhansen.com

Twitter:
http://twitter.com/SABCommand
mcglynnapps
Newbie
Newbie
Posts: 18
Joined: September 3rd, 2010, 8:39 am

Re: iPhone alpha/beta testers needed...

Post 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
Post Reply