From 4eb5ea20724cefd043391bfa0d85b1020e38b617 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 13 Jun 2018 07:01:16 +0800 Subject: [PATCH 1/2] Added a success stories page. --- docs/background/index.rst | 1 + docs/background/success.rst | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 docs/background/success.rst diff --git a/docs/background/index.rst b/docs/background/index.rst index be8cc8a5..534e6f04 100644 --- a/docs/background/index.rst +++ b/docs/background/index.rst @@ -12,5 +12,6 @@ plans for the future? That's what you'll find here! faq community + success releases roadmap diff --git a/docs/background/success.rst b/docs/background/success.rst new file mode 100644 index 00000000..e65d530f --- /dev/null +++ b/docs/background/success.rst @@ -0,0 +1,6 @@ +Success Stories +=============== + +Want to see examples of Rubicon in use? Here's some: + +* `Travel Tips `_ is an app in the iOS App Store that uses Rubicon to access the iOS UIKit libraries. From 6ac7ea5d5846c548690362b9e317ab291febc59c Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 13 Jun 2018 07:10:54 +0800 Subject: [PATCH 2/2] Markup correction. --- docs/background/releases.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/background/releases.rst b/docs/background/releases.rst index c1cdcf80..4fe66e77 100644 --- a/docs/background/releases.rst +++ b/docs/background/releases.rst @@ -9,7 +9,7 @@ Release History * Removed automatic conversion of ``NSString`` objects to ``str`` when returned from Objective-C methods. This feature made it difficult to call Objective-C methods on ``NSString`` objects, because there was no easy way to prevent the automatic conversion. * In most cases, this change will not affect existing code, because ``NSString`` objects now support operations similar to ``str``. * If an actual ``str`` object is required, the ``NSString`` object can be wrapped in a ``str`` call to convert it. -* Added support for ``objc_property``s with non-object types. +* Added support for ``objc_property`` with non-object types. * Added public ``get_ivar`` and ``set_ivar`` functions for manipulating ivars. * Changed the implementation of ``objc_property`` to use ivars instead of Python attributes for storage. This fixes name conflicts in some situations. * Fixed ``objc_property`` setters on non-macOS platforms. (cculianu)