Skip to content

Commit

Permalink
fix: update copyright, pull list, and Image parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed Apr 18, 2024
1 parent a205e48 commit 99698f7
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 28 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright © 2019-2023 Eric Bailey <eric@ericb.me>
Copyright © 2019-2024 Eric Bailey <eric@ericb.me>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.7
3.1.8
2 changes: 1 addition & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- |
-- Module : Main
-- Description : The main entrypoint for the ComiCal executable
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : stable
Expand Down
2 changes: 1 addition & 1 deletion lib/ComiCal.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- |
-- Module : ComiCal
-- Description : The main API for ComiCal
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : stable
Expand Down
2 changes: 1 addition & 1 deletion lib/ComiCal/App.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

-- |
-- Module : ComiCal.App
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion lib/ComiCal/DC.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- |
-- Module : ComiCal.DC
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down
4 changes: 2 additions & 2 deletions lib/ComiCal/Image.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

-- |
-- Module : ComiCal.Image
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand All @@ -25,7 +25,7 @@ publisher =
{ scraper =
Scraper
{ partitionReleases = \cursor ->
cursor $// element "div" >=> attributeIs "class" "cell u-mb1",
cursor $// element "div" >=> attributeIs "class" "cell u-mb1",
parseTitle = \cursor ->
T.strip . last . T.splitOn " | " . head $
cursor
Expand Down
2 changes: 1 addition & 1 deletion lib/ComiCal/Marvel.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- |
-- Module : ComiCal.Marvel
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion lib/ComiCal/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

-- |
-- Module : ComiCal.Types
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion lib/ComiCal/Util.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

-- |
-- Module : ComiCal.Util
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down
8 changes: 0 additions & 8 deletions pull.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,23 @@
"dcIssues": [
],
"imageCollections": [
"bitter-root",
"black-magick",
"geiger",
"killadelphia",
"monstress",
"nailbiter",
"reckless",
"saga",
"spawn",
"that-texas-blood",
"the-department-of-truth"
],
"imageIssues": [
"crossover",
"gunslinger-spawn",
"king-spawn-2",
"spawn",
"that-texas-blood",
"the-department-of-truth",
"the-scorched"
],
"marvelCollections": [
],
"marvelIssues": [
"31374/hulk_2021_-_present",
"32870/venom_2021_-_present"
]
}
18 changes: 9 additions & 9 deletions src/haskell.nw
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ instance FromJSON PullList where
<<lib/ComiCal/Types.hs>>=
-- |
-- Module : ComiCal.Types
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down Expand Up @@ -356,7 +356,7 @@ runComiCalApp getter publisher =

-- |
-- Module : ComiCal.App
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down Expand Up @@ -389,7 +389,7 @@ import Data.Text (Text)
-- |
-- Module : ComiCal
-- Description : The main API for ComiCal
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : stable
Expand Down Expand Up @@ -520,7 +520,7 @@ publisher =
<<lib/ComiCal/DC.hs>>=
-- |
-- Module : ComiCal.DC
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand All @@ -547,7 +547,7 @@ import Text.XML.Cursor
scraper =
Scraper
{ partitionReleases = \cursor ->
cursor $// element "div" >=> attributeIs "class" "cell u-mb1",
cursor $// element "div" >=> attributeIs "class" "cell u-mb1",
parseTitle = \cursor ->
T.strip . last . T.splitOn " | " . head $
cursor
Expand Down Expand Up @@ -610,7 +610,7 @@ publisher =

-- |
-- Module : ComiCal.Image
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down Expand Up @@ -689,7 +689,7 @@ scraper =
<<lib/ComiCal/Marvel.hs>>=
-- |
-- Module : ComiCal.Marvel
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down Expand Up @@ -717,7 +717,7 @@ import Text.XML.Cursor

-- |
-- Module : ComiCal.Util
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : experimental
Expand Down Expand Up @@ -892,7 +892,7 @@ headM e xs =
-- |
-- Module : Main
-- Description : The main entrypoint for the ComiCal executable
-- Copyright : (c) Eric Bailey, 2019-2023
-- Copyright : (c) Eric Bailey, 2019-2024
-- License : MIT
-- Maintainer : eric@ericb.me
-- Stability : stable
Expand Down

0 comments on commit 99698f7

Please sign in to comment.