live-sequencer 0.0.3 → 0.0.3.1
raw patch · 2 files changed
+5/−5 lines, 2 files
Files
http/enable/HTTPServer/GUI.hs view
@@ -39,15 +39,15 @@ methods output = HTTPServer.Methods { HTTPServer.getModuleList = do- (modListIn,modListOut) <- MVar.new+ (modListIn,modListOut) <- MVar.newEmpty output $ GetModuleList modListIn MVar.take modListOut, HTTPServer.getModuleContent = \name -> Exc.ExceptionalT $ do- (contentIn,contentOut) <- MVar.new+ (contentIn,contentOut) <- MVar.newEmpty output $ GetModuleContent name contentIn MVar.take contentOut, HTTPServer.updateModuleContent = \name edited -> Exc.ExceptionalT $ do- (newContentIn,newContentOut) <- MVar.new+ (newContentIn,newContentOut) <- MVar.newEmpty output $ UpdateModuleContent name edited newContentIn MVar.take newContentOut }
live-sequencer.cabal view
@@ -1,5 +1,5 @@ Name: live-sequencer-Version: 0.0.3+Version: 0.0.3.1 Author: Henning Thielemann and Johannes Waldmann Maintainer: Johannes Waldmann <waldmann@imn.htwk-leipzig.de>, Henning Thielemann <haskell@henning-thielemann.de> Category: Sound, Music, GUI@@ -300,7 +300,7 @@ Source-Repository this Type: git- Tag: 0.0.3+ Tag: 0.0.3.1 Location: http://code.haskell.org/~thielema/livesequencer/ Flag gui