lentil 0.1.4.0 → 0.1.4.1
raw patch · 6 files changed
+14/−6 lines, 6 files
Files
- changes.txt +6/−0
- contributors.txt +2/−2
- doc/usr/page.rst +1/−1
- lentil.cabal +1/−1
- src/Lentil/Parse/Syntaxes.hs +3/−1
- src/Main.hs +1/−1
changes.txt view
@@ -1,3 +1,9 @@+0.1.4.1+-------++- Released Wed 26 Aug 2015 22:11:33 CEST+- Added ".cabal" ".chs" ".hsc" (request by Henning Thielemann)+ 0.1.4.0 -------
contributors.txt view
@@ -1,7 +1,7 @@ Francesco Ariis-Henning Thielemann Larsen+Simon Michael Qptain Nemo Peter Simons-Simon Michael+Henning Thielemann Tomislav
doc/usr/page.rst view
@@ -135,7 +135,7 @@ As now lentil parses: -- haskell source files (``.hs``, ``.lhs``)+- haskell source files (``.hs``, ``.lhs``, ``.chs``, ``.hsc``, ``.cabal``) - C source files (``.c``, ``.h``), C++ (``.cpp``, ``.hpp``), Java (``.java``) - javascript source files (``.js``) - pascal source files (``.pas``, ``.pp``, ``.inc``)
lentil.cabal view
@@ -1,5 +1,5 @@ name: lentil-version: 0.1.4.0+version: 0.1.4.1 synopsis: frugal issue tracker description: minumum effort, cohesive issue tracker based on ubiquitous @TODO@s and @FIXME@s conventions.
src/Lentil/Parse/Syntaxes.hs view
@@ -22,7 +22,9 @@ -- a compilazione [u:2] [feature:intermediate] langParser :: String -> Maybe (ParSource [CommentString])-langParser fp | ext `elem` [".hs", ".lhs"] = Just haskell+langParser fp | ext `elem` [".hs", ".lhs",+ ".hsc", ".chs" ] = Just haskell+ | ext `elem` [".cabal"] = Just haskell -- cabal | ext `elem` [".c", ".h"] = Just c | ext `elem` [".cpp", ".hpp"] = Just c -- C++ | ext `elem` [".java"] = Just c -- Java
src/Main.hs view
@@ -28,7 +28,7 @@ short 'v' <> help "show version and copyright info" ) where- versionCopy = "lentil - frugal issue tracker, version 0.1.4.0\n\+ versionCopy = "lentil - frugal issue tracker, version 0.1.4.1\n\ \(C) 2015 Francesco Ariis - http://www.ariis.it\n\ \released under the GNU General Public License v3\n"