Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
cbossut committed Mar 1, 2020
2 parents 82c2268 + 6ff5402 commit 607d1f9
Show file tree
Hide file tree
Showing 10 changed files with 740 additions and 318 deletions.
2 changes: 1 addition & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"elm/json": "1.1.3",
"elm/random": "1.0.0",
"elm/svg": "1.0.1",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm-community/typed-svg": "5.1.0",
"elm-community/undo-redo": "3.0.0",
Expand All @@ -33,7 +34,6 @@
"indirect": {
"elm/bytes": "1.0.8",
"elm/regex": "1.0.0",
"elm/time": "1.0.0",
"elm/virtual-dom": "1.0.2",
"kuon/elm-string-normalize": "1.0.1"
}
Expand Down
1 change: 1 addition & 0 deletions pkgConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
, "ports.html"
, "ports.js"
, "elmApp.js"
, "lib/recorder.js"
, "lib/svg.js"
, "lib/Tone.js"
, "LICENSE.md"
Expand Down
365 changes: 197 additions & 168 deletions src/Data/Wheel.elm

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src/Editor/Interacting.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@ module Editor.Interacting exposing (..)
import Coll exposing (Id)
import Data.Common exposing (Identifier)
import Data.Mobile exposing (Geer)
import Link exposing (Link)
import Pack exposing (Packed)
import Sound exposing (Sound)


type Interactable
= ISurface
| IPack
| IWheel Identifier
| IResizeHandle (Id Geer) Bool -- True = right
| IPack (Id Packed)
| IPacked (Id Packed)
| ILink (Link Geer)
| ISound Sound


Expand Down
Loading

0 comments on commit 607d1f9

Please sign in to comment.