1 Commits
0.2.1 ... 0.2.2

Author SHA1 Message Date
208bdab1e4 Don't worry about missing Trello cards if the issue is completed.
This is a normal case when Trello lists or cards are archived.
2023-12-15 22:16:28 -06:00
3 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "0.2.1"
version = "0.2.2"
author = "Jonathan Bernard"
description = "Synchronization tool between JDB pit and Trello."
license = "MIT"

View File

@ -126,6 +126,9 @@ proc syncContext(
let foundCard = cards --> find(it.card.id == cardId)
if foundCard.isNone:
## Ignore issues that are completed (may be archived in Trello)
if i.state == Done: unmatchedIssueIds.excl($i.id)
else:
raise newException(Exception,
"pit issue " & ($i.id)[0..6] & " references a Trello card with id " &
cardId & " but that card is not any of the lists of the " &

View File

@ -1,4 +1,4 @@
const PIT2TRELLO_VERSION* = "0.2.1"
const PIT2TRELLO_VERSION* = "0.2.2"
const USAGE* = """
Usage: