svg-icons 2.7.0.1 → 2.8.0.0
raw patch · 2 files changed
+11/−11 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- SvgIcons.Icons.Computer: circulo :: Svg
+ SvgIcons.Icons.Computer: ring :: Svg
Files
- src/SvgIcons/Icons/Computer.hs +10/−10
- svg-icons.cabal +1/−1
src/SvgIcons/Icons/Computer.hs view
@@ -4,7 +4,7 @@ module SvgIcons.Icons.Computer ( svgComputer - , circulo + , ring , accept , cancel , plus @@ -30,7 +30,7 @@ >svgComputer :: [ (String , S.Svg) ] >svgComputer = -> [ (,) "circulo" circulo +> [ (,) "ring" ring > , (,) "accept" accept > , (,) "cancel" cancel > , (,) "plus" plus @@ -44,7 +44,7 @@ -} svgComputer :: [ (String , S.Svg) ] svgComputer = - [ (,) "circulo" circulo + [ (,) "ring" ring , (,) "accept" accept , (,) "cancel" cancel , (,) "plus" plus @@ -61,20 +61,20 @@ {- | - + - + - + -} -circulo :: Svg -circulo = +ring :: Svg +ring = S.g $ do S.path ! A.d dirs where - r1 = 0.8 - r2 = 0.9 + r1 = 0.75 + r2 = 0.95 dirs = mkPath $ do m r1 0 aa r1 r1 0 True False r1 0.0001
svg-icons.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: svg-icons -version: 2.7.0.1 +version: 2.8.0.0 homepage: https://github.com/RamiroPastor/SvgIcons license: BSD-3-Clause license-file: LICENSE