Fix stuff that was deprecated in Swift 2.2 in order to avoid warnings in Xcode 7.3.
-
augmentedworks added two new fields
filledBorderColorandfilledBorderWidth. Before the color of the border and the filling were the same for the filled star. Now we can make them different. -
Renamed color and border properties to make them start with words 'Empty' and 'Filled'. This is done to distinguish the fields visually in the attributes inspector. Attribute inspector shows only the start of a long name and fills the rest with "dot dot dot". For example, field names "Border color empty" and "Border color filled" both looked like "Border color..." and it was impossible to tell which one is which. Now they look like "Filled border..." and "Empty border..." and we can tell them apart in the attributes inspector.
- Rename
borderColorEmptytoemptyBorderColor. - Rename
borderWidthEmptytoemptyBorderWidth. - Rename
colorEmptytoemptyColor. - Rename
colorFilledtofilledColor. - If you used storyboard to set the colors and widths you will need to set them again.
- You may also need to fix the warnings by removing the values for the old properties like 'Color Filled' and 'Color Empty'. It can be done in the identity inspector for the view.
- You will most likely need to set the the field
filledBorderColorto be the same as yourcolorFilledto retain the previous look of the star. - If you used a non-default border width you may need to set
filledBorderWidthas well.
- Rename
- @staticdreams added tvOS support.
-
Added
didFinishTouchingCosmosproperty. -
Moved repository from https://github.com/exchangegroup/Cosmos to https://github.com/marketplacer/Cosmos.