iPhone alpha/beta testers needed...
Re: iPhone alpha/beta testers needed...
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.
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
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.
-
- Newbie
- Posts: 20
- Joined: May 14th, 2010, 11:18 pm
Re: iPhone alpha/beta testers needed...
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...
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.
Currently using mynzb daily.
Last edited by coatezy on September 9th, 2010, 8:41 pm, edited 1 time in total.
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
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
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
-
- Newbie
- Posts: 20
- Joined: May 14th, 2010, 11:18 pm
Re: iPhone alpha/beta testers needed...
just http and api key for me, no ssl but i could always change if need be
- nomar383
- Release Testers
- Posts: 221
- Joined: April 14th, 2010, 1:34 am
- Location: Rexburg, ID
- Contact:
Re: iPhone alpha/beta testers needed...
+1prophetizer wrote: just http and api key for me, no ssl but i could always change if need be
SABCommand for iPad Developer
SABConnect for Safari 5 Developer
Bug Tracking:
http://redmine.kalenhansen.com
Twitter:
http://twitter.com/SABCommand
SABConnect for Safari 5 Developer
Bug Tracking:
http://redmine.kalenhansen.com
Twitter:
http://twitter.com/SABCommand
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
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...
Interested in helping test!
Two sab servers both on OSX (one 10.5 and one 10.6) https, API key, iPhone 3GS & 4
Two sab servers both on OSX (one 10.5 and one 10.6) https, API key, iPhone 3GS & 4
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
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.
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.
- nomar383
- Release Testers
- Posts: 221
- Joined: April 14th, 2010, 1:34 am
- Location: Rexburg, ID
- Contact:
Re: iPhone alpha/beta testers needed...
Here's an idea of how mine works: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.
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];
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
SABConnect for Safari 5 Developer
Bug Tracking:
http://redmine.kalenhansen.com
Twitter:
http://twitter.com/SABCommand
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
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'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?
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
Aha, saw your reply right after you posted. Glad I didn't miss anything. Thanks for the help!
- nomar383
- Release Testers
- Posts: 221
- Joined: April 14th, 2010, 1:34 am
- Location: Rexburg, ID
- Contact:
Re: iPhone alpha/beta testers needed...
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 )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?
SABCommand for iPad Developer
SABConnect for Safari 5 Developer
Bug Tracking:
http://redmine.kalenhansen.com
Twitter:
http://twitter.com/SABCommand
SABConnect for Safari 5 Developer
Bug Tracking:
http://redmine.kalenhansen.com
Twitter:
http://twitter.com/SABCommand
-
- Newbie
- Posts: 18
- Joined: September 3rd, 2010, 8:39 am
Re: iPhone alpha/beta testers needed...
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