Skip to content

Commit

Permalink
Merge pull request #41 from paulsonnentag/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
paulsonnentag authored Oct 18, 2016
2 parents 0e9f35a + 9894ff5 commit 70e28b2
Show file tree
Hide file tree
Showing 27 changed files with 1,217 additions and 828 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,23 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.2.0] - 2016-10-18
### Added

- Improve client library
- add swipe animation
- add connect button
- handle resize
- Improve golf demo
- better graphics
- accelerate ball based on orientation
- Improve particle demo
- fewer particles
- make particles draggable

### Fixed
- Fix collision detection of golf demo
- Fix transform calculation when merging a cluster with multiple clients into another cluster

## [0.1.0] - 2016-09-30
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
> **DISCLAIMER**
>
> This is a very early version of Swip.js. If the app doesn't respond you might have to reload the browser or restart the server.
> It works best if you create a separate wireless network to connect multiple devices with your swip.js application
<img src='assets/explanation.jpg' width="400">

Expand All @@ -29,7 +30,7 @@ npm run build

## Particles

![alt tag] (./assets/example1.gif)
<a href="https://www.youtube.com/watch?v=qXOwT0ieOgw" target="_blank"><img src="./assets/blob_prev.jpg"/></a>

Enter the following command to run the particles demo:

Expand All @@ -39,7 +40,7 @@ npm run particles

## Golf

![alt tag] (./assets/example2.gif)
<a href="https://www.youtube.com/watch?v=ZE0gxa-p8HY" target="_blank"><img src="./assets/golf_prev.jpg"/></a>

Enter the following command to run the golf demo:

Expand Down
Binary file added assets/blob_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/blob_prev.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/golf_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/golf_prev.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
149 changes: 0 additions & 149 deletions dreamcode.js

This file was deleted.

6 changes: 6 additions & 0 deletions examples/golf/client/assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
18 changes: 18 additions & 0 deletions examples/golf/client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Golf</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel='stylesheet' href='assets/style.css'>
</head>
<body>

<div id="root"></div>

<script src="/socket.io/socket.io.js"></script>
<script src="/swip/swip.js"></script>
<script src="src/app.js"></script>
</body>
</html>
Loading

0 comments on commit 70e28b2

Please sign in to comment.