Skip to content

Commit 69952d5

Browse files
author
connors
committed
Updating version numbers.
1 parent 35c01f8 commit 69952d5

File tree

6 files changed

+7
-24
lines changed

6 files changed

+7
-24
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build:
66
mkdir -p dist
77
cat lib/css/base.css lib/css/bars.css lib/css/lists.css lib/css/forms.css lib/css/buttons.css lib/css/chevrons.css lib/css/counts.css lib/css/segmented-controllers.css lib/css/popovers.css lib/css/modals.css lib/css/sliders.css lib/css/toggles.css lib/css/push.css > ./dist/ratchet.tmp.css
88
cat lib/js/*.js > ./dist/ratchet.tmp.js
9-
@echo "/**\n * ==================================\n * Ratchet v1.0.1\n * Licensed under The MIT License\n * http://opensource.org/licenses/MIT\n * ==================================\n */\n" > ./dist/copywrite.txt
9+
@echo "/**\n * ==================================\n * Ratchet v1.0.2\n * Licensed under The MIT License\n * http://opensource.org/licenses/MIT\n * ==================================\n */\n" > ./dist/copywrite.txt
1010
cat ./dist/copywrite.txt ./dist/ratchet.tmp.js > ./dist/ratchet.js
1111
cat ./dist/copywrite.txt ./dist/ratchet.tmp.css > ./dist/ratchet.css
1212
rm ./dist/ratchet.tmp.css ./dist/ratchet.tmp.js ./dist/copywrite.txt

README.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ratchet
1+
# Ratchet v1.0.2
22

33
Prototype mobile apps with simple HTML, CSS and JS components.
44

@@ -29,23 +29,6 @@ A small list of "gotchas" are provided below for designers and developers starti
2929
- Ratchet uses XHR requests to fetch additional pages inside the application. Due to security concerns, modern browsers prevent XHR requests when opening files locally (aka using the file:/// protocol); consequently, Ratchet does not work when opened directly as a file.
3030
- A common solution to this is to simply serve the files from a local server. One convenient way to achieve this is to run ```python -m SimpleHTTPServer <port>``` to serve up the files in the current directory to ```http://localhost:<port>```
3131

32-
## Future features
33-
34-
Ratchet is just getting started. Here are some of the immediate features we're thinking about:
35-
36-
- Shelf (exposable left hand navigation a la Path or Facebook)
37-
- Gridviews
38-
- Notifications
39-
- Slide control
40-
- More list views options
41-
- Improved active states (especially for lists)
42-
- Docking list dividers
43-
- Touch library for richer touch events (swipes, long press, etc)
44-
- Autocomplete
45-
- Hiding title bar (hides with scroll)
46-
47-
Even these are just the short-term goals though. We eventually want to extend Ratchet beyond the prototying for iPhone and create HTML/CSS/JS components for iPad and Android devices. Our dream is that Ratchet becomes the best way to create mobile experiences with web standard languages.
48-
4932
## Authors
5033

5134
Dave Gamache

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "ratchet",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"main": ["./dist/ratchet.js", "./dist/ratchet.css"]
55
}

dist/ratchet.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* ==================================
3-
* Ratchet v1.0.1
3+
* Ratchet v1.0.2
44
* Licensed under The MIT License
55
* http://opensource.org/licenses/MIT
66
* ==================================

dist/ratchet.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* ==================================
3-
* Ratchet v1.0.1
3+
* Ratchet v1.0.2
44
* Licensed under The MIT License
55
* http://opensource.org/licenses/MIT
66
* ==================================
@@ -558,7 +558,7 @@
558558

559559
window.addEventListener('click', function (e) { if (getTarget(e.target)) e.preventDefault(); });
560560
}();/* ----------------------------------
561-
* SLIDER v1.0.0
561+
* SLIDER v1.0.1
562562
* Licensed under The MIT License
563563
* Adapted from Brad Birdsall's swipe
564564
* http://opensource.org/licenses/MIT

lib/js/sliders.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ----------------------------------
2-
* SLIDER v1.0.0
2+
* SLIDER v1.0.1
33
* Licensed under The MIT License
44
* Adapted from Brad Birdsall's swipe
55
* http://opensource.org/licenses/MIT

0 commit comments

Comments
 (0)