Skip to content

Releases: dustturtle/RealReachability

version 1.1.5 stable (support IPV6)

20 May 09:02
Compare
Choose a tag to compare

support IPV6; 1.1.4 deprecated because of pod check error.

version 1.1.3 stable

04 Apr 03:57
Compare
Choose a tag to compare

This version:fixed some potential bugs, more stable than previous version; no new features.

What we will do in next versions: new strategy will be introduced to guarantee the checking accuracy of "fake connection".

version1.1.2 stable

15 Mar 08:45
Compare
Choose a tag to compare

Fixed some bugs reported by user. Did some optimization either.

version1.1.1 stable

24 Feb 02:51
Compare
Choose a tag to compare

Avoid enum definition conflict when working with reachability together; now it will be better to serve for your existing projects.
Previous enum:
typedef NS_ENUM(NSInteger, ReachabilityStatus) {
// Apple NetworkStatus Compatible Names.
NotReachable = 0,
ReachableViaWWAN = 1,
ReachableViaWiFi = 2
};
now:
typedef NS_ENUM(NSInteger, ReachabilityStatus) {
///Direct match with Apple networkStatus, just a force type convert.
RealStatusNotReachable = 0,
RealStatusViaWWAN = 1,
RealStatusViaWiFi = 2
};
Enjoy it!

version1.1.0 stable

20 Feb 09:18
Compare
Choose a tag to compare

stable version for cocoapods

version1.0.0 stable

25 Jan 06:08
Compare
Choose a tag to compare

The first stable version of RealReachability!
Dozens of hours's manual test!
Welcome!
Found any issue, please tell me.

[email protected]