Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris-Em committed Oct 5, 2015
1 parent 295b9cb commit 7b49092
Showing 1 changed file with 107 additions and 32 deletions.
139 changes: 107 additions & 32 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,111 @@
# Change Log

## [Unreleased](https://github.com/Boris-Em/BEMSimpleLineGraph/tree/HEAD)

[Full Changelog](https://github.com/Boris-Em/BEMSimpleLineGraph/compare/v3.3...HEAD)

**Implemented enhancements:**

- NSString methods for y values/popups? [\#119](https://github.com/Boris-Em/BEMSimpleLineGraph/issues/119)

- How to draw a null point? [\#104](https://github.com/Boris-Em/BEMSimpleLineGraph/issues/104)

- Ability to draw negative values with different color [\#82](https://github.com/Boris-Em/BEMSimpleLineGraph/issues/82)

**Fixed bugs:**

- Popup Suffix Issue when alwaysDisplayPop enabled [\#134](https://github.com/Boris-Em/BEMSimpleLineGraph/issues/134)

- lineGraphDidFinishLoading [\#124](https://github.com/Boris-Em/BEMSimpleLineGraph/issues/124)

**Closed issues:**

- Bottom Gradient not in latest Podspec [\#113](https://github.com/Boris-Em/BEMSimpleLineGraph/issues/113)

**Merged pull requests:**

- Added a bunch of options including left/right y axis positioning, float values in Y-Axis and popovers, null graph values, and customizations around how the X and Y axes are displayed! [\#132](https://github.com/Boris-Em/BEMSimpleLineGraph/pull/132) ([RobDay](https://github.com/RobDay))

- Added a bunch of options including left/right y axis positioning, float values in Y-Axis and popovers, and null graph values! [\#129](https://github.com/Boris-Em/BEMSimpleLineGraph/pull/129) ([RobDay](https://github.com/RobDay))

- Added support for float on popup labels and Y-axis [\#114](https://github.com/Boris-Em/BEMSimpleLineGraph/pull/114) ([Boris-Em](https://github.com/Boris-Em))

- Additional check to \#80 [\#91](https://github.com/Boris-Em/BEMSimpleLineGraph/pull/91) ([skywinder](https://github.com/skywinder))
## [v4.1](https://github.com/Boris-Em/BEMSimpleLineGraph/releases/tag/v4.1)

[Full Changelog](://github.com/Boris-Em/BEMSimpleLineGraph/compare/v4.0...v4.1)

**Improvements**
* Bezier Algorithm Improvements. This modifies the algorithm used to determine the graph's line. The old
algorithm, although generating prettier graphs, displayed inaccurate information; line arcs would go above and below min/max values, and a graph that had two data points of the same value in a row would show invalid arcs between the two data points (always upward) giving the user an inaccurate representation of the data. Thanks to @tres for this wonderful improvement (9311f8d).
* Allow gesture recognizer to function simultaneously with other gesture recognizers. (8c25436).

**New Features**
* New reference line width property (`referenceLineWidth`) allows you to control the width of the reference lines independently from the graph line. (0bb60c9)

**Bug Fixes**
* Fixes #135, an issue where bezier curve lines were not confined to the graph's boundaries (despite the fill gradients and colors being confined). (17fe25f)
* Fixes an issue where permanent pop up labels are duplicated when `layoutSubview` is called (i.e. during interface orientation changes). (929df84)
* Fixes a crash that may have occurred when attempting to perform calculations on a graph with no data, or before data is loaded. (e2a5167)
* Fixes a static analyzer warning about uninitialized struct. (af70a96)

**GitHub Repo Updates**
* Readme Updates
* Fixes quotation mark for Swift bridging header example (978b504)

**Public to Private API Transition**
* Removed previously public properties on `BEMLine` and made them private. These properties are not marked as deprecated because they should not have been public in the first-place, and any public use of them would have unintentional consequences. The following properties are no longer available publicly:
* `@property (assign, nonatomic) CGPoint P0`
* `@property (assign, nonatomic) CGPoint P1`
* `@property (assign, nonatomic) CGPoint P2`
* `@property (assign, nonatomic) CGPoint P3`

## [v4.0](https://github.com/Boris-Em/BEMSimpleLineGraph/releases/tag/v4.0)

[Full Changelog](https://github.com/Boris-Em/BEMSimpleLineGraph/compare/v3.3...v4.0)

**Breaking Changes**
* Changed the purpose of `lineGraphDidFinishLoading:`.
* Added a new `lineGraphDidFinishDrawing:` delegate method to differentiate between when the graph finishes drawing & animating and when it finishes loading its data.
* Those who previously used `lineGraphDidFinishLoading:` to take graph snapshots should now use `lineGraphDidFinishDrawing:` instead.
* The new `lineGraphDidFinishDrawing:` can be used to create snapshots for the  WATCH
* Deprecated the `distanceToClosestPoint` method. This method will become unavailable in a future update. There will be no replacement for this method and we suggest phasing it out.
* Removed compile-time module check (`@import` vs. `#import`). Modules are now be used by default. (a43ba9380f5b2a8dc8fcb268b3eb611e1dcfb471)
* Added warnings to deprecated methods which will be removed in the next major release:
* `numberOfPointsInGraph`
* `didTouchGraphWithClosestIndex:`
* `didReleaseGraphWithClosestIndex:`
* `numberOfGapsBetweenLabels`

**Semi-Breaking Changes**
* Improved the implementation of the X-Axis. The X-Axis background is now drawn by BEMSimpleLineGraph (as the Y-Axis is) instead of by BEMLine. This will help ensure stability and provide a more reliable system moving forward. It also fixes issues with gradient overlap into the X-Axis area.

**Xcode 6 Improvements**
* BEMSimpleLineGraph now takes advantage of Xcode 6's new IBDesignable and IBInspectable features. Preview select graph properties in Interface Builder.
* Starting in Xcode 6.3 and Swift 1.2, BEMSimpleLineGraph is compatible with the new NULLABILITY standards. All methods and properties are, by default, non-nullable unless otherwise marked. (a43ba9380f5b2a8dc8fcb268b3eb611e1dcfb471)

**Key Feature**
* Average Lines (a939039a1e9a7d728cb71356b1e01902282b9132). Added an Average Line feature. Draw an average line with a specific y-value. Use the new `averageLine` property on BEMSimpleLineGraphView to setup and customize the line. Might be considered a fix for issue #42. The implementation of the average line feature is likely the direction BEMSimpleLineGraph is headed as it expands.

**New Features** - Shoutout to @RobDay and his team at @dowjones for PR #132
* New Properties
* Optionally display only dots and no line on your graph (resolves #51) using the new `displayDotsOnly` property.
* Added new `positionYAxisRight`property. A boolean flag that moves the Y-Axis to the right of the graph.
* Added a new `lineDashPatternForReference[X|Y]AxisLines` property. Specify a dash pattern for the reference lines drawn on the graph. This creates the reference lines with a dotted or hashed pattern.
* Added a new `enable[Left|Right|Top|Bottom]ReferenceAxisFrameLine` property. By setting these properties, you can control what reference frame lines are drawn on the graph.
* New `displayDotsWhileAnimating` property. A boolean specifying whether or not to show the dots while animating the reference lines.
* New `noDataLabelColor`. Specify the color for the no data label
* New `noDataLabelFont`. Specify the font for the no data label
* Created a new `formatStringForValues` property. A format string to apply to values in the Y-Axis. This lets you have fine-grain control over the decimal precision of these values (eg. ".02f")
* New `yAxis[Prefix|Suffix]OnLineGraph` property. Specify popup prefix and suffix to show in the built-in popup view
* Null Graph Values
* The graph now has the ability to plot null graph values. `BEMSimpleLineGraph.h` now specifies a special value, `BEMNullGraphValue`, that corresponds to a null data point. In your response to `valueForPointAtIndex`, return this special value whenever your data point is null. BEMSimpleLineGraph will now skip over this value when drawing the line. If you set `interpolateNullValues`, the graph will connect non-null values while preserving spacing for the null value.
* Customizing Popup Views
* Added a `popUpSuffixForlineGraph:` delegate method. A suffix to append to the stock pop up label view's value.
* Added a `popUpPrefixForlineGraph:` delegate method. A prefix to prepend to the stock pop up label view's value.
* If you want to use a custom popup view instead of the built-in popup view, you can respond to the optional method `popUpViewForLineGraph:`. You respond to this method with a UIView that will be used in place of the default popup.
* When you use the custom popup view, the data in the view needs to be changed whenever the user drags his or her finger. To handle this modification, BEMSimpleLineGraph will send the message `lineGraph:modifyPopupView:ForIndex:`. This lets you modify your view for a given datapoint.
* Axis Customizations
* Added a new delegate method, `incrementPositionsForXAxisOnLineGraph` that lets you set the specific indices where X-Axis labels should be drawn.
* Added a new delegate method, `baseIndexForXAxisOnLineGraph`, that lets you specify the index of the first X-Axis label to draw.
* `incrementIndexForXAxisOnLineGraph`. An increment to apply to the response.
* `baseIndexForXAxisOnLineGraph`. X-Axis labels will be drawn on this increment across the X-Axis.
* `baseValueForYAxisOnLineGraph`. The starting Y-Axis value to plot draw on the Y-Axis. This lets you set a specifically formatted value so that your access label can be more user friendly (21.50 instead of 21.47)
* `incrementValueForYAxisOnLineGraph`- An increment value to add to the response of `baseValueForYAxisOnLineGraph` that specifies what Y-Axis values to draw. This lets you return a user friendly increment, eg. .25.
* Snapshot Methods
* Use the new graphSnapshotImageRenderedWhileInBackground: method to capture a graph snapshot while your app is in the background. Fixes #193. (512f716a36c94663080abb80224404e17940d133)
* Animation & Drawing
* New “expansion” animation has been added to the list of available animations. Try out the new animation with the `BEMLineAnimationExpand` type.

**Bug Fixes**
* Fixes #134, an issue where popup suffixes would not display when `alwaysDisplayPopUpLabels` was set to YES. The sample app now demonstrates the use of popup suffixes. (183a67504b3851e4f79f49b86a54e3e69935ac9f)
* Fixes #138, an issue where popup prefixes would not display when `alwaysDisplayPopUpLabels` was set to YES. The sample app now demonstrates the use of popup prefixes. (c83d66c32e9b0ee31b95e996a919f896afdd7e38)
* Fixes #70, a bug where reference axis frame drawing was conditional on reference axis lines being enabled. Now these properties are not dependent on one another. (f1f2ac453bcecd6f84fd5bcba5346068285e6467)
* Fixes #196, vertical reference lines are now properly aligned with x-axis labels. (64b4fb1756eeb42c564b946a34b66edac21bf020)
* Fixes #67, the far-right and far-left x-axis labels now re-orient themselves to avoid being clipped.(64b4fb1756eeb42c564b946a34b66edac21bf020)
* Fixed an issue where the reference lines would have an alpha value of 0 if the line also had an alpha value of zero. Reference lines now set to an alpha of 0.1 when the line alpha is 0.0. As before, you can disable
reference lines using the boolean properties to make them appear or disappear. (1acc2e206a0bbb4020ee3e8004ab900c71295a8a)

**GitHub Repo Updates**
* Graph Properties View Controller
* View all available public BEMSimpleLineGraph properties directly from the sample project
* Ability to use and toggle these properties directly from the Storyboard is coming soon
* Readme Updates
* New *Apps Using This Project* Section
* Added details on IBDesignables
* Added contributions note
* Improved markdown formatting
* Added *StackOverflow* support details
* Updated project requirements

## [v3.3](https://github.com/Boris-Em/BEMSimpleLineGraph/tree/v3.3) (2015-01-31)

Expand Down Expand Up @@ -242,4 +317,4 @@



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

0 comments on commit 7b49092

Please sign in to comment.