Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorconnors <connor.sears@github.com>2013-08-05 04:10:42 +0400
committerconnors <connor.sears@github.com>2013-08-05 04:10:42 +0400
commit69952d5506f1d7afc8648aad50d01f200ff5b6dc (patch)
tree3994dd98fcc8c07b60eca53522c65821b662f8b2
parent35c01f8692f87a70ac4a1a22b32e8574d6c5b7dc (diff)
Updating version numbers.1.0.2
-rw-r--r--Makefile2
-rw-r--r--README.md19
-rw-r--r--component.json2
-rw-r--r--dist/ratchet.css2
-rw-r--r--dist/ratchet.js4
-rw-r--r--lib/js/sliders.js2
6 files changed, 7 insertions, 24 deletions
diff --git a/Makefile b/Makefile
index 7ebbf6f..9f52a77 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ build:
mkdir -p dist
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
cat lib/js/*.js > ./dist/ratchet.tmp.js
- @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
+ @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
cat ./dist/copywrite.txt ./dist/ratchet.tmp.js > ./dist/ratchet.js
cat ./dist/copywrite.txt ./dist/ratchet.tmp.css > ./dist/ratchet.css
rm ./dist/ratchet.tmp.css ./dist/ratchet.tmp.js ./dist/copywrite.txt
diff --git a/README.md b/README.md
index 7e01d40..05e8e5a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Ratchet
+# Ratchet v1.0.2
Prototype mobile apps with simple HTML, CSS and JS components.
@@ -29,23 +29,6 @@ A small list of "gotchas" are provided below for designers and developers starti
- 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.
- 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>```
-## Future features
-
-Ratchet is just getting started. Here are some of the immediate features we're thinking about:
-
-- Shelf (exposable left hand navigation a la Path or Facebook)
-- Gridviews
-- Notifications
-- Slide control
-- More list views options
-- Improved active states (especially for lists)
-- Docking list dividers
-- Touch library for richer touch events (swipes, long press, etc)
-- Autocomplete
-- Hiding title bar (hides with scroll)
-
-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.
-
## Authors
Dave Gamache
diff --git a/component.json b/component.json
index 785ab77..aa8637c 100644
--- a/component.json
+++ b/component.json
@@ -1,5 +1,5 @@
{
"name": "ratchet",
- "version": "1.0.1",
+ "version": "1.0.2",
"main": ["./dist/ratchet.js", "./dist/ratchet.css"]
}
diff --git a/dist/ratchet.css b/dist/ratchet.css
index 78f3812..93421b8 100644
--- a/dist/ratchet.css
+++ b/dist/ratchet.css
@@ -1,6 +1,6 @@
/**
* ==================================
- * Ratchet v1.0.1
+ * Ratchet v1.0.2
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ==================================
diff --git a/dist/ratchet.js b/dist/ratchet.js
index e718e3c..0e6d31b 100644
--- a/dist/ratchet.js
+++ b/dist/ratchet.js
@@ -1,6 +1,6 @@
/**
* ==================================
- * Ratchet v1.0.1
+ * Ratchet v1.0.2
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ==================================
@@ -558,7 +558,7 @@
window.addEventListener('click', function (e) { if (getTarget(e.target)) e.preventDefault(); });
}();/* ----------------------------------
- * SLIDER v1.0.0
+ * SLIDER v1.0.1
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
diff --git a/lib/js/sliders.js b/lib/js/sliders.js
index cdbba7d..7675e36 100644
--- a/lib/js/sliders.js
+++ b/lib/js/sliders.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * SLIDER v1.0.0
+ * SLIDER v1.0.1
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT