Skip to content

Commit

Permalink
Add CHANGELOG, update composer.json dependencies and package.json ver…
Browse files Browse the repository at this point in the history
…sion.
  • Loading branch information
Hilton Janfield committed Sep 12, 2015
1 parent 6c1bc0f commit b4821b6
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 24 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# jQuery Enhanced Splitter Change Log

## Branch v1.2.0

Changes made so far over v1.1.0.
- Updated composer.json to specify valid jQuery versions (1.8+ / 2.0+).
- (UX improvement) Implemented drag-delay if the user clicks on the collapse handle then starts dragging.
Drag will not begin until mouse has moved past 5 pixels in either direction.
- (UX improvement) Prevent click event if the user started and ended their drag on the collapse handle.
- Respect CSS min/max-width/height.

## Release v1.1.0

This release adds a number of new options, as well as a few fixes and overall UX improvements.
- Added 'lowerLimit' and 'upperLimit' options, changed 'limit' to an alias to set both.
- Added 'collapse' option.
- Added 'fixed' option.
- Added 'splitterSize' option.
- Changed 'orientation' string setting to 'vertical' boolean setting. (BREAKING CHANGE)
- Fixed a few bugs.
- Significantly rewrote event handling, now smoother, faster, and tastier.

## Release v1.0.1

More bug fixes, improved event handlers, improved CSS.

## Release v1.0.0

Original release of fork, with significant changes and bug fixes.
30 changes: 8 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,17 @@
jquery.enhsplitter is a plugin to generate sliding splitters on your page. Useful for separating content, emulating the
look of frames, collapsable tool windows, and more. Completely customizable look and feel, and touchscreen friendly.

## Release v1.1.0
## Demo and Documentation

This release adds a number of new options, as well as a few fixes and overall UX improvements.
- Added 'lowerLimit' and 'upperLimit' options, changed 'limit' to an alias to set both.
- Added 'collapse' option.
- Added 'fixed' option.
- Added 'splitterSize' option.
- Changed 'orientation' string setting to 'vertical' boolean setting.
- Fixed a few bugs.
- Significantly rewrote event handling, now smoother, faster, and tastier.
A demo and basic documentation of options of the latest version are available at:

## Branch v1.2.0

Changes made so far.
- (UX improvement) Implemented drag-delay if the user clicks on the collapse handle then starts dragging.
Drag will not begin until mouse has moved past 5 pixels in either direction.
- (UX improvement) Prevent click event if the user started and ended their drag on the collapse handle.

# Demo and Documentation
<http://janfield.ca/github/jquery.enhsplitter/demo.html>

A demo and basic documentation of options are available at:
## Requirements

<http://janfield.ca/github/jquery.enhsplitter/demo.html>
jquery.enhsplitter requires jQuery v1.8 or greater, or v2.0 or greater.

# Example
## Example

A minimal call to jquery.enhsplitter in a jQuery ready function looks like this:

Expand Down Expand Up @@ -77,13 +63,13 @@ jQuery(function ($) {
```
# License
## License
Copyright (C) 2015 Hilton Janfield <hilton@janfield.ca>
Released under the terms of the [GNU Lesser General Public License](http://www.gnu.org/licenses/lgpl.html)
# Original Author and Contributors
## Original Author and Contributors
This plugin was originally created by Jakub Jankiewicz. See https://github.com/jcubic/jquery.splitter
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"homepage": "https://github.com/hiltonjanfield/jquery.enhsplitter",
"bugs": "https://github.com/hiltonjanfield/jquery.enhsplitter/issues",
"dependencies": {
"jquery": ">=2.1"
"jquery": ">=1.8 || >=2.0"
},
"main": [
"js/jquery.enhsplitter.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.enhsplitter",
"version": "1.1.0",
"version": "1.2.0",
"description": "Enhanced splitter bar for separation of content, tool bars, frame emulation, and more.",
"main": "js/jquery.enhsplitter.js",
"scripts": {
Expand Down

0 comments on commit b4821b6

Please sign in to comment.