-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First commit of the dev branch and beginning of version 2.0.0! Change…
…log: - Started keeping a changelog in changelog.txt. - Since this is a major change, I am incrementing the version number to 2.0.0. (Following Semantic Versioning, http://semver.org/) - Created a dev branch on GitHub. (https://github.com/jeff-optimizely/Guiders-JS/tree/dev) Contributors, issue pull requests to the dev branch so I can safely pull them without worrying about screwing up master code. - Changed the file names from guiders-(version).js and guiders-(version).css to simply guiders.js and guiders.css, so that it's easier to track changes in GitHub. If you want to know what version you have, just open the file or check guiders.version. - Upgraded jQuery from 1.51 to 1.90. It should still work with older versions of jQuery. - Use var guiders = this.guiders = {}; instead of var guiders = (function() { ... }) in order for guiders to attach to the window object more reliably. (Thanks @spmason spmason@7229f66#commitcomment-2506855) - Added bower support in component.json (Thanks rajkissu #78) - Added a method: guiders.getCurrentGuider, to get the current guider. This can be useful for analytics tracking, for example. - guiders.next and guiders.prev return the value of guiders.getCurrent() - Allow creating guidres in the HTML, then creating guiders via $("#guider2").guider(options). The options can be passed in through options or set as data-attrs on the object in the HTML. (Thanks @tarr11 #85)
- Loading branch information
Showing
9 changed files
with
322 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
CHANGELOG | ||
|
||
2.0.0 | ||
----- | ||
- Started keeping a changelog in changelog.txt. (You're reading it!) | ||
- Since this is a major change, I am incrementing the version number to 2.0.0. (Following Semantic Versioning, http://semver.org/) | ||
- Created a dev branch on GitHub. (https://github.com/jeff-optimizely/Guiders-JS/tree/dev) Contributors, issue pull requests to the dev branch so I can safely pull them without worrying about screwing up master code. | ||
- Changed the file names from guiders-(version).js and guiders-(version).css to simply guiders.js and guiders.css, so that it's easier to track changes in GitHub. If you want to know what version you have, just open the file or check guiders.version. | ||
- Upgraded jQuery from 1.51 to 1.90. It should still work with older versions of jQuery. | ||
- Use var guiders = this.guiders = {}; instead of var guiders = (function() { ... }) in order for guiders to attach to the window object more reliably. (Thanks @spmason https://github.com/spmason/Guiders-JS/commit/7229f66870701b980e98d80d1ac79cbb0016b92d#commitcomment-2506855) | ||
- Added bower support in component.json (Thanks rajkissu https://github.com/jeff-optimizely/Guiders-JS/pull/78) | ||
- Added a method: guiders.getCurrentGuider, to get the current guider. This can be useful for analytics tracking, for example. | ||
- guiders.next and guiders.prev return the value of guiders.getCurrent() | ||
- Allow creating guidres in the HTML, then creating guiders via $("#guider2").guider(options). The options can be passed in through options or set as data-attrs on the object in the HTML. (Thanks @tarr11 https://github.com/jeff-optimizely/Guiders-JS/issues/85) | ||
|
||
|
||
TODO BEFORE MERGING 2.0.0 TO MASTER | ||
----------------------------------- | ||
- Publish plugin with jQuery. (http://plugins.jquery.com/docs/publish/) | ||
- See if there's a more consistent way to do highlighting. (https://github.com/jeff-optimizely/Guiders-JS/issues/84) | ||
- Tag releases. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name" : "Guiders-JS", | ||
"version" : "2.0.0", | ||
"description" : "Guiders.js", | ||
"main" : [ "./guiders.js", "./guiders.css", "./guiders_arrows.png", "./guiders_x_button.jpg" ], | ||
"homepage" : "https://github.com/jeff-optimizely/Guiders-JS", | ||
"dependencies" : { | ||
"jquery" : ">= 1.5.x" | ||
}, | ||
"keywords" : [ | ||
"jquery", | ||
"guiders", | ||
"guider", | ||
"guided", | ||
"tour" | ||
], | ||
"author" : { | ||
"name" : "Jeff Pickhardt", | ||
"web" : "http://jeffpickhardt.com" | ||
}, | ||
"license": "http://www.apache.org/licenses/LICENSE-2.0.html" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
Oops, something went wrong.