truelevel 0.1.2 → 0.1.3
raw patch · 4 files changed
+36/−32 lines, 4 filesdep +containersdep ~WAVEdep ~basedep ~parseargssetup-changed
Dependencies added: containers
Dependency ranges changed: WAVE, base, parseargs
Files
- README +0/−20
- README.md +16/−0
- Setup.hs +0/−5
- truelevel.cabal +20/−7
− README
@@ -1,20 +0,0 @@-truelevel -- audio file compresor / limiter-version 0.1-Bart Massey <bart@cs.pdx.edu>-8 March 2008--This program is a simple command-line compressor / limiter-for WAVE format audio files. There is precious little-documentation at this point; that needs to be fixed soon.--I have used this code with ghc 6.6 and ghc 6.8 on Linux,-although the current cabal setup has only been tested with-cabal 1.2 and ghc 6.8. Other than the lack of-documentation, it is a fairly standard Hackage-ready-package, to the extent I know how to construct such.--I'm not really working on this Haskell code any longer; I-rewrote it in Java for a project I'm working on. However, I-think it's a nice demo app for my WAVE library.--Have fun with it, and let me know if there are problems.
+ README.md view
@@ -0,0 +1,16 @@+# truelevel -- audio file compresor / limiter+Copyright © 2006-2014 Bart Massey++This program is a simple command-line compressor / limiter+for WAVE format audio files. There is precious little+documentation at this point; that needs to be fixed soon.++I'm not really working on this Haskell code any longer; I+rewrote it in Java for a project I'm working on. However, I+think it's a nice demo app for my+[WAVE library](http://github.com/BartMassey/WAVE).++This program is licensed under the "3-clause 'new' BSD+License". Please see the file `COPYING` in this distribution+for license terms.+
Setup.hs view
@@ -1,7 +1,2 @@---- Copyright (C) 2007 Bart Massey---- ALL RIGHTS RESERVED---- Please see the file COPYING in this software---- distribution for license information.- import Distribution.Simple main = defaultMain
truelevel.cabal view
@@ -2,18 +2,31 @@ Build-Type: Simple Description: An audio file compressor / limiter. This program will adjust the dynamic range of a WAVE file.-Version: 0.1.2+Version: 0.1.3 License: BSD3 License-File: COPYING-Copyright: Copyright (C) 2006-2008 Bart Massey+Copyright: Copyright (c) 2006-2014 Bart Massey Author: Bart Massey <bart@cs.pdx.edu> Maintainer: Bart Massey <bart@cs.pdx.edu>-Homepage: http://wiki.cs.pdx.edu/bartforge/truelevel+Homepage: http://github.com/BartMassey/truelevel Stability: Alpha Synopsis: Audio file compressor-limiter Category: Sound-Build-Depends: base, WAVE, parseargs-Extra-Source-Files: README+Extra-Source-Files: README.md+Cabal-Version: >=1.10 -Executable: truelevel-Main-Is: truelevel.hs+Executable truelevel+ Default-Language: Haskell2010+ Main-Is: truelevel.hs+ Build-Depends: base >=3&&<5, containers >=0.3&&<1,+ parseargs >=0.1&&<1,+ WAVE >=0.1&&<1++Source-Repository head+ Type: git+ Location: https://github.com/BartMassey/truelevel.git++Source-Repository this+ Type: git+ Location: https://github.com/BartMassey/truelevel.git+ Tag: v0.1.3