Skip to content
This repository was archived by the owner on Feb 16, 2019. It is now read-only.

Commit 943321f

Browse files
committed
Version 1.0.0
1 parent b5d3509 commit 943321f

File tree

4 files changed

+16
-69
lines changed

4 files changed

+16
-69
lines changed

Changelog.markdown

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# SSToolkit Changelog
22

3-
### Version 0.1.2
3+
### Version 1.0.0
44

5-
*Unreleased*
5+
[Released May 21, 2012](https://github.com/samsoffes/sstoolkit/tree/1.0.0)
66

7+
* Move to ARC
78
* Add `rowBackgroundColor` to SSCollectionView. This is useful for having a texture background color on the collection view and preventing the internal UITableView from using it as the background color of each row.
89
* Add `NSAssert` in SSCollectionView for a `nil` `reuseIdentifier`. This used to be an `NSLog`. It was changed to an assert because you really need to provide one or your performance will be just awful. Be user to add `NS_BLOCK_ASSERTIONS` in your release build to avoid crashing just incase you missed one somewhere.
910
* Add `deepMutableCopy` to `NSDictionary` and `NSArray`
11+
* Add `cellImageForKey:` to SSPickerViewController - [@greenisus](http://github.com/greenisus)
12+
* Add `rowBackgroundColor` to SSCollectionView
13+
* Improve NSDate ISO8601 category to support timezones
14+
* Add NSDate category for converting a date to a short string (similar to Tweetbot) localized in 15 languages
15+
* Add SSRateLimit
16+
* Add SSButton
17+
* Lots of bug fixes
1018

1119
### Version 0.1.2
1220

Readme.markdown

Lines changed: 3 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ If you're using this in your project, I'd love to hear about it! [Send me an ema
66

77
## Documentation
88

9+
**Read the [SSToolkit Documentation](http://sstoolk.it/documentation) online.**
10+
911
Install the documentation into Xcode with the following steps:
1012

1113
1. Open Xcode Preferences
@@ -15,51 +17,10 @@ Install the documentation into Xcode with the following steps:
1517

1618
http://docs.sstoolk.it/com.samsoffes.sstoolkit.atom
1719

18-
5. Click Install next the new row reading "SSKeychain Documentation". (If you don't see it and didn't get an error, try restarting Xcode.)
20+
5. Click Install next the new row reading "SSToolkit Documentation". (If you don't see it and didn't get an error, try restarting Xcode.)
1921

2022
Be sure you have the docset selected in the organizer to see results for SSToolkit.
2123

22-
You can also **read the [SSToolkit Documentation](http://sstoolk.it/documentation) online.**
23-
24-
## Classes
25-
26-
### Views
27-
28-
* [SSAnimatedImageView][] - easily create timed or keyframed animations
29-
* [SSBadgeView][] - badge accessory view for table cells, similar to Mail.app unread counts
30-
* [SSBorderedView][] - draw boxes with top and bottom borders with optional insets
31-
* [SSCollectionView][] - simple collection view modeled after UITableView and NSCollectionView
32-
* [SSGradientView][] - easily create gradients with optional borders and insets
33-
* [SSHUDView][] - simple heads-up display
34-
* [SSLabel][] - vertically align and inset your text
35-
* [SSLineView][] - easily create solid, dotted, or dashed lines with an inset
36-
* [SSLoadingView][] - flexible loading view
37-
* [SSPieProgressView][] - pie chart style progress bar similar to the one in Xcode's status bar
38-
* [SSWebView][] - handy delegate additions and control over shadows and scroll
39-
40-
### Controls
41-
42-
* [SSAddressBarTextField][] - textfield to show loading progress and control a web view
43-
* [SSTextField][] - inset your text
44-
* [SSTextView][] - placeholders like `UITextField`
45-
* [SSSegmentedControl][] - segmented control clone so make customizing the appearance easier
46-
* [SSSwitch][] - switch clone so make customizing the appearance easier
47-
48-
### View Controllers
49-
50-
* [SSCollectionViewController][] - manage a collection view
51-
* [SSPickerViewController][] - easily create picker view controllers like the Settings.app
52-
* [SSRatingPickerViewController][] - simple view controller for rating stuff like App Store.app
53-
54-
### Misc
55-
56-
* [SSDrawingUtilities][] - random macros for drawing and such
57-
* [SSConcurrentOperation][] - a simple wrapper for concurrent NSOperations
58-
59-
### Categories
60-
61-
[Several categories](http://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSCategories.h) are included and used throughout SSToolkit.
62-
6324
## Adding SSToolkit to your project
6425

6526
For installation instructions, see [the getting started guide on the SSToolkit website](http://sstoolk.it/#getting-started).
@@ -83,25 +44,3 @@ For usage instructions, see [the usage guide on the SSToolkit website](http://ss
8344
## Thanks
8445

8546
Huge thanks to [our contributors](http://github.com/samsoffes/sstoolkit/contributors), [Jake Marsh](http://deallocatedobjects.com), and [Mike Rundle](http://flyosity.com).
86-
87-
[SSAnimatedImageView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSAnimatedImageView.h
88-
[SSBadgeView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSBadgeView.h
89-
[SSBorderedView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSBorderedView.h
90-
[SSCollectionView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSCollectionView.h
91-
[SSGradientView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSGradientView.h
92-
[SSHUDView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSHUDView.h
93-
[SSLabel]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSLabel.h
94-
[SSLineView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSLineView.h
95-
[SSLoadingView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSLoadingView.h
96-
[SSPieProgressView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSPieProgressView.h
97-
[SSWebView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSWebView.h
98-
[SSAddressBarTextField]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSAddressBarTextField.h
99-
[SSTextField]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSTextField.h
100-
[SSTextView]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSTextView.h
101-
[SSSegmentedControl]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSSegmentedControl.h
102-
[SSSwitch]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSSwitch.h
103-
[SSCollectionViewController]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSCollectionViewController.h
104-
[SSPickerViewController]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSPickerViewController.h
105-
[SSRatingPickerViewController]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSRatingPickerViewController.h
106-
[SSDrawingUtilities]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSDrawingUtilities.h
107-
[SSConcurrentOperation]: https://github.com/samsoffes/sstoolkit/blob/master/SSToolkit/SSConcurrentOperation.h

SSToolkit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = 'SSToolkit'
3-
s.version = '0.1.3'
3+
s.version = '1.0.0'
44
s.platform = :ios
55
s.summary = 'A collection of well-documented iOS classes for making life easier.'
66
s.homepage = 'http://sstoolk.it'
77
s.author = { 'Sam Soffes' => '[email protected]' }
8-
s.source = { :git => 'https://github.com/samsoffes/sstoolkit.git', :tag => '0.1.3' }
8+
s.source = { :git => 'https://github.com/samsoffes/sstoolkit.git', :tag => '1.0.0' }
99

1010
s.description = 'SSToolkit is a collection of well-documented iOS classes for making life ' \
1111
'easier by solving common problems all iOS developers face. Some really ' \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.2
1+
1.0.0

0 commit comments

Comments
 (0)