adj. Boastful.
American Heritage® Dictionary of the English Language, Fourth Edition
Thrasonic is an unofficial continuation of the boastful tweetback library by Zach Holman; under new management: Kenan Yildirim.
Details and installation instructions can be found at the Thrasonic website: http://kenany.github.com/thrasonic/
If you've come across a problem with the code, submit it to the Issue Tracker. When filing a new bug, please remember to include:
- The Thrasonic version you're using
- Your platform/OS version
- Steps to reproduce the issue, along with the results you get compared to the results you expect
- For most issues, it will help to include a reduced test case where you've isolated the issue. Use jsFiddle.
Thrasonic's version numbering is based off Semantic Versioning. In a nutshell, version numbers are formatted like:
<major>.<minor>.<patch>
Here's the gist of the Semantic Versioning guidelines:
- If the changes aren't backward compatible (user needs to change something on their site in order to keep Thrasonic working), then I bump the major (and reset the minor and patch).
- New additions that don't break backward compatibility (user will not see a significant change in their tweetbacks) will bump the minor (and resets the patch).
- Bug fixes and misc changes will bump the patch number.
- Also, only changes to
thrasonic.coffee(which affectsthrasonic.jsandthrasonic.min.js) orthrasonic.cssdeserve to update the version number.
You want to help? Awesome!
Contribution enquiries should take place before any significant pull request, otherwise you risk spending a lot of time working on something that I might not want to add to Thrasonic.
- Install node.js.
- Install CoffeeScript and UglifyJS with
npm install -g coffee-script uglify-js. - Clone thrasonic:
git clone git://github.com/KenanY/thrasonic.git. cdinto it and build usingcake build.
Basically, after installing node.js:
npm install -g coffee-script uglify-js
git clone git://github.com/KenanY/thrasonic.git
cd thrasonic
cake build
Upgrade the version number with cake -v VERSION upgrade. Note that this is only used to release new Thrasonic versions, and is generally not wanted in pull requests.
