From a710c9743cf775b704db706d1894d3e3211d49c8 Mon Sep 17 00:00:00 2001 From: Peter Date: Wed, 3 Jul 2013 16:47:35 +1000 Subject: [PATCH 1/3] Update README.md for 'complete documentation' link http://afnetworking.github.com/AFNetworking is no more. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ccc73f7..3f34d36 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Choose AFNetworking for your next project, or migrate over your existing project - [Download AFNetworking](https://github.com/AFNetworking/AFNetworking/zipball/master) and try out the included Mac and iPhone example apps - Read the ["Getting Started" guide](https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking), [FAQ](https://github.com/AFNetworking/AFNetworking/wiki/AFNetworking-FAQ), or [other articles in the wiki](https://github.com/AFNetworking/AFNetworking/wiki) -- Check out the [complete documentation](http://afnetworking.github.com/AFNetworking/) for a comprehensive look at the APIs available in AFNetworking +- Check out the [complete documentation](http://cocoadocs.org/docsets/AFNetworking/) for a comprehensive look at the APIs available in AFNetworking - Watch the [NSScreencast episode about AFNetworking](http://nsscreencast.com/episodes/6-afnetworking) for a quick introduction to how to use it in your application - Questions? [Stack Overflow](http://stackoverflow.com/questions/tagged/afnetworking) is the best place to find answers From f9fc99e8674a77297ac8bcebcc3978039e024c43 Mon Sep 17 00:00:00 2001 From: Oliver Letterer Date: Wed, 3 Jul 2013 19:26:29 +0200 Subject: [PATCH 2/3] Fixing -[AFHTTPClient copyWithZone:]. --- AFNetworking/AFHTTPClient.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AFNetworking/AFHTTPClient.m b/AFNetworking/AFHTTPClient.m index 09049af..4ee159a 100644 --- a/AFNetworking/AFHTTPClient.m +++ b/AFNetworking/AFHTTPClient.m @@ -739,8 +739,8 @@ static void AFNetworkReachabilityReleaseCallback(const void *info) { HTTPClient.stringEncoding = self.stringEncoding; HTTPClient.parameterEncoding = self.parameterEncoding; - HTTPClient.registeredHTTPOperationClassNames = [self.registeredHTTPOperationClassNames copyWithZone:zone]; - HTTPClient.defaultHeaders = [self.defaultHeaders copyWithZone:zone]; + HTTPClient.registeredHTTPOperationClassNames = [self.registeredHTTPOperationClassNames mutableCopyWithZone:zone]; + HTTPClient.defaultHeaders = [self.defaultHeaders mutableCopyWithZone:zone]; #ifdef _SYSTEMCONFIGURATION_H HTTPClient.networkReachabilityStatusBlock = self.networkReachabilityStatusBlock; #endif From e383e8bbf78c6586afd6775f38299e078549a164 Mon Sep 17 00:00:00 2001 From: Romain Pouclet Date: Thu, 4 Jul 2013 14:19:21 -0400 Subject: [PATCH 3/3] Put the logo back It's prettier that way. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ccc73f7..ae52e0e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- AFNetworking + AFNetworking

[![Build Status](https://travis-ci.org/AFNetworking/AFNetworking.png?branch=master)](https://travis-ci.org/AFNetworking/AFNetworking)