Skip to content

Commit 23aa4cb

Browse files
committed
Updating overview page with new repository location and version 1.0.0
1 parent 06091f5 commit 23aa4cb

File tree

2 files changed

+39
-39
lines changed

2 files changed

+39
-39
lines changed

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div id='header'>
1919
<div id='logo-and-download'>
2020
<img alt="jQuery++" id="logo" src="images/logo.png"/>
21-
<a class='primary' href='https://github.com/downloads/jupiterjs/jquerypp/jquerypp-{{page.version}}.zip'>Download {{page.version}}</a>
21+
<a class='primary' href='https://github.com/downloads/bitovi/jquerypp/jquerypp.{{page.version}}.zip'>Download {{page.version}}</a>
2222
</div>
2323
</div>
2424
<div class='cf' id='buttons'>

index.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
layout: default
3-
version: 1.0b2
3+
version: 1.1.0
44
---
55

66
# Hi, I'm jQuery++.
77

8-
I am a MIT licensed collection of extremely useful DOM helpers and special events for jQuery 1.7 and
8+
I am a MIT licensed collection of extremely useful DOM helpers and special events for jQuery 1.8 and
99
later. I'm not a UI project like [jQuery UI](http://jqueryui.com/) or
1010
[jQuery Tools](http://jquerytools.org/). Instead, I'm all about providing
1111
low-level utilities for things that jQuery doesn't support. If [Underscore](http://underscorejs.org/)
@@ -33,37 +33,20 @@ There are several ways to get and setup jQuery++:
3333

3434
Simply select the files you want and click "Download". This will create and download a `jquerypp.custom.js`
3535
with all the files you selected and their dependencies. Load this script
36-
after jQuery 1.7 like:
36+
after jQuery 1.8 like:
3737

3838
{% highlight html %}
39-
<script src="lib/jquery.1.7.2.js"></script>
39+
<script src="lib/jquery.1.8.2.js"></script>
4040
<script src="lib/jquerypp.custom.js"></script>
4141
{% endhighlight %}
4242

43-
### Using individual files
44-
45-
The `jquerypp.js` file from the [full download](https://github.com/downloads/jupiterjs/jquerypp/jquerypp-{{page.version}}.zip)
46-
contains all jQuery++ plugins in a single file:
47-
48-
{% highlight html %}
49-
<script src="lib/jquery.1.7.2.js"></script>
50-
<script src="lib/jquerypp.js"></script>
51-
{% endhighlight %}
52-
53-
The `lib` folder contains each plugin as a separate file. There is a list of dependencies that need to be included first
54-
at the top of each file. For example, `jquery.animate.js` depends on `jquery.styles.js` so it needs to be loaded like this:
55-
56-
{% highlight html %}
57-
<script src="lib/jquery.1.7.2.js"></script>
58-
<script src="lib/jquery.styles.js"></script>
59-
<script src="lib/jquery.animate.js"></script>
60-
{% endhighlight %}
43+
<!--
6144
6245
### Using Steal
6346
6447
The files needed for using jQuery++ with [StealJS](http://javascriptmvc.com/docs.html#!stealjs) are
6548
located in the `steal/` folder of
66-
the [full download](https://github.com/downloads/jupiterjs/jquerypp/jquerypp-{{page.version}}.zip).
49+
the [full download](https://github.com/downloads/bitovi/jquerypp/jquerypp-{{page.version}}.zip).
6750
Take the `jquery/` folder and put it in your steal root to load a plugin like this:
6851
6952
{% highlight javascript %}
@@ -77,13 +60,15 @@ using jQuery++ with [CanJS](http://canjs.us) and Steal:
7760
7861
{% highlight javascript %}
7962
steal.map({
80-
"jquery/jquery.js" : "can/util/jquery/jquery.1.7.1.js"
63+
"jquery/jquery.js" : "can/util/jquery/jquery.1.8.2.js"
8164
});
8265
{% endhighlight %}
8366
67+
-->
68+
8469
### Using AMD
8570

86-
The files to load the jQuery++ plugins with an [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) module loader like [RequireJS](http://requirejs.org/), are located in the `amd/` folder of the [full download](https://github.com/downloads/jupiterjs/jquerypp/jquerypp-{{page.version}}.zip).
71+
The files to load the jQuery++ plugins with an [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) module loader like [RequireJS](http://requirejs.org/), are located in the `amd/` folder of the [full download](https://github.com/downloads/bitovi/jquerypp/jquerypp.{{page.version}}.zip).
8772
Place the `jquerypp/` folder in your module directory and load a plugin like this:
8873

8974
{% highlight javascript %}
@@ -98,7 +83,7 @@ You might have to map the `jquery` module name to the name of your jQuery AMD mo
9883
{% highlight javascript %}
9984
require.config({
10085
paths: {
101-
"jquery": "./jquery-1.7.2"
86+
"jquery" : "http://code.jquery.com/jquery-1.8.2"
10287
}
10388
});
10489
{% endhighlight %}
@@ -787,7 +772,7 @@ Steal as submodules that are used to generate the documentation and build the jQ
787772

788773
Depending on your version of git, you might need to cd into each submodule and run `git checkout`.
789774

790-
3. Fork [jquerypp](https://github.com/jupiterjs/jquerypp) on Github
775+
3. Fork [jquerypp](https://github.com/bitovi/jquerypp) on Github
791776

792777
4. Add your own fork as a remote in the `jquery` submodule:
793778

@@ -820,7 +805,7 @@ To develop jQuery++:
820805
### Documentation
821806

822807
To edit jquerypp.com, installing jQuery++ and DoneJS is not necessary. Simply *fork* and edit the
823-
github pages's [index.md page](https://github.com/jupiterjs/jquerypp/blob/gh-pages/index.md) online. Don't forget to
808+
github pages's [index.md page](https://github.com/bitovi/jquerypp/blob/gh-pages/index.md) online. Don't forget to
824809
submit a pull request.
825810

826811
To edit the documentation at [DoneJS.com](http://doneJS.com/docs.html):
@@ -841,7 +826,7 @@ To make a jQuery++ build, run:
841826

842827
js jquery/build/make.js
843828

844-
It puts the downloads in `jquery/dist`. To build a specific version check out the [git tag](https://github.com/jupiterjs/jquerypp/tags)
829+
It puts the downloads in `jquery/dist`. To build a specific version check out the [git tag](https://github.com/bitovi/jquerypp/tags)
845830
you want to build and run the above command.
846831

847832
### List of heroes
@@ -852,21 +837,36 @@ First, thanks to everyone who's contributed to [JavaScriptMVC](https://github.co
852837
and [jQueryMX](https://github.com/jupiterjs/jquerymx/contributors), and the people at
853838
[Bitovi](http://bitovi.com/people/). This page is for contributors after jQuery++'s launch:
854839

855-
[callumacrae](https://github.com/callumacrae) - [Width property for jQuery.selection](https://github.com/jupiterjs/jquerypp/pull/11) and documentation fixes.
840+
[callumacrae](https://github.com/callumacrae) - [Width property for jQuery.selection](https://github.com/bitovi/jquerypp/pull/11) and documentation fixes.
856841
[fabianonunes](https://github.com/fabianonunes) - Fixed several errors in the build process.
842+
[jbrumwell](https://github.com/jbrumwell) - Added several useful features for drag/drop events and
857843

858844
### Change Log
859845

846+
__1.0.0__ (November 20th 2012)
847+
848+
- feature: jQuery 1.8.0+ compatibility
849+
- feature: [dragcleanup event](https://github.com/jupiterjs/jquerypp/pull/43)
850+
- feature: [Reverse and move event](https://github.com/jupiterjs/jquerypp/issues/25)
851+
- fix: [pass through scrollTop in animate](https://github.com/jupiterjs/jquerypp/pull/40)
852+
- fix: [Fastfix: Original can be undefined](https://github.com/jupiterjs/jquerypp/pull/45)
853+
- fix: [Animate Scroll not working](https://github.com/jupiterjs/jquerypp/issues/35)
854+
- fix: [.stop() does not stop callbacks from being executed](https://github.com/jupiterjs/jquerypp/issues/28)
855+
- fix: [jQuery.event.swipe.max isn't actually being used](https://github.com/jupiterjs/jquerypp/issues/33)
856+
- fix: [Range triggers error on IE8](https://github.com/jupiterjs/jquerypp/issues/39)
857+
- fix: [[FormParams] convertValue function: Null value to undefined (Internet Explorer Fix)](https://github.com/jupiterjs/jquerypp/pull/51)
858+
- fix: [HoverInit delay 0 does not trigger hoverenter if immediately moused out](https://github.com/bitovi/jquerypp/issues/57)
859+
860860
__1.0 Beta 2__
861861

862-
- feature: [Key mapping tool for jQuery.event.key for international characters](https://github.com/jupiterjs/jquerypp/issues/16)
863-
- fix: [jQuery.formParams converts disabled fields](https://github.com/jupiterjs/jquerypp/issues/24)
864-
- fix: [jQuery.animate supports all parameters](https://github.com/jupiterjs/jquerypp/issues/22)
865-
- change: [jQuery.event.drag supports touch events](https://github.com/jupiterjs/jquerypp/issues/23)
866-
- fix: [jQuery.animate .stop() doesn't work](https://github.com/jupiterjs/jquerypp/issues/19)
867-
- fix: [Bug with duplicate sub keys](https://github.com/jupiterjs/jquerypp/issues/17)
868-
- change: [Added width property to jQuery.selection](https://github.com/jupiterjs/jquerypp/pull/11)
869-
- fix: [Security error in jQuery.animate](https://github.com/jupiterjs/jquerypp/issues/5)
862+
- feature: [Key mapping tool for jQuery.event.key for international characters](https://github.com/bitovi/jquerypp/issues/16)
863+
- fix: [jQuery.formParams converts disabled fields](https://github.com/bitovi/jquerypp/issues/24)
864+
- fix: [jQuery.animate supports all parameters](https://github.com/bitovi/jquerypp/issues/22)
865+
- change: [jQuery.event.drag supports touch events](https://github.com/bitovi/jquerypp/issues/23)
866+
- fix: [jQuery.animate .stop() doesn't work](https://github.com/bitovi/jquerypp/issues/19)
867+
- fix: [Bug with duplicate sub keys](https://github.com/bitovi/jquerypp/issues/17)
868+
- change: [Added width property to jQuery.selection](https://github.com/bitovi/jquerypp/pull/11)
869+
- fix: [Security error in jQuery.animate](https://github.com/bitovi/jquerypp/issues/5)
870870
- *jquerypp.com*
871871
- jsFiddle examples for [cookie](#cookie), [compare](#compare), [range](#range), [styles](#styles) and [key](#key)
872872
- Links to annotated sources ([e.g. jQuery.animate](http://donejs.com/jquery/docs/jquery.animate.html))

0 commit comments

Comments
 (0)