Compare commits

...

4 Commits
0.2.0 ... main

Author SHA1 Message Date
a28f1540c4 Don't worry about missing pit issues if the Trello card is completed.
This is a normal case when you go a really long time without syncing and
the issues fall off of the pit time horizon.

Also, bump versions to support Nim 2.x
2024-11-30 08:11:51 -06:00
f8e39d60f6 Pin Nim version using asdf. 2024-08-05 08:00:26 -05:00
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
2080be5537 Ignore completed issues that were never on a Trello board. 2023-11-16 17:32:08 -06:00
4 changed files with 23 additions and 11 deletions

1
.tool-versions Normal file
View File

@ -0,0 +1 @@
nim 2.2.0

View File

@ -1,6 +1,6 @@
# Package
version = "0.2.0"
version = "0.2.3"
author = "Jonathan Bernard"
description = "Synchronization tool between JDB pit and Trello."
license = "MIT"
@ -19,11 +19,11 @@ requires @[
# Dependencies from git.jdb-software.com/jdb/nim-packages
requires @[
"cliutils >= 0.8.1",
"pit >= 4.23.3",
"cliutils >= 0.9.1",
"pit >= 4.26.0",
"timeutils",
"update_nim_package_version"
]
task updateVersion, "Update the version of this package.":
exec "update_nim_package_version pit2trello 'src/pit2trellopkg/cliconstants.nim'"
exec "update_nim_package_version pit2trello 'src/pit2trellopkg/cliconstants.nim'"

View File

@ -126,10 +126,13 @@ proc syncContext(
let foundCard = cards --> find(it.card.id == cardId)
if foundCard.isNone:
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 " &
board.name & " board.")
## 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 " &
board.name & " board.")
else:
let c = foundCard.get
@ -189,6 +192,11 @@ proc syncContext(
for (list, lentCard) in unmatchedCards:
let (list, card) = (list, lentCard)
let issueState = issueStateForListCategory(list.category)
# Don't worry about creating new issues for cards that are done.
if issueState == Done: continue
let issue = Issue(
id: genUUID(),
summary: card.name,
@ -202,13 +210,16 @@ proc syncContext(
filter(it.isSome).
map(it.get))
let issueState = issueStateForListCategory(list.category)
if not dryRun: s.pit.tasksDir.store(issue, issueState)
info "pit created: " & formatSectionIssue(issue, width = 64) & " " &
$issueState
for lentIssue in unmatchedIssues:
let issue = lentIssue
# Don't worry about creating new cards for issues that are done.
if issue.state == Done: continue
let list = board.lists[listCategoryForIssueState(issue.state)][0]
let newCard = TrelloCard(
name: issue.summary,

View File

@ -1,4 +1,4 @@
const PIT2TRELLO_VERSION* = "0.2.0"
const PIT2TRELLO_VERSION* = "0.2.3"
const USAGE* = """
Usage:
@ -15,4 +15,4 @@ Options:
--debug Enable verbose debug logging.
--help Print this help and usage information.
"""
"""