From e3326dde5aa8fdf08e72e1ec355db60efd452264 Mon Sep 17 00:00:00 2001
From: Antonia Heinen <antonia.heinen@student.hpi.uni-potsdam.de>
Date: Fri, 12 Jul 2024 15:43:35 +0200
Subject: [PATCH 1/3] Code cleanup up to SPBNullCard

---
 .../buildFromRemoteProject.intoColumns..st    | 11 +++---
 .../SPBCard.class/class/defaultCardExtent.st  |  2 +-
 .../instance/applyUserInterfaceTheme.st       | 34 +++++++++++--------
 .../instance/calculateLabelPositionFor..st    |  7 ++--
 .../SPBCard.class/instance/initialize.st      |  3 +-
 .../SPBCard.class/instance/isClosed.st        |  6 ++--
 .../SPBCard.class/instance/labels.st          |  3 +-
 .../SPBCard.class/instance/moveToTop.st       | 12 +++----
 .../SPBCard.class/instance/openContextMenu.st | 15 ++++----
 .../instance/removeAllAssignees.st            | 13 ++++---
 .../SPBCard.class/instance/removeAllLabels.st | 13 ++++---
 .../instance/resizeIndicatorFields.st         |  2 +-
 .../SPBCard.class/instance/setCardHeight.st   |  4 ++-
 .../instance/setupMouseEvents.st              |  2 +-
 .../SPBCard.class/instance/title.st           |  3 +-
 .../SPBCard.class/instance/toggleClosed.st    |  3 +-
 .../SPBCard.class/instance/updateStatus.st    |  8 +++--
 .../SPBCard.class/methodProperties.json       | 34 +++++++++----------
 .../instance/createSingleCard.into..st        |  1 -
 .../methodProperties.json                     |  2 +-
 .../class/defaultBoardJson..st                |  2 +-
 .../instance/moveCard.after.toColumn..st      |  2 ++
 .../instance/moveCardToTop.toColumn..st       |  3 +-
 .../instance/moveColumn.after..st             |  2 ++
 .../instance/moveColumnToFront..st            |  3 +-
 .../instance/renameColumn.to..st              |  2 ++
 .../instance/updateCard..st                   |  3 +-
 .../methodProperties.json                     | 14 ++++----
 .../instance/boardNr..st                      |  3 +-
 .../instance/boardNr.st                       |  3 +-
 .../instance/getAssigneeString..st            |  8 ++---
 .../instance/projectId..st                    |  3 +-
 .../instance/projectId.st                     |  3 +-
 .../instance/updateCard..st                   |  8 ++---
 .../methodProperties.json                     | 12 +++----
 .../instance/addAssignee..st                  |  4 ++-
 .../instance/addAssigneeLocal..st             |  4 ++-
 .../SPBNullCard.class/instance/addLabel..st   |  4 ++-
 .../instance/addLabelLocal..st                |  4 ++-
 .../instance/removeAssignee..st               |  4 ++-
 .../instance/removeAssigneeLocal..st          |  4 ++-
 .../instance/removeLabel..st                  |  4 ++-
 .../instance/removeLabelLocal..st             |  4 ++-
 .../instance/toggleIsHighlighted.st           |  2 +-
 .../SPBNullCard.class/methodProperties.json   | 18 +++++-----
 45 files changed, 172 insertions(+), 129 deletions(-)

diff --git a/Squello-Core.package/SPBCard.class/class/buildFromRemoteProject.intoColumns..st b/Squello-Core.package/SPBCard.class/class/buildFromRemoteProject.intoColumns..st
index b9bb7f39..d3c1522b 100644
--- a/Squello-Core.package/SPBCard.class/class/buildFromRemoteProject.intoColumns..st
+++ b/Squello-Core.package/SPBCard.class/class/buildFromRemoteProject.intoColumns..st
@@ -6,7 +6,8 @@ buildFromRemoteProject: aJsonObject intoColumns: aDictionairy
 	"TODO: refactor this into smaller methods!"
 	columnID := (aJsonObject at: 'fieldValueByName') at: 'optionId'.
 	column := aDictionairy at: columnID.
-	column ifNil: [self error: 'The Card has no matching Column'.].
+	column
+		ifNil: [self error: 'The Card has no matching Column'.].
 	contentType := aJsonObject at: 'type'.
 	content := aJsonObject at: 'content'.
 	title := content at: 'title'.
@@ -14,15 +15,17 @@ buildFromRemoteProject: aJsonObject intoColumns: aDictionairy
 	cardId := aJsonObject at: 'id'.
 	instance := self newWithTitle: title body: body id: cardId into: column.
 	isDraftIssue := contentType = 'DRAFT_ISSUE'.
-	isDraftIssue ifTrue: [instance isNote: true.].
+	isDraftIssue
+		ifTrue: [instance isNote: true.].
 	isIssueOrPR := (contentType = 'ISSUE') or: [contentType = 'PULL_REQUEST'].
 	instance 
 		issueId: (content at: 'id');
 		assignees: (((content at: 'assignees') at: 'nodes') collect: [:each| SPBAssignee newFrom: each.]) asOrderedCollection;
 		labels: OrderedCollection new;
 		isClosed: (isDraftIssue not and: [content at: 'closed']).
-	isIssueOrPR ifTrue: [
-		instance labels: (((content at: 'labels') at: 'nodes') collect: [:each| SPBLabel newFrom: each.]) asOrderedCollection].
+	isIssueOrPR
+		ifTrue: [
+			instance labels: (((content at: 'labels') at: 'nodes') collect: [:each| SPBLabel newFrom: each.]) asOrderedCollection].
 	instance buildUI.
 	instance openInWorld.
 	
diff --git a/Squello-Core.package/SPBCard.class/class/defaultCardExtent.st b/Squello-Core.package/SPBCard.class/class/defaultCardExtent.st
index 0c5aa275..10e474c2 100644
--- a/Squello-Core.package/SPBCard.class/class/defaultCardExtent.st
+++ b/Squello-Core.package/SPBCard.class/class/defaultCardExtent.st
@@ -1,4 +1,4 @@
 accessing
 defaultCardExtent
 
-	^ 270@100.
\ No newline at end of file
+	^ 270 @ 100.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/applyUserInterfaceTheme.st b/Squello-Core.package/SPBCard.class/instance/applyUserInterfaceTheme.st
index 89eec3ac..a5f86bf3 100644
--- a/Squello-Core.package/SPBCard.class/instance/applyUserInterfaceTheme.st
+++ b/Squello-Core.package/SPBCard.class/instance/applyUserInterfaceTheme.st
@@ -3,19 +3,25 @@ applyUserInterfaceTheme
 
 	| textColor font |
 	super applyUserInterfaceTheme.
-	self color: ((self userInterfaceTheme get: #color for: PluggableButtonMorph) ifNil: [Color red]);
-		borderWidth: self borderWidthMultiplier * ((self userInterfaceTheme get: #borderWidth for: PluggableButtonMorph) ifNil: [1]);
-		borderColor: ((self userInterfaceTheme get: #borderColor for: PluggableButtonMorph) ifNil: [Color red]).
-	textColor := (self userInterfaceTheme get: #textColor for: PluggableButtonMorph) ifNil: [Color white].
-	self isHighlighted ifTrue: [
-		"make color and borderColor darker or lighter depending on color"
-		"if color is dark, make it lighter, else darker"
-		"this is what color makeForegroundColor is taking care of - it returns white or black"
-		self color: (self color alphaMixed: 0.75 with: self color makeForegroundColor).
-		self borderColor: (self color alphaMixed: 0.75 with: self color makeForegroundColor).
-		textColor := self color makeForegroundColor.
-		].
+	self color: ((self userInterfaceTheme get: #color for: PluggableButtonMorph)
+			ifNil: [Color red]);
+		borderWidth: self borderWidthMultiplier * ((self userInterfaceTheme get: #borderWidth for: PluggableButtonMorph)
+			ifNil: [1]);
+		borderColor: ((self userInterfaceTheme get: #borderColor for: PluggableButtonMorph)
+			ifNil: [Color red]).
+	textColor := (self userInterfaceTheme get: #textColor for: PluggableButtonMorph)
+		ifNil: [Color white].
+	self isHighlighted
+		ifTrue: [
+			"make color and borderColor darker or lighter depending on color"
+			"if color is dark, make it lighter, else darker"
+			"this is what color makeForegroundColor is taking care of - it returns white or black"
+			self color: (self color alphaMixed: 0.75 with: self color makeForegroundColor).
+			self borderColor: (self color alphaMixed: 0.75 with: self color makeForegroundColor).
+			textColor := self color makeForegroundColor.].
 	font := (self userInterfaceTheme get: #font for: PluggableButtonMorph).
-	self assigneeModel textColor: textColor; font: font.
-	self statusModel textColor: textColor; font: font.
+	self assigneeModel textColor: textColor;
+		font: font.
+	self statusModel textColor: textColor;
+		font: font.
 	self titleModel textColor: textColor.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/calculateLabelPositionFor..st b/Squello-Core.package/SPBCard.class/instance/calculateLabelPositionFor..st
index f2b2ff51..c592e97c 100644
--- a/Squello-Core.package/SPBCard.class/instance/calculateLabelPositionFor..st
+++ b/Squello-Core.package/SPBCard.class/instance/calculateLabelPositionFor..st
@@ -1,12 +1,13 @@
 updating-local
 calculateLabelPositionFor: aNumber
 
-	| label previousLabel firstAttempt | 
+	| label previousLabel positionIfSameRow | 
 	previousLabel := self labelModels at: aNumber - 1.
 	label := self labelModels at: aNumber.
 	
-	firstAttempt := (previousLabel position x + previousLabel extent x + self labelBorderOffset) @ previousLabel position y.
-	firstAttempt x + label extent x <= (self extent x - self labelBorderOffset) ifTrue: [^ firstAttempt].
+	positionIfSameRow := (previousLabel position x + previousLabel extent x + self labelBorderOffset) @ previousLabel position y.
+	positionIfSameRow x + label extent x <= (self extent x - self labelBorderOffset)
+		ifTrue: [^ positionIfSameRow].
 	
 	^ self labelBorderOffset @ 
 		(previousLabel position y + (previousLabel extent y + self inbetweenLabelOffset)).
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/initialize.st b/Squello-Core.package/SPBCard.class/instance/initialize.st
index cce69972..006243a6 100644
--- a/Squello-Core.package/SPBCard.class/instance/initialize.st
+++ b/Squello-Core.package/SPBCard.class/instance/initialize.st
@@ -11,4 +11,5 @@ initialize
 		buildIndicatorDetection;
 		isHighlighted: false.
 		
-	self isClosed ifNil: [self isClosed: false].
\ No newline at end of file
+	self isClosed
+		ifNil: [self isClosed: false].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/isClosed.st b/Squello-Core.package/SPBCard.class/instance/isClosed.st
index 2b312cfa..6c4f1a13 100644
--- a/Squello-Core.package/SPBCard.class/instance/isClosed.st
+++ b/Squello-Core.package/SPBCard.class/instance/isClosed.st
@@ -1,5 +1,7 @@
 accessing
 isClosed
 	
-	isClosed ifNil: [self isClosed: false].
-	^ isClosed
\ No newline at end of file
+	isClosed
+		ifNil: [self isClosed: false.
+			self updateStatus.].
+	^ isClosed.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/labels.st b/Squello-Core.package/SPBCard.class/instance/labels.st
index aa9e13ff..5e1ee9bb 100644
--- a/Squello-Core.package/SPBCard.class/instance/labels.st
+++ b/Squello-Core.package/SPBCard.class/instance/labels.st
@@ -1,4 +1,5 @@
 accessing
 labels
 
-	^ labels ifNil: [labels := OrderedCollection new].
\ No newline at end of file
+	^ labels
+		ifNil: [labels := OrderedCollection new].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/moveToTop.st b/Squello-Core.package/SPBCard.class/instance/moveToTop.st
index c7af611a..4d3ea5dc 100644
--- a/Squello-Core.package/SPBCard.class/instance/moveToTop.st
+++ b/Squello-Core.package/SPBCard.class/instance/moveToTop.st
@@ -1,9 +1,9 @@
 context menu
 moveToTop
 
-|index|
-index := column cards indexOf: self.
-column	addCardToTop: self.
-column	cards removeAt: index+1.
-column	resizeToFitCards.
-column	alignCards.
\ No newline at end of file
+	| index |
+	index := column cards indexOf: self.
+	column addCardToTop: self.
+	column cards removeAt: index + 1.
+	column resizeToFitCards.
+	column alignCards.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/openContextMenu.st b/Squello-Core.package/SPBCard.class/instance/openContextMenu.st
index 3c5160ce..38ab7535 100644
--- a/Squello-Core.package/SPBCard.class/instance/openContextMenu.st
+++ b/Squello-Core.package/SPBCard.class/instance/openContextMenu.st
@@ -1,11 +1,10 @@
 context menu
 openContextMenu
 
-| menu |
-
-menu := MenuMorph new defaultTarget: self.
-menu add: 'remove all Labels' action: #removeAllLabels.
-menu add: 'remove all Assignees' action: #removeAllAssignees.
-menu add: 'move to top' action: #moveToTop.
-menu add: 'toggle closed' action: #toggleClosed.
-menu popUpInWorld.
\ No newline at end of file
+	| menu |
+	menu := MenuMorph new defaultTarget: self.
+	menu add: 'remove all Labels' action: #removeAllLabels.
+	menu add: 'remove all Assignees' action: #removeAllAssignees.
+	menu add: 'move to top' action: #moveToTop.
+	menu add: 'toggle closed' action: #toggleClosed.
+	menu popUpInWorld.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/removeAllAssignees.st b/Squello-Core.package/SPBCard.class/instance/removeAllAssignees.st
index 553cfc43..1ba5969a 100644
--- a/Squello-Core.package/SPBCard.class/instance/removeAllAssignees.st
+++ b/Squello-Core.package/SPBCard.class/instance/removeAllAssignees.st
@@ -1,10 +1,9 @@
 context menu
 removeAllAssignees
 
-|size|
-size := assignees size.
-1 to: size do:[:a|self removeAssignee: assignees first].
-"labels do:[:label | self removeLabel: label]."
-self column board sidebar
-	changed: #potentialAssigneesList;
-	changed: #activeCardAssigneeList.
\ No newline at end of file
+	| size |
+	size := assignees size.
+	1 to: size do:[:a | self removeAssignee: assignees first.].
+	self column board sidebar
+		changed: #potentialAssigneesList;
+		changed: #activeCardAssigneeList.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/removeAllLabels.st b/Squello-Core.package/SPBCard.class/instance/removeAllLabels.st
index 2d531705..f7521383 100644
--- a/Squello-Core.package/SPBCard.class/instance/removeAllLabels.st
+++ b/Squello-Core.package/SPBCard.class/instance/removeAllLabels.st
@@ -1,10 +1,9 @@
 context menu
 removeAllLabels
 
-|size|
-size := labels size.
-1 to: size do:[:a|self removeLabel: labels first].
-"labels do:[:label | self removeLabel: label]."
-self column board sidebar
-	changed: #potentialLabelsList;
-	changed: #activeCardLabelList.
\ No newline at end of file
+	| size |
+	size := labels size.
+	1 to: size do:[:a | self removeLabel: labels first].
+	self column board sidebar
+		changed: #potentialLabelsList;
+		changed: #activeCardLabelList.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/resizeIndicatorFields.st b/Squello-Core.package/SPBCard.class/instance/resizeIndicatorFields.st
index a21b4614..47e1f19d 100644
--- a/Squello-Core.package/SPBCard.class/instance/resizeIndicatorFields.st
+++ b/Squello-Core.package/SPBCard.class/instance/resizeIndicatorFields.st
@@ -4,5 +4,5 @@ resizeIndicatorFields
 	self upperHalfIndicator 
 		extent: self cardIndicatorExtent.
 	self lowerHalfIndicator 
-		position: self position + (0@ self extent y / 2);
+		position: self position + (0 @ self extent y / 2);
 		extent: self cardIndicatorExtent.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/setCardHeight.st b/Squello-Core.package/SPBCard.class/instance/setCardHeight.st
index c1dae5fc..1690b80f 100644
--- a/Squello-Core.package/SPBCard.class/instance/setCardHeight.st
+++ b/Squello-Core.package/SPBCard.class/instance/setCardHeight.st
@@ -2,7 +2,9 @@ updating-local
 setCardHeight
 
 	| labelHeightsSum |
-	labelHeightsSum := self labelModels size = 0 ifTrue: [0] ifFalse: [self labelModels last position y + self labelModels last extent y - self labelModels first position y].
+	labelHeightsSum := self labelModels size = 0
+		ifTrue: [0]
+		ifFalse: [self labelModels last position y + self labelModels last extent y - self labelModels first position y].
 	self extent: 
 		self class defaultCardExtent x @ 
 		((self titleModel extent y + labelHeightsSum + self labelTitleOffset + self statusModel extent y) 
diff --git a/Squello-Core.package/SPBCard.class/instance/setupMouseEvents.st b/Squello-Core.package/SPBCard.class/instance/setupMouseEvents.st
index 93f12232..4f49a63f 100644
--- a/Squello-Core.package/SPBCard.class/instance/setupMouseEvents.st
+++ b/Squello-Core.package/SPBCard.class/instance/setupMouseEvents.st
@@ -2,6 +2,6 @@ accessing
 setupMouseEvents
 
 	self on: #startDrag send: #startDragging to: self.
-	self on: #mouseDown send: #value: to:[:evt|
+	self on: #mouseDown send: #value: to:[:evt |
          evt redButtonPressed ifTrue:[self becomeActiveCard].
          evt yellowButtonPressed ifTrue:[self openContextMenu] ].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/title.st b/Squello-Core.package/SPBCard.class/instance/title.st
index ed651cf4..f620578e 100644
--- a/Squello-Core.package/SPBCard.class/instance/title.st
+++ b/Squello-Core.package/SPBCard.class/instance/title.st
@@ -1,4 +1,5 @@
 accessing
 title
 	
-	^ title ifNil: [title := ''].
\ No newline at end of file
+	^ title
+		ifNil: [title := ''].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/toggleClosed.st b/Squello-Core.package/SPBCard.class/instance/toggleClosed.st
index bac486d9..59fd3b3b 100644
--- a/Squello-Core.package/SPBCard.class/instance/toggleClosed.st
+++ b/Squello-Core.package/SPBCard.class/instance/toggleClosed.st
@@ -1,6 +1,7 @@
 updating
 toggleClosed
 
-	self isNote ifTrue: [^ self].
+	self isNote
+		ifTrue: [^ self].
 	self isClosed: self isClosed not.
 	self boardProvider updateCard: self.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/instance/updateStatus.st b/Squello-Core.package/SPBCard.class/instance/updateStatus.st
index 1b893629..41e8bbdd 100644
--- a/Squello-Core.package/SPBCard.class/instance/updateStatus.st
+++ b/Squello-Core.package/SPBCard.class/instance/updateStatus.st
@@ -1,6 +1,10 @@
 updating-local
 updateStatus
 
-	self isNote ifTrue: [self statusModel contents: 'Note'. ^ self.].
-	self isClosed ifTrue: [self statusModel contents: 'Closed'. ^ self.].
+	self isNote
+		ifTrue: [self statusModel contents: 'Note'.
+			^ self.].
+	self isClosed
+		ifTrue: [self statusModel contents: 'Closed'.
+			^ self.].
 	self statusModel contents: 'Open'.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBCard.class/methodProperties.json b/Squello-Core.package/SPBCard.class/methodProperties.json
index 01a71ff7..5d34bd64 100644
--- a/Squello-Core.package/SPBCard.class/methodProperties.json
+++ b/Squello-Core.package/SPBCard.class/methodProperties.json
@@ -2,10 +2,10 @@
 	"class" : {
 		"buildFromLocal:into:" : "FP 7/2/2024 11:34",
 		"buildFromRemote:into:" : "FP 7/2/2024 11:07",
-		"buildFromRemoteProject:intoColumns:" : "FP 6/19/2024 18:07",
+		"buildFromRemoteProject:intoColumns:" : "AH 7/12/2024 15:40",
 		"buildNew:into:" : "mcr 8/3/2022 14:53",
 		"buildNewFromRemote:into:" : "mcr 8/3/2022 14:56",
-		"defaultCardExtent" : "AH 6/16/2024 14:53",
+		"defaultCardExtent" : "AH 7/12/2024 15:41",
 		"indicatorCardEdgeOffset" : "lo 8/1/2022 12:23",
 		"newFrom:with:" : "FP 6/19/2024 16:48",
 		"newFromLocal:with:" : "FP 7/2/2024 11:08",
@@ -17,7 +17,7 @@
 		"addLabel:" : "lo 7/31/2022 16:27",
 		"addLabelLocal:" : "tk 8/2/2022 23:12",
 		"alignLabels" : "mcr 8/4/2022 01:36",
-		"applyUserInterfaceTheme" : "AH 6/15/2024 15:01",
+		"applyUserInterfaceTheme" : "AH 7/12/2024 15:30",
 		"assigneeModel" : "tk 8/2/2022 23:27",
 		"assigneeModel:" : "tk 8/2/2022 23:27",
 		"assigneeOffset" : "lo 8/1/2022 11:45",
@@ -37,7 +37,7 @@
 		"buildStatusText" : "AH 5/25/2024 16:59",
 		"buildTitle" : "AH 6/14/2024 12:14",
 		"buildUI" : "AH 6/16/2024 13:06",
-		"calculateLabelPositionFor:" : "AH 6/20/2024 23:55",
+		"calculateLabelPositionFor:" : "AH 7/12/2024 15:32",
 		"cardId" : "FP 6/19/2024 16:52",
 		"cardId:" : "FP 6/19/2024 16:51",
 		"cardIndicatorExtent" : "lo 8/1/2022 11:52",
@@ -57,8 +57,8 @@
 		"id:" : "FP 6/19/2024 17:00",
 		"inbetweenLabelOffset" : "lo 8/1/2022 11:18",
 		"indicateDroppointWith:" : "mcr 8/4/2022 01:45",
-		"initialize" : "AH 6/14/2024 13:20",
-		"isClosed" : "FP 5/27/2024 11:24",
+		"initialize" : "AH 7/12/2024 15:33",
+		"isClosed" : "AH 7/12/2024 15:34",
 		"isClosed:" : "AH 5/25/2024 19:19",
 		"isHighlighted" : "AH 6/14/2024 13:14",
 		"isHighlighted:" : "AH 7/8/2024 11:25",
@@ -71,41 +71,41 @@
 		"labelModels" : "tk 8/2/2022 23:28",
 		"labelModels:" : "tk 8/2/2022 23:28",
 		"labelTitleOffset" : "lo 8/1/2022 11:18",
-		"labels" : "lo 8/3/2022 09:47",
+		"labels" : "AH 7/12/2024 15:34",
 		"labels:" : "lo 7/31/2022 16:29",
 		"lowerHalfIndicator" : "tk 8/2/2022 23:22",
 		"lowerHalfIndicator:" : "tk 8/2/2022 23:22",
 		"moveCardWith:" : "lo 8/3/2022 13:14",
-		"moveToTop" : "L.L. 6/23/2024 20:59",
-		"openContextMenu" : "L.L. 6/23/2024 20:53",
+		"moveToTop" : "AH 7/12/2024 15:35",
+		"openContextMenu" : "AH 7/12/2024 15:35",
 		"padding" : "AH 6/14/2024 12:14",
-		"removeAllAssignees" : "L.L. 6/23/2024 20:40",
-		"removeAllLabels" : "L.L. 6/23/2024 20:38",
+		"removeAllAssignees" : "AH 7/12/2024 15:36",
+		"removeAllLabels" : "AH 7/12/2024 15:36",
 		"removeAssignee:" : "lo 7/31/2022 16:38",
 		"removeAssigneeLocal:" : "lo 7/31/2022 16:39",
 		"removeLabel:" : "lo 7/31/2022 16:41",
 		"removeLabelLocal:" : "lo 7/31/2022 16:40",
 		"resizeCard" : "tk 8/2/2022 23:27",
-		"resizeIndicatorFields" : "tk 8/2/2022 23:23",
+		"resizeIndicatorFields" : "AH 7/12/2024 15:36",
 		"setCardColumn:" : "jh 8/3/2022 00:34",
 		"setCardColumnAtTop:" : "jh 8/3/2022 00:33",
-		"setCardHeight" : "AH 6/20/2024 23:54",
-		"setupMouseEvents" : "L.L. 6/7/2024 17:09",
+		"setCardHeight" : "AH 7/12/2024 15:36",
+		"setupMouseEvents" : "AH 7/12/2024 15:37",
 		"startDragging" : "mcr 8/3/2022 12:29",
 		"statusModel" : "AH 5/25/2024 16:59",
 		"statusModel:" : "AH 5/25/2024 16:59",
 		"statusOffset" : "AH 6/16/2024 14:55",
-		"title" : "lo 7/31/2022 16:09",
+		"title" : "AH 7/12/2024 15:37",
 		"title:" : "mcr 5/21/2022 20:52",
 		"titleModel" : "tk 8/2/2022 23:24",
 		"titleModel:" : "tk 8/2/2022 23:24",
-		"toggleClosed" : "AH 6/1/2024 18:27",
+		"toggleClosed" : "AH 7/12/2024 15:37",
 		"update:with:" : "lo 8/3/2022 13:13",
 		"updateAssigneeCount" : "tk 8/2/2022 23:27",
 		"updateBalloonText" : "mcr 8/4/2022 01:50",
 		"updateDescription:" : "jh 7/29/2022 11:38",
 		"updateLabelIcons" : "AH 6/20/2024 23:31",
-		"updateStatus" : "AH 5/25/2024 17:02",
+		"updateStatus" : "AH 7/12/2024 15:38",
 		"updateTitle:" : "tk 8/2/2022 23:24",
 		"upperHalfIndicator" : "tk 8/2/2022 23:23",
 		"upperHalfIndicator:" : "tk 8/2/2022 23:23" } }
diff --git a/Squello-Core.package/SPBGithubBoardProvider.class/instance/createSingleCard.into..st b/Squello-Core.package/SPBGithubBoardProvider.class/instance/createSingleCard.into..st
index 53bffd1b..3c16eb43 100644
--- a/Squello-Core.package/SPBGithubBoardProvider.class/instance/createSingleCard.into..st
+++ b/Squello-Core.package/SPBGithubBoardProvider.class/instance/createSingleCard.into..st
@@ -4,7 +4,6 @@ createSingleCard: aNumber into: anSPBColumn
 	| cardJson |
 	cardJson := self api querySingleCard: aNumber.
 	
-	"at the moment we can just display issues and pull requests (which have a content_url)"
 	(cardJson at: 'content_url') ifNil: [^ self].
 	
 	^ SPBCard buildNewFromRemote: cardJson into: anSPBColumn.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBGithubBoardProvider.class/methodProperties.json b/Squello-Core.package/SPBGithubBoardProvider.class/methodProperties.json
index 8d86a9cd..4f03e418 100644
--- a/Squello-Core.package/SPBGithubBoardProvider.class/methodProperties.json
+++ b/Squello-Core.package/SPBGithubBoardProvider.class/methodProperties.json
@@ -13,7 +13,7 @@
 		"createCardsFromColumn:" : "FP 5/20/2024 20:01",
 		"createColumn:" : "jh 7/31/2022 13:54",
 		"createNewCard:into:" : "mcr 8/3/2022 13:59",
-		"createSingleCard:into:" : "mcr 8/4/2022 02:10",
+		"createSingleCard:into:" : "AH 7/12/2024 15:20",
 		"deleteAssignee:fromCard:" : "LW 7/30/2022 15:42",
 		"deleteLabel:fromCard:" : "lo 7/13/2022 19:44",
 		"fetchCardsIntoColumns:" : "FP 6/19/2024 18:28",
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/class/defaultBoardJson..st b/Squello-Core.package/SPBLocalBoardProvider.class/class/defaultBoardJson..st
index 49487222..154359c2 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/class/defaultBoardJson..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/class/defaultBoardJson..st
@@ -5,4 +5,4 @@ defaultBoardJson: aString
 			"1":{"name":"ToDo","id":1,"cards":[]},
 			"2":{"name":"InProgress","id":2,"cards":[]},
 			"3":{"name":"Done","id":3,"cards":[]}},
-		"title":"', aString, '"}' ) parseAsJson.
\ No newline at end of file
+		"title":"', aString, '"}') parseAsJson.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCard.after.toColumn..st b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCard.after.toColumn..st
index 609ce0ed..0e0a97f1 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCard.after.toColumn..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCard.after.toColumn..st
@@ -1,2 +1,4 @@
 columns
 moveCard: anSPBCard after: anotherSPBCard toColumn: anSPBColumn
+
+	"do nothing"
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCardToTop.toColumn..st b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCardToTop.toColumn..st
index 32e4fd82..fe8e7dfc 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCardToTop.toColumn..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCardToTop.toColumn..st
@@ -1,3 +1,4 @@
 columns
 moveCardToTop: aSPBCard toColumn: aSPBColumn 
-	
\ No newline at end of file
+	
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumn.after..st b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumn.after..st
index a7c11c77..a70a642b 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumn.after..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumn.after..st
@@ -1,2 +1,4 @@
 columns
 moveColumn: anSPBColumn after: anotherSPBColumn
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumnToFront..st b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumnToFront..st
index 07c976b7..e3f0f252 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumnToFront..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumnToFront..st
@@ -1,3 +1,4 @@
 columns
 moveColumnToFront: anSPBColumn
-	
\ No newline at end of file
+	
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/instance/renameColumn.to..st b/Squello-Core.package/SPBLocalBoardProvider.class/instance/renameColumn.to..st
index 752c0903..2a9bcc30 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/instance/renameColumn.to..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/instance/renameColumn.to..st
@@ -1,3 +1,5 @@
 columns
 renameColumn: anSPBColumn to: aString
+
+	"do nothing"
 	
\ No newline at end of file
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/instance/updateCard..st b/Squello-Core.package/SPBLocalBoardProvider.class/instance/updateCard..st
index 987e5a39..38c22370 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/instance/updateCard..st
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/instance/updateCard..st
@@ -1,3 +1,4 @@
 cards
 updateCard: anSPBCard
-	
\ No newline at end of file
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBLocalBoardProvider.class/methodProperties.json b/Squello-Core.package/SPBLocalBoardProvider.class/methodProperties.json
index 014dee3f..cc149c7c 100644
--- a/Squello-Core.package/SPBLocalBoardProvider.class/methodProperties.json
+++ b/Squello-Core.package/SPBLocalBoardProvider.class/methodProperties.json
@@ -1,6 +1,6 @@
 {
 	"class" : {
-		"defaultBoardJson:" : "AH 7/7/2024 16:14",
+		"defaultBoardJson:" : "AH 7/12/2024 15:23",
 		"newWithName:" : "FP 6/25/2024 14:45",
 		"withJson:" : "FP 6/25/2024 14:44" },
 	"instance" : {
@@ -20,13 +20,13 @@
 		"fetchCardsIntoColumns:" : "FP 7/4/2024 11:55",
 		"listPossibleAssignees" : "FP 5/23/2024 10:14",
 		"listPossibleLabels" : "FP 5/23/2024 10:14",
-		"moveCard:after:toColumn:" : "FP 5/23/2024 10:38",
-		"moveCardToTop:toColumn:" : "FP 5/23/2024 10:38",
-		"moveColumn:after:" : "FP 5/23/2024 10:38",
-		"moveColumnToFront:" : "FP 5/23/2024 10:38",
+		"moveCard:after:toColumn:" : "AH 7/12/2024 15:22",
+		"moveCardToTop:toColumn:" : "AH 7/12/2024 15:22",
+		"moveColumn:after:" : "AH 7/12/2024 15:22",
+		"moveColumnToFront:" : "AH 7/12/2024 15:22",
 		"nextId" : "FP 7/4/2024 12:17",
 		"queryBoardName" : "FP 6/10/2024 15:00",
 		"queryColumns" : "FP 6/25/2024 15:31",
-		"renameColumn:to:" : "FP 5/23/2024 10:38",
+		"renameColumn:to:" : "AH 7/12/2024 15:22",
 		"repo" : "FP 6/25/2024 15:17",
-		"updateCard:" : "FP 5/23/2024 10:39" } }
+		"updateCard:" : "AH 7/12/2024 15:22" } }
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr..st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr..st
index 02fdfc50..519fd0fd 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr..st
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr..st
@@ -1,3 +1,4 @@
 accessing
 boardNr: anObject
-	boardNr := anObject
\ No newline at end of file
+
+	boardNr := anObject.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr.st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr.st
index c119b940..30a77bb0 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr.st
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/boardNr.st
@@ -1,3 +1,4 @@
 accessing
 boardNr
-	^ boardNr
\ No newline at end of file
+
+	^ boardNr.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/getAssigneeString..st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/getAssigneeString..st
index be7aa038..65429b9b 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/getAssigneeString..st
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/getAssigneeString..st
@@ -1,8 +1,8 @@
 assignees
 getAssigneeString: anOrderedCollection
 
-	| str |
+	| assigneeString |
 	anOrderedCollection isEmpty ifTrue: [^ ''].
-	str := '\"', anOrderedCollection first, '\"'.
-	anOrderedCollection allButFirstDo: [:each| str := str , ', \"', each, '\"'].
-	^ str.
\ No newline at end of file
+	assigneeString := '\"', anOrderedCollection first, '\"'.
+	anOrderedCollection allButFirstDo: [:each| assigneeString := assigneeString , ', \"', each, '\"'].
+	^ assigneeString.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId..st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId..st
index ed3e51cb..eed2075c 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId..st
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId..st
@@ -1,3 +1,4 @@
 accessing
 projectId: anObject
-	projectId := anObject
\ No newline at end of file
+
+	projectId := anObject.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId.st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId.st
index 4315a3b9..e7d7ccef 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId.st
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/projectId.st
@@ -1,3 +1,4 @@
 accessing
 projectId
-	^ projectId
\ No newline at end of file
+
+	^ projectId.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/updateCard..st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/updateCard..st
index 16085ddc..736ded87 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/updateCard..st
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/updateCard..st
@@ -2,9 +2,5 @@ cards
 updateCard: aSPBCard 
 
 	aSPBCard isNote
-	ifTrue: [
-		^ self api updateDraft: aSPBCard.
-		]
-	ifFalse: [
-		^ self api updateIssue: aSPBCard.
-		].
\ No newline at end of file
+	ifTrue: [^ self api updateDraft: aSPBCard.]
+	ifFalse: [^ self api updateIssue: aSPBCard.].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json b/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json
index 88e533b6..00a08341 100644
--- a/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json
+++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json
@@ -9,8 +9,8 @@
 		"addLabel:toDraft:" : "FP 7/11/2024 13:11",
 		"addLabel:toIssue:" : "FP 6/19/2024 16:55",
 		"api" : "FP 6/15/2024 14:04",
-		"boardNr" : "FP 6/15/2024 13:22",
-		"boardNr:" : "FP 6/15/2024 13:22",
+		"boardNr" : "AH 7/12/2024 15:23",
+		"boardNr:" : "AH 7/12/2024 15:23",
 		"columnFieldId" : "FP 6/19/2024 17:17",
 		"columnFieldId:" : "FP 6/19/2024 17:17",
 		"createCardsFromColumn:" : "FP 6/19/2024 18:30",
@@ -23,7 +23,7 @@
 		"deleteLabel:fromDraft:" : "FP 7/11/2024 13:11",
 		"deleteLabel:fromIssue:" : "FP 6/19/2024 16:54",
 		"fetchCardsIntoColumns:" : "FP 7/11/2024 13:23",
-		"getAssigneeString:" : "FP 6/18/2024 12:03",
+		"getAssigneeString:" : "AH 7/12/2024 15:24",
 		"getProjectId:user:" : "FP 6/15/2024 13:38",
 		"listPossibleAssignees" : "FP 6/16/2024 17:44",
 		"listPossibleLabels" : "FP 6/16/2024 17:52",
@@ -33,13 +33,13 @@
 		"moveColumn:after:" : "FP 7/11/2024 12:53",
 		"moveColumnToFront:" : "FP 7/11/2024 12:53",
 		"parseInputBoardUrl:" : "FP 6/15/2024 13:30",
-		"projectId" : "FP 6/15/2024 13:22",
-		"projectId:" : "FP 6/15/2024 13:22",
+		"projectId" : "AH 7/12/2024 15:25",
+		"projectId:" : "AH 7/12/2024 15:25",
 		"queryBoardName" : "FP 6/16/2024 15:39",
 		"queryColumnFieldId" : "FP 6/19/2024 17:31",
 		"queryColumns" : "FP 6/19/2024 17:34",
 		"renameColumn:to:" : "FP 7/11/2024 12:59",
 		"repo" : "FP 6/17/2024 18:06",
-		"updateCard:" : "FP 7/11/2024 12:48",
+		"updateCard:" : "AH 7/12/2024 15:27",
 		"url" : "FP 6/17/2024 18:09",
 		"urlString" : "FP 6/17/2024 18:08" } }
diff --git a/Squello-Core.package/SPBNullCard.class/instance/addAssignee..st b/Squello-Core.package/SPBNullCard.class/instance/addAssignee..st
index 5fb35582..04dce111 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/addAssignee..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/addAssignee..st
@@ -1,2 +1,4 @@
 updating-remote
-addAssignee: anSPBAssignee
\ No newline at end of file
+addAssignee: anSPBAssignee
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/addAssigneeLocal..st b/Squello-Core.package/SPBNullCard.class/instance/addAssigneeLocal..st
index 4500dfa4..2c7c5439 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/addAssigneeLocal..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/addAssigneeLocal..st
@@ -1,2 +1,4 @@
 updating-local
-addAssigneeLocal: anSPBAssignee
\ No newline at end of file
+addAssigneeLocal: anSPBAssignee
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/addLabel..st b/Squello-Core.package/SPBNullCard.class/instance/addLabel..st
index 2a19c1be..ce590e04 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/addLabel..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/addLabel..st
@@ -1,2 +1,4 @@
 updating-remote
-addLabel: anSPBLabel
\ No newline at end of file
+addLabel: anSPBLabel
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/addLabelLocal..st b/Squello-Core.package/SPBNullCard.class/instance/addLabelLocal..st
index 2584235f..64fcd4a4 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/addLabelLocal..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/addLabelLocal..st
@@ -1,2 +1,4 @@
 updating-local
-addLabelLocal: anSPBLabel
\ No newline at end of file
+addLabelLocal: anSPBLabel
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/removeAssignee..st b/Squello-Core.package/SPBNullCard.class/instance/removeAssignee..st
index e74121f4..90ae8d5b 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/removeAssignee..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/removeAssignee..st
@@ -1,2 +1,4 @@
 updating-remote
-removeAssignee: anSPBAssignee
\ No newline at end of file
+removeAssignee: anSPBAssignee
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/removeAssigneeLocal..st b/Squello-Core.package/SPBNullCard.class/instance/removeAssigneeLocal..st
index 4b537b06..6778cabb 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/removeAssigneeLocal..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/removeAssigneeLocal..st
@@ -1,2 +1,4 @@
 updating-local
-removeAssigneeLocal: anSPBAssignee
\ No newline at end of file
+removeAssigneeLocal: anSPBAssignee
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/removeLabel..st b/Squello-Core.package/SPBNullCard.class/instance/removeLabel..st
index 86377f27..475b8526 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/removeLabel..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/removeLabel..st
@@ -1,2 +1,4 @@
 updating-remote
-removeLabel: anSPBLabel
\ No newline at end of file
+removeLabel: anSPBLabel
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/removeLabelLocal..st b/Squello-Core.package/SPBNullCard.class/instance/removeLabelLocal..st
index 5cf13c70..52a03c21 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/removeLabelLocal..st
+++ b/Squello-Core.package/SPBNullCard.class/instance/removeLabelLocal..st
@@ -1,2 +1,4 @@
 updating-local
-removeLabelLocal: anSPBLabel
\ No newline at end of file
+removeLabelLocal: anSPBLabel
+
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/instance/toggleIsHighlighted.st b/Squello-Core.package/SPBNullCard.class/instance/toggleIsHighlighted.st
index 3f72b150..66701f57 100644
--- a/Squello-Core.package/SPBNullCard.class/instance/toggleIsHighlighted.st
+++ b/Squello-Core.package/SPBNullCard.class/instance/toggleIsHighlighted.st
@@ -1,4 +1,4 @@
 updating-local
 toggleIsHighlighted
 
-	"crickets"
\ No newline at end of file
+	"do nothing"
\ No newline at end of file
diff --git a/Squello-Core.package/SPBNullCard.class/methodProperties.json b/Squello-Core.package/SPBNullCard.class/methodProperties.json
index b42c84f6..316d1ed3 100644
--- a/Squello-Core.package/SPBNullCard.class/methodProperties.json
+++ b/Squello-Core.package/SPBNullCard.class/methodProperties.json
@@ -3,10 +3,10 @@
 		 },
 	"instance" : {
 		"=" : "lo 7/31/2022 18:13",
-		"addAssignee:" : "lo 7/31/2022 16:49",
-		"addAssigneeLocal:" : "lo 7/31/2022 16:49",
-		"addLabel:" : "lo 7/31/2022 16:49",
-		"addLabelLocal:" : "lo 7/31/2022 16:49",
+		"addAssignee:" : "AH 7/12/2024 15:41",
+		"addAssigneeLocal:" : "AH 7/12/2024 15:41",
+		"addLabel:" : "AH 7/12/2024 15:41",
+		"addLabelLocal:" : "AH 7/12/2024 15:41",
 		"assignees" : "lo 7/31/2022 16:05",
 		"description" : "lo 7/31/2022 16:06",
 		"hash" : "lo 7/31/2022 18:10",
@@ -15,12 +15,12 @@
 		"isHighlighted:" : "AH 7/8/2024 11:27",
 		"isNote" : "AH 5/25/2024 17:34",
 		"labels" : "lo 7/31/2022 16:07",
-		"removeAssignee:" : "lo 7/31/2022 16:49",
-		"removeAssigneeLocal:" : "lo 7/31/2022 16:48",
-		"removeLabel:" : "lo 7/31/2022 16:48",
-		"removeLabelLocal:" : "lo 7/31/2022 16:48",
+		"removeAssignee:" : "AH 7/12/2024 15:42",
+		"removeAssigneeLocal:" : "AH 7/12/2024 15:42",
+		"removeLabel:" : "AH 7/12/2024 15:42",
+		"removeLabelLocal:" : "AH 7/12/2024 15:42",
 		"title" : "lo 7/31/2022 16:07",
 		"toggleClosed" : "AH 5/25/2024 16:51",
-		"toggleIsHighlighted" : "AH 6/14/2024 13:19",
+		"toggleIsHighlighted" : "AH 7/12/2024 15:42",
 		"updateDescription:" : "lo 7/31/2022 18:18",
 		"updateTitle:" : "lo 7/31/2022 18:18" } }

From 1dff0068b08e24d2f6600878f570916a65719f34 Mon Sep 17 00:00:00 2001
From: Antonia Heinen <antonia.heinen@student.hpi.uni-potsdam.de>
Date: Fri, 12 Jul 2024 15:47:28 +0200
Subject: [PATCH 2/3] Code cleanup up to SPBAuthenticator

---
 .../SPBAssignee.class/instance/hash.st           |  2 +-
 .../SPBAssignee.class/methodProperties.json      |  2 +-
 .../instance/actionSubmit.st                     |  3 ++-
 .../instance/buildWith..st                       | 16 ++++++++--------
 .../instance/token.st                            |  3 ++-
 .../instance/username.st                         |  3 ++-
 .../methodProperties.json                        |  8 ++++----
 .../instance/authenticate.st                     |  6 +-----
 .../SPBAuthenticator.class/methodProperties.json |  2 +-
 9 files changed, 22 insertions(+), 23 deletions(-)

diff --git a/Squello-Core.package/SPBAssignee.class/instance/hash.st b/Squello-Core.package/SPBAssignee.class/instance/hash.st
index a1dce48e..c2ceaf45 100644
--- a/Squello-Core.package/SPBAssignee.class/instance/hash.st
+++ b/Squello-Core.package/SPBAssignee.class/instance/hash.st
@@ -1,5 +1,5 @@
 comparing
 hash
-	
 	"Answer an integer value that is related to the identity of the receiver."
+	
 	^ self id hash.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBAssignee.class/methodProperties.json b/Squello-Core.package/SPBAssignee.class/methodProperties.json
index 93b007ad..f53f7074 100644
--- a/Squello-Core.package/SPBAssignee.class/methodProperties.json
+++ b/Squello-Core.package/SPBAssignee.class/methodProperties.json
@@ -6,7 +6,7 @@
 		"=" : "LW 7/14/2022 12:24",
 		"asJson" : "FP 6/25/2024 11:13",
 		"asString" : "lo 5/28/2022 12:17",
-		"hash" : "LW 7/14/2022 11:23",
+		"hash" : "AH 7/12/2024 15:44",
 		"id" : "lo 5/16/2022 22:43",
 		"id:" : "tk 8/2/2022 23:42",
 		"isAssignee" : "lo 8/1/2022 14:48",
diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st b/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st
index 336303cd..bae65669 100644
--- a/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st
+++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st
@@ -3,7 +3,8 @@ actionSubmit
 
 	| oldUsername areCredentialsNil |
 	areCredentialsNil := (self username isNil or: [self token isNil]).
-	areCredentialsNil ifTrue: [^ self errorEmptyField].
+	areCredentialsNil
+		ifTrue: [^ self errorEmptyField].
 	
 	SPBAuthenticator token: self token.
 	oldUsername := SPBAuthenticator username.
diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st
index 1ab7908b..d03c72d3 100644
--- a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st
+++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st
@@ -2,11 +2,11 @@ toolbuilder
 buildWith: aBuilder
 
 	^ aBuilder build: (aBuilder pluggableDialogSpec new
-			model: self;
-			label: #labelString;
-			extent: 600@60;
-			exclusive: false;
-			message: 'Insert GitHub authentication data:';
-			children: {self buildInputPanel: aBuilder};
-			buttons: (self buildButtons: aBuilder);
-			yourself).
\ No newline at end of file
+		model: self;
+		label: #labelString;
+		extent: 600 @ 60;
+		exclusive: false;
+		message: 'Insert GitHub authentication data:';
+		children: {self buildInputPanel: aBuilder};
+		buttons: (self buildButtons: aBuilder);
+		yourself).
\ No newline at end of file
diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st b/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st
index 1506a3d7..535fefaa 100644
--- a/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st
+++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st
@@ -1,4 +1,5 @@
 accessing
 token
 
-	^ token ifNil: [token := SPBAuthenticator token].
\ No newline at end of file
+	^ token
+		ifNil: [token := SPBAuthenticator token].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st b/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st
index 9120bbb1..049a0c81 100644
--- a/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st
+++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st
@@ -1,4 +1,5 @@
 accessing
 username
 
-	^ username ifNil: [username := SPBAuthenticator username].
\ No newline at end of file
+	^ username
+		ifNil: [username := SPBAuthenticator username].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json b/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json
index 963c15a2..75aaa6e1 100644
--- a/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json
+++ b/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json
@@ -3,20 +3,20 @@
 		"open" : "jh 7/31/2022 13:05" },
 	"instance" : {
 		"actionCancel" : "mcr 7/4/2022 00:36",
-		"actionSubmit" : "FP 7/12/2024 12:58",
+		"actionSubmit" : "AH 7/12/2024 15:44",
 		"buildButtons:" : "FP 6/13/2024 11:10",
 		"buildInputFields:" : "mcr 8/4/2022 00:18",
 		"buildInputPanel:" : "tk 8/2/2022 23:42",
-		"buildWith:" : "tk 8/2/2022 23:43",
+		"buildWith:" : "AH 7/12/2024 15:45",
 		"checkUserValid" : "lo 7/13/2022 19:16",
 		"close" : "lo 8/1/2022 14:16",
 		"errorEmptyField" : "mcr 8/4/2022 00:36",
 		"errorUserNotFound" : "mcr 8/4/2022 00:36",
 		"labelString" : "lo 7/13/2022 19:29",
 		"resetCredentials" : "FP 7/12/2024 12:58",
-		"token" : "FP 7/12/2024 13:04",
+		"token" : "AH 7/12/2024 15:45",
 		"token:" : "lo 7/13/2022 19:26",
 		"updateToken:" : "mcr 8/4/2022 00:18",
 		"updateUsername:" : "mcr 8/4/2022 00:18",
-		"username" : "FP 7/12/2024 12:57",
+		"username" : "AH 7/12/2024 15:45",
 		"username:" : "lo 7/13/2022 19:27" } }
diff --git a/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st b/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st
index 7a6b6d12..8ab809d1 100644
--- a/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st
+++ b/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st
@@ -4,8 +4,4 @@ authenticate
 	self checkIfCredentialsMissing
 		ifTrue: [SPBAuthenticationForm open].
 	self checkIfCredentialsMissing 
-		ifTrue: [self errorAuthenticationCanceled. Error signal].
-	
-	"this is now handled by the boardProvider"
-	"[self checkIfTokenValid]
-		on: Error do: [Error signal]."
\ No newline at end of file
+		ifTrue: [self errorAuthenticationCanceled. Error signal].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBAuthenticator.class/methodProperties.json b/Squello-Core.package/SPBAuthenticator.class/methodProperties.json
index e89c9d18..ddb4f291 100644
--- a/Squello-Core.package/SPBAuthenticator.class/methodProperties.json
+++ b/Squello-Core.package/SPBAuthenticator.class/methodProperties.json
@@ -6,7 +6,7 @@
 		"username" : "FP 7/12/2024 12:50",
 		"username:" : "FP 7/12/2024 12:50" },
 	"instance" : {
-		"authenticate" : "FP 7/12/2024 12:55",
+		"authenticate" : "AH 7/12/2024 15:46",
 		"boardProvider" : "mcr 8/2/2022 18:26",
 		"boardProvider:" : "mcr 8/2/2022 18:26",
 		"checkIfCredentialsMissing" : "FP 7/12/2024 12:56",

From f77702ceda0cdc072b73e48bcedeb79c946493a5 Mon Sep 17 00:00:00 2001
From: Antonia Heinen <antonia.heinen@student.hpi.uni-potsdam.de>
Date: Fri, 12 Jul 2024 16:01:55 +0200
Subject: [PATCH 3/3] Code cleanup up to SPBColumn

---
 .../instance/applyUserInterfaceTheme.st              |  7 ++++---
 .../instance/hasModelYellowButtonMenuItems.st        |  3 ++-
 .../SPBBoard.class/instance/saveBoard.st             |  3 +--
 .../SPBBoard.class/instance/setUpChangeProvider.st   |  3 +--
 .../SPBBoard.class/methodProperties.json             |  8 ++++----
 .../SPBBoardSaver.class/instance/boards.st           |  3 ++-
 .../SPBBoardSaver.class/instance/load..st            |  3 ++-
 .../SPBBoardSaver.class/methodProperties.json        |  4 ++--
 .../SPBColumn.class/instance/cardPositions..st       |  2 +-
 .../SPBColumn.class/instance/hash.st                 |  2 +-
 .../SPBColumn.class/instance/isLastCard..st          |  3 ++-
 .../SPBColumn.class/instance/jsonCards..st           |  2 +-
 .../SPBColumn.class/instance/minimumHeight.st        |  3 ++-
 .../SPBColumn.class/instance/pasteup.st              |  3 ++-
 .../SPBColumn.class/methodProperties.json            | 12 ++++++------
 15 files changed, 33 insertions(+), 28 deletions(-)

diff --git a/Squello-Core.package/SPBBoard.class/instance/applyUserInterfaceTheme.st b/Squello-Core.package/SPBBoard.class/instance/applyUserInterfaceTheme.st
index 681b6e97..75d4cf62 100644
--- a/Squello-Core.package/SPBBoard.class/instance/applyUserInterfaceTheme.st
+++ b/Squello-Core.package/SPBBoard.class/instance/applyUserInterfaceTheme.st
@@ -2,6 +2,7 @@ initialize-release
 applyUserInterfaceTheme
 
 	super applyUserInterfaceTheme.
-	addColumnColumn ifNotNil: [
-		addColumnColumn color: ((self userInterfaceTheme get: #color for: SystemWindow) ifNil: [Color lightGray]).
-		].
\ No newline at end of file
+	addColumnColumn
+		ifNotNil: [
+			addColumnColumn color: ((self userInterfaceTheme get: #color for: SystemWindow)
+				ifNil: [Color lightGray]).].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBBoard.class/instance/hasModelYellowButtonMenuItems.st b/Squello-Core.package/SPBBoard.class/instance/hasModelYellowButtonMenuItems.st
index c1bd0a13..0d592fd0 100644
--- a/Squello-Core.package/SPBBoard.class/instance/hasModelYellowButtonMenuItems.st
+++ b/Squello-Core.package/SPBBoard.class/instance/hasModelYellowButtonMenuItems.st
@@ -1,3 +1,4 @@
 as yet unclassified
 hasModelYellowButtonMenuItems
-	^ false
\ No newline at end of file
+
+	^ false.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBBoard.class/instance/saveBoard.st b/Squello-Core.package/SPBBoard.class/instance/saveBoard.st
index 6bb49f8d..27c6736c 100644
--- a/Squello-Core.package/SPBBoard.class/instance/saveBoard.st
+++ b/Squello-Core.package/SPBBoard.class/instance/saveBoard.st
@@ -9,5 +9,4 @@ saveBoard
 		SPBLandingPage changeRecentGitHubBoards: {
 			#name -> self boardName. 
 			#url -> self url. 
-			#repo -> self boardProvider repo} asDictionary.
-		].
\ No newline at end of file
+			#repo -> self boardProvider repo} asDictionary.].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st b/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st
index 30f5bb8f..5d1f802b 100644
--- a/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st
+++ b/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st
@@ -1,5 +1,4 @@
 initialize-release
 setUpChangeProvider
 
-	self changeProvider projectId: self boardProvider projectId.
-	"self changeProvider api getWebhookChanges: self changeProvider webhookId."
\ No newline at end of file
+	self changeProvider projectId: self boardProvider projectId.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBBoard.class/methodProperties.json b/Squello-Core.package/SPBBoard.class/methodProperties.json
index 0cd405bd..f43903dc 100644
--- a/Squello-Core.package/SPBBoard.class/methodProperties.json
+++ b/Squello-Core.package/SPBBoard.class/methodProperties.json
@@ -15,7 +15,7 @@
 		"activeCard" : "mcr 8/1/2022 02:31",
 		"addColumn" : "mcr 8/4/2022 00:40",
 		"addColumnLocal:" : "lo 8/3/2022 12:34",
-		"applyUserInterfaceTheme" : "AH 6/20/2024 16:20",
+		"applyUserInterfaceTheme" : "AH 7/12/2024 15:55",
 		"asJson" : "FP 7/4/2024 15:46",
 		"boardName" : "FP 6/25/2024 12:13",
 		"boardName:" : "FP 6/25/2024 12:13",
@@ -62,7 +62,7 @@
 		"errorCannotAddColumn:" : "jh 7/31/2022 14:28",
 		"errorInvalidUrl" : "mcr 8/2/2022 22:17",
 		"errorNoProjects" : "mcr 8/2/2022 22:15",
-		"hasModelYellowButtonMenuItems" : "L.L. 6/7/2024 22:59",
+		"hasModelYellowButtonMenuItems" : "AH 7/12/2024 15:56",
 		"indexOfColumn:" : "lo 8/3/2022 12:57",
 		"initialize" : "FP 6/10/2024 14:43",
 		"isLocal" : "FP 6/10/2024 15:01",
@@ -75,8 +75,8 @@
 		"removeColumn:" : "lo 8/1/2022 14:09",
 		"rerenderColumns" : "lo 7/31/2022 16:42",
 		"resizeColumnArea" : "jh 8/3/2022 01:07",
-		"saveBoard" : "FP 6/25/2024 14:06",
-		"setUpChangeProvider" : "Haru 5/13/2024 14:46",
+		"saveBoard" : "AH 7/12/2024 15:56",
+		"setUpChangeProvider" : "AH 7/12/2024 15:57",
 		"setupColumns" : "FP 6/17/2024 17:13",
 		"sidebar" : "mcr 8/1/2022 00:44",
 		"sidebar:" : "mcr 8/1/2022 00:44",
diff --git a/Squello-Core.package/SPBBoardSaver.class/instance/boards.st b/Squello-Core.package/SPBBoardSaver.class/instance/boards.st
index 75211872..ec144005 100644
--- a/Squello-Core.package/SPBBoardSaver.class/instance/boards.st
+++ b/Squello-Core.package/SPBBoardSaver.class/instance/boards.st
@@ -1,5 +1,6 @@
 accessing
 boards
 	
-	boards ifNil: [self boards: Dictionary new].
+	boards
+		ifNil: [self boards: Dictionary new].
 	^ boards.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBBoardSaver.class/instance/load..st b/Squello-Core.package/SPBBoardSaver.class/instance/load..st
index 4df59239..77ca07b5 100644
--- a/Squello-Core.package/SPBBoardSaver.class/instance/load..st
+++ b/Squello-Core.package/SPBBoardSaver.class/instance/load..st
@@ -1,4 +1,5 @@
 save/load
 load: anObject
 
-	^ self boards at: anObject ifAbsent: nil.
\ No newline at end of file
+	^ self boards at: anObject
+		ifAbsent: nil.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBBoardSaver.class/methodProperties.json b/Squello-Core.package/SPBBoardSaver.class/methodProperties.json
index 2094d0e6..2b29daac 100644
--- a/Squello-Core.package/SPBBoardSaver.class/methodProperties.json
+++ b/Squello-Core.package/SPBBoardSaver.class/methodProperties.json
@@ -2,10 +2,10 @@
 	"class" : {
 		"defaultSaver" : "FP 6/3/2024 11:17" },
 	"instance" : {
-		"boards" : "FP 6/3/2024 11:15",
+		"boards" : "AH 7/12/2024 15:58",
 		"boards:" : "FP 6/3/2024 11:15",
 		"clear" : "FP 6/3/2024 11:15",
 		"contains:" : "FP 6/20/2024 17:14",
 		"delete:" : "FP 6/3/2024 11:15",
-		"load:" : "FP 6/25/2024 14:33",
+		"load:" : "AH 7/12/2024 15:58",
 		"save:as:" : "FP 6/3/2024 11:15" } }
diff --git a/Squello-Core.package/SPBColumn.class/instance/cardPositions..st b/Squello-Core.package/SPBColumn.class/instance/cardPositions..st
index 4ad0ef34..576d11d6 100644
--- a/Squello-Core.package/SPBColumn.class/instance/cardPositions..st
+++ b/Squello-Core.package/SPBColumn.class/instance/cardPositions..st
@@ -1,4 +1,4 @@
 accessing
 cardPositions: aCollection
 
-	cardPositions := aCollection
\ No newline at end of file
+	cardPositions := aCollection.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBColumn.class/instance/hash.st b/Squello-Core.package/SPBColumn.class/instance/hash.st
index a1dce48e..c2ceaf45 100644
--- a/Squello-Core.package/SPBColumn.class/instance/hash.st
+++ b/Squello-Core.package/SPBColumn.class/instance/hash.st
@@ -1,5 +1,5 @@
 comparing
 hash
-	
 	"Answer an integer value that is related to the identity of the receiver."
+	
 	^ self id hash.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBColumn.class/instance/isLastCard..st b/Squello-Core.package/SPBColumn.class/instance/isLastCard..st
index c9924d91..298e3862 100644
--- a/Squello-Core.package/SPBColumn.class/instance/isLastCard..st
+++ b/Squello-Core.package/SPBColumn.class/instance/isLastCard..st
@@ -1,5 +1,6 @@
 accessing
 isLastCard: anSPBCard
 
-	self cards isEmpty ifTrue: [^ false].
+	self cards isEmpty
+		ifTrue: [^ false].
 	^ self cards last = anSPBCard.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBColumn.class/instance/jsonCards..st b/Squello-Core.package/SPBColumn.class/instance/jsonCards..st
index 3e5e109a..5f71d3d5 100644
--- a/Squello-Core.package/SPBColumn.class/instance/jsonCards..st
+++ b/Squello-Core.package/SPBColumn.class/instance/jsonCards..st
@@ -1,4 +1,4 @@
 accessing
 jsonCards: anObject
 
-	jsonCards := anObject
\ No newline at end of file
+	jsonCards := anObject.
\ No newline at end of file
diff --git a/Squello-Core.package/SPBColumn.class/instance/minimumHeight.st b/Squello-Core.package/SPBColumn.class/instance/minimumHeight.st
index 68bcc230..ecf54895 100644
--- a/Squello-Core.package/SPBColumn.class/instance/minimumHeight.st
+++ b/Squello-Core.package/SPBColumn.class/instance/minimumHeight.st
@@ -1,4 +1,5 @@
 geometry
 minimumHeight
 	
-	^ minimumHeight ifNil: [minimumHeight := self defaultMinimumHeight].
+	^ minimumHeight
+		ifNil: [minimumHeight := self defaultMinimumHeight].
diff --git a/Squello-Core.package/SPBColumn.class/instance/pasteup.st b/Squello-Core.package/SPBColumn.class/instance/pasteup.st
index 22f5c4d1..50103592 100644
--- a/Squello-Core.package/SPBColumn.class/instance/pasteup.st
+++ b/Squello-Core.package/SPBColumn.class/instance/pasteup.st
@@ -1,4 +1,5 @@
 accessing
 pasteup
 
-	^ pasteup ifNil: [pasteup := SPBPluggablePasteUpMorph new].
\ No newline at end of file
+	^ pasteup
+		ifNil: [pasteup := SPBPluggablePasteUpMorph new.].
\ No newline at end of file
diff --git a/Squello-Core.package/SPBColumn.class/methodProperties.json b/Squello-Core.package/SPBColumn.class/methodProperties.json
index 749eafdb..2d816139 100644
--- a/Squello-Core.package/SPBColumn.class/methodProperties.json
+++ b/Squello-Core.package/SPBColumn.class/methodProperties.json
@@ -26,7 +26,7 @@
 		"cardDropped:Event:" : "jh 7/29/2022 12:57",
 		"cardFromId:" : "lo 8/3/2022 12:56",
 		"cardPositions" : "mcr 7/19/2022 19:44",
-		"cardPositions:" : "mcr 7/19/2022 19:36",
+		"cardPositions:" : "AH 7/12/2024 15:59",
 		"cards" : "mcr 7/14/2022 13:34",
 		"cards:" : "lo 5/26/2022 22:44",
 		"changeActiveCardTo:" : "NTK 7/30/2022 11:15",
@@ -41,7 +41,7 @@
 		"deleteCard:" : "jh 7/9/2022 18:05",
 		"fetchAndBuildSingleCard:" : "mcr 8/3/2022 23:17",
 		"getNextCardAfter:" : "mcr 8/4/2022 01:56",
-		"hash" : "LW 7/14/2022 11:12",
+		"hash" : "AH 7/12/2024 16:00",
 		"hideIndicator" : "NTK 7/30/2022 12:15",
 		"id" : "tkv 5/21/2022 00:59",
 		"id:" : "jh 6/3/2022 20:41",
@@ -50,14 +50,14 @@
 		"initializeBottomDetection" : "mcr 7/19/2022 13:18",
 		"initializeIndicator" : "lo 8/1/2022 12:27",
 		"isColumn" : "lo 8/1/2022 14:49",
-		"isLastCard:" : "FP 5/28/2024 12:01",
+		"isLastCard:" : "AH 7/12/2024 16:00",
 		"jsonCards" : "lo 6/8/2022 10:19",
-		"jsonCards:" : "LW 7/14/2022 11:12",
-		"minimumHeight" : "LW 7/14/2022 11:32",
+		"jsonCards:" : "AH 7/12/2024 16:00",
+		"minimumHeight" : "AH 7/12/2024 16:00",
 		"minimumHeight:" : "mcr 6/11/2022 15:51",
 		"moveColumn" : "tk 7/30/2022 21:58",
 		"moveIn:with:" : "mcr 8/4/2022 02:04",
-		"pasteup" : "mcr 7/19/2022 12:22",
+		"pasteup" : "AH 7/12/2024 16:01",
 		"pasteup:" : "jh 7/29/2022 12:58",
 		"removeFromOldColumn:" : "lo 8/3/2022 12:46",
 		"reorderCards:with:" : "NTK 8/3/2022 11:47",