diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputPanel..st b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputPanel..st index 95c5ce0..b7d89e4 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputPanel..st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputPanel..st @@ -3,7 +3,7 @@ buildInputPanel: aBuilder ^ aBuilder pluggablePanelSpec new model: self; + frame: (0@0 corner: 1@1); layout: #vertical; children: (self buildInputFields: aBuilder); - frame: (0@0 corner: 1@1); yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st index d03c72d..6a8239a 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st @@ -7,6 +7,6 @@ buildWith: aBuilder extent: 600 @ 60; exclusive: false; message: 'Insert GitHub authentication data:'; - children: {self buildInputPanel: aBuilder}; buttons: (self buildButtons: aBuilder); + children: {self buildInputPanel: aBuilder}; yourself). \ 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 75aaa6e..08f9b05 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json +++ b/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json @@ -6,8 +6,8 @@ "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:" : "AH 7/12/2024 15:45", + "buildInputPanel:" : "Haru 7/12/2024 20:08", + "buildWith:" : "Haru 7/12/2024 20:08", "checkUserValid" : "lo 7/13/2022 19:16", "close" : "lo 8/1/2022 14:16", "errorEmptyField" : "mcr 8/4/2022 00:36", diff --git a/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonPanelSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonPanelSpecWith..st index 72eb8de..e3267b1 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonPanelSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonPanelSpecWith..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-colum buildAddColumnButtonPanelSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new diff --git a/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonSpecWith..st index 2976251..b0c69cd 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonSpecWith..st @@ -1,9 +1,9 @@ -toolbuilder +toolbuilder-colum buildAddColumnButtonSpecWith: aBuilder ^ aBuilder pluggableActionButtonSpec new - frame: (0@0 corner: 1@0.1); model: self; + frame: (0@0 corner: 1@0.1); action: #addColumn; label: '+ Add column'; help: 'add a new column to the board'; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaChildren.st b/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaChildren.st index f4d2c5b..4c4be54 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaChildren.st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaChildren.st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-colum buildColumnAreaChildren | children | diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith..st index 0c55da0..a4c58e6 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-colum buildColumnAreaSpecWith: aBuilder ^ self buildColumnAreaSpecWith: aBuilder width: 0.75. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith.width..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith.width..st index 3075bcd..04eec29 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith.width..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith.width..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-colum buildColumnAreaSpecWith: aBuilder width: aNumber ^ aBuilder resizeScrollPaneSpec new + model: self; frame: (0@0 corner: aNumber@1); name: #columnArea; - model: self; scrollBarThickness: 20; vScrollBarPolicy: #never; children: #buildColumnAreaChildren; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnBodySpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnBodySpecWith.and..st index 389341e..42dd74c 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnBodySpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnBodySpecWith.and..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-colum buildColumnBodySpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggableScrollPaneSpec new + model: self; frame: (0@0.15 corner: 1@1); name: #columnScrollPane; - model: self; hScrollBarPolicy: #never; vScrollBarPolicy: #always; children: {self buildColumnDropAreaWith: aBuilder and: anSPBColumn}; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnDropAreaWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnDropAreaWith.and..st index 80ff38f..36addf4 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnDropAreaWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnDropAreaWith.and..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-colum buildColumnDropAreaWith: aBuilder and: anSPBColumn ^ aBuilder pasteUpSpec new - minimumExtent: self class columnMinimumExtent; model: anSPBColumn; name: anSPBColumn id; + minimumExtent: self class columnMinimumExtent; dropped: [:card :event | anSPBColumn cardDropped: card Event: event]; reject: [:morph :event | morph isCard not]; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderAddCardButtonSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderAddCardButtonSpecWith.and..st index d9c1ff8..899c98f 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderAddCardButtonSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderAddCardButtonSpecWith.and..st @@ -1,9 +1,9 @@ -toolbuilder +toolbuilder-colum buildColumnHeaderAddCardButtonSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggableActionButtonSpec new - frame: (0@0.6 corner: 0.55@1); model: anSPBColumn; + frame: (0@0.6 corner: 0.55@1); action: #addCard; label: '+ Add card'; help: 'add a new card to the column'; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnButtonSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnButtonSpecWith.and..st index 8933c2d..331bb81 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnButtonSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnButtonSpecWith.and..st @@ -1,9 +1,9 @@ -toolbuilder +toolbuilder-colum buildColumnHeaderMoveColumnButtonSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggableActionButtonSpec new - frame: (0.7@0.6 corner: 0.85@1); model: anSPBColumn; + frame: (0.7@0.6 corner: 0.85@1); action: #moveColumn; label: '<->'; help: 'move the column to another place'; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnLeftButtonSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnLeftButtonSpecWith.and..st index b1a5ee2..a0be31c 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnLeftButtonSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnLeftButtonSpecWith.and..st @@ -1,9 +1,9 @@ -toolbuilder +toolbuilder-colum buildColumnHeaderMoveColumnLeftButtonSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggableActionButtonSpec new - frame: (0.55@0.6 corner: 0.7@1); model: anSPBColumn; + frame: (0.55@0.6 corner: 0.7@1); action: #swapLeft; label: '<-'; help: 'move the column left'; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnRightButtonSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnRightButtonSpecWith.and..st index 8a09701..c09ecb4 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnRightButtonSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnRightButtonSpecWith.and..st @@ -1,9 +1,9 @@ -toolbuilder +toolbuilder-colum buildColumnHeaderMoveColumnRightButtonSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggableActionButtonSpec new - frame: (0.85@0.6 corner: 1@1); model: anSPBColumn; + frame: (0.85@0.6 corner: 1@1); action: #swapRight; label: '->'; help: 'move the column right'; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderSpecWith.and..st index b9403b6..5303350 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderSpecWith.and..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-colum buildColumnHeaderSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggablePanelSpec new diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderTitleSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderTitleSpecWith.and..st index d9e727a..50cba3b 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderTitleSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderTitleSpecWith.and..st @@ -1,9 +1,9 @@ -toolbuilder +toolbuilder-colum buildColumnHeaderTitleSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggableTextSpec new - frame: (0@0 corner: 1@0.6); model: anSPBColumn; + frame: (0@0 corner: 1@0.6); getText: #title; setText: #updateTitle:; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith..st index 26a154a..0606458 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-colum buildColumnSpecWith: aBuilder ^ self columns collect: [:column | self buildColumnSpecWith: aBuilder and: column]. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith.and..st b/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith.and..st index bcc9fd9..c7082fc 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith.and..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith.and..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-colum buildColumnSpecWith: aBuilder and: anSPBColumn ^ aBuilder pluggablePanelSpec new diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneeListSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneeListSpecWith..st index b3a089b..ab71313 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneeListSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneeListSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarAssigneeListSpecWith: aBuilder ^ aBuilder pluggableListSpec new model: self sidebar; - name: #sidebarAssigneeList; frame: (0@0 corner: 0.5@1); + name: #sidebarAssigneeList; list: #activeCardAssigneeList; getSelected: #assigneeSelected; setSelected: #assigneeSelected:; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneePanelSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneePanelSpecWith..st index 4e29b36..6bab0b5 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneePanelSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneePanelSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarAssigneePanelSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new model: self sidebar; - name: #sidebarAssigneeList; frame: (0@0.1 corner: 1@0.25); + name: #sidebarAssigneeList; minimumHeight: 20; children: {self buildSidebarAssigneeListSpecWith: aBuilder. self buildSidebarPotentialAssigneeListSpecWith: aBuilder}; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarCloseButtonSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarCloseButtonSpecWith..st index 18c0b43..c79426f 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarCloseButtonSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarCloseButtonSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarCloseButtonSpecWith: aBuilder ^ aBuilder pluggableButtonSpec new model: self sidebar; - name: #sidebarCloseButton; frame: (0@0.4 corner: 1@0.5); + name: #sidebarCloseButton; label: #getCloseButtonLabel; action: #onCloseButton; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarDescriptionSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarDescriptionSpecWith..st index 44af53c..0cf6a2b 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarDescriptionSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarDescriptionSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarDescriptionSpecWith: aBuilder ^ aBuilder pluggableTextSpec new model: self sidebar; + frame: (0@0.5 corner: 1@1); name: #sidebarDescription; - setText: #updateActiveCardDescription:; getText: #activeCardDescription; - frame: (0@0.5 corner: 1@1); + setText: #updateActiveCardDescription:; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelListSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelListSpecWith..st index b08745d..7d377ac 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelListSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelListSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarLabelListSpecWith: aBuilder ^ aBuilder pluggableListSpec new model: self sidebar; - name: #sidebarLabelList; frame: (0@0 corner: 0.5@1); + name: #sidebarLabelList; list: #activeCardLabelList; getSelected: #labelSelected; setSelected: #labelSelected:; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelPanelSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelPanelSpecWith..st index e95a2e7..f728422 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelPanelSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelPanelSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarLabelPanelSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new model: self sidebar; - name: #sidebarLabelList; frame: (0@0.25 corner: 1@0.4); + name: #sidebarLabelList; minimumHeight: 20; children: {self buildSidebarLabelListSpecWith: aBuilder. self buildSidebarPotentialLabelListSpecWith: aBuilder}; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialAssigneeListSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialAssigneeListSpecWith..st index 74fac31..1d81bae 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialAssigneeListSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialAssigneeListSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarPotentialAssigneeListSpecWith: aBuilder ^ aBuilder pluggableListSpec new model: self sidebar; - name: #sidebarPotentialAssigneeList; frame: (0.5@0 corner: 1@1); + name: #sidebarPotentialAssigneeList; list: #potentialAssigneesList; getSelected: #potentialAssigneeSelected; setSelected: #potentialAssigneeSelected:; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialLabelListSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialLabelListSpecWith..st index dc4592b..90b796b 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialLabelListSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialLabelListSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarPotentialLabelListSpecWith: aBuilder ^ aBuilder pluggableListSpec new model: self sidebar; - name: #sidebarPotentialLabelList; frame: (0.5@0 corner: 1@1); + name: #sidebarPotentialLabelList; list: #potentialLabelsList; getSelected: #potentialLabelSelected; setSelected: #potentialLabelSelected:; diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith..st index 5edc88f..bf7b725 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-sidebar buildSidebarSpecWith: aBuilder ^ self buildSidebarSpecWith: aBuilder width: 0.75. diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith.width..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith.width..st index 61c69c3..06af6fc 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith.width..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith.width..st @@ -1,4 +1,4 @@ -toolbuilder +toolbuilder-sidebar buildSidebarSpecWith: aBuilder width: aNumber ^ aBuilder pluggablePanelSpec new diff --git a/Squello-Core.package/SPBBoard.class/instance/buildSidebarTitleSpecWith..st b/Squello-Core.package/SPBBoard.class/instance/buildSidebarTitleSpecWith..st index 05757d0..2cb11b2 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildSidebarTitleSpecWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildSidebarTitleSpecWith..st @@ -1,10 +1,10 @@ -toolbuilder +toolbuilder-sidebar buildSidebarTitleSpecWith: aBuilder ^ aBuilder pluggableTextSpec new model: self sidebar; + frame: (0@0 corner: 1@0.1); name: #sidebarTitle; - setText: #updateActiveCardTitle:; getText: #activeCardTitle; - frame: (0@0 corner: 1@0.1); + setText: #updateActiveCardTitle:; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/buildWith..st b/Squello-Core.package/SPBBoard.class/instance/buildWith..st index 1ba12b6..de6ac53 100644 --- a/Squello-Core.package/SPBBoard.class/instance/buildWith..st +++ b/Squello-Core.package/SPBBoard.class/instance/buildWith..st @@ -7,10 +7,10 @@ buildWith: aBuilder model: self; label: self boardName; minimumExtent: 1040@400; + closeAction: #saveBoard; children: {self buildColumnAreaSpecWith: aBuilder. self buildSidebarSpecWith: aBuilder}; - closeAction: #saveBoard; yourself. ^ self diff --git a/Squello-Core.package/SPBBoard.class/methodProperties.json b/Squello-Core.package/SPBBoard.class/methodProperties.json index f43903d..3ce8276 100644 --- a/Squello-Core.package/SPBBoard.class/methodProperties.json +++ b/Squello-Core.package/SPBBoard.class/methodProperties.json @@ -22,33 +22,33 @@ "boardProvider" : "jh 7/29/2022 11:34", "boardProvider:" : "lo 7/31/2022 16:32", "buildAddColumnButtonPanelSpecWith:" : "lo 8/1/2022 13:41", - "buildAddColumnButtonSpecWith:" : "lo 8/1/2022 11:01", + "buildAddColumnButtonSpecWith:" : "Haru 7/12/2024 19:57", "buildAndOpen" : "mcr 8/3/2022 23:25", "buildColumnAreaChildren" : "AH 6/20/2024 16:19", "buildColumnAreaSpecWith:" : "tk 7/30/2022 21:40", - "buildColumnAreaSpecWith:width:" : "lo 8/1/2022 11:01", - "buildColumnBodySpecWith:and:" : "lo 8/1/2022 11:00", - "buildColumnDropAreaWith:and:" : "lo 8/1/2022 15:22", - "buildColumnHeaderAddCardButtonSpecWith:and:" : "L.L. 7/8/2024 15:06", - "buildColumnHeaderMoveColumnButtonSpecWith:and:" : "L.L. 7/8/2024 15:08", - "buildColumnHeaderMoveColumnLeftButtonSpecWith:and:" : "L.L. 7/8/2024 15:05", - "buildColumnHeaderMoveColumnRightButtonSpecWith:and:" : "L.L. 7/8/2024 15:08", + "buildColumnAreaSpecWith:width:" : "Haru 7/12/2024 19:57", + "buildColumnBodySpecWith:and:" : "Haru 7/12/2024 19:57", + "buildColumnDropAreaWith:and:" : "Haru 7/12/2024 19:58", + "buildColumnHeaderAddCardButtonSpecWith:and:" : "Haru 7/12/2024 19:58", + "buildColumnHeaderMoveColumnButtonSpecWith:and:" : "Haru 7/12/2024 19:58", + "buildColumnHeaderMoveColumnLeftButtonSpecWith:and:" : "Haru 7/12/2024 19:59", + "buildColumnHeaderMoveColumnRightButtonSpecWith:and:" : "Haru 7/12/2024 19:59", "buildColumnHeaderSpecWith:and:" : "L.L. 7/8/2024 15:07", - "buildColumnHeaderTitleSpecWith:and:" : "lo 8/1/2022 11:04", + "buildColumnHeaderTitleSpecWith:and:" : "Haru 7/12/2024 20:00", "buildColumnSpecWith:" : "tk 8/2/2022 23:32", "buildColumnSpecWith:and:" : "lo 8/1/2022 13:42", - "buildSidebarAssigneeListSpecWith:" : "lo 8/1/2022 11:06", - "buildSidebarAssigneePanelSpecWith:" : "lo 8/1/2022 11:06", - "buildSidebarCloseButtonSpecWith:" : "AH 5/25/2024 17:32", - "buildSidebarDescriptionSpecWith:" : "L.L. 6/19/2024 16:50", - "buildSidebarLabelListSpecWith:" : "lo 8/1/2022 11:07", - "buildSidebarLabelPanelSpecWith:" : "lo 8/1/2022 11:07", - "buildSidebarPotentialAssigneeListSpecWith:" : "lo 8/1/2022 11:07", - "buildSidebarPotentialLabelListSpecWith:" : "lo 8/1/2022 11:08", + "buildSidebarAssigneeListSpecWith:" : "Haru 7/12/2024 20:00", + "buildSidebarAssigneePanelSpecWith:" : "Haru 7/12/2024 20:01", + "buildSidebarCloseButtonSpecWith:" : "Haru 7/12/2024 20:01", + "buildSidebarDescriptionSpecWith:" : "Haru 7/12/2024 20:02", + "buildSidebarLabelListSpecWith:" : "Haru 7/12/2024 20:02", + "buildSidebarLabelPanelSpecWith:" : "Haru 7/12/2024 20:02", + "buildSidebarPotentialAssigneeListSpecWith:" : "Haru 7/12/2024 20:02", + "buildSidebarPotentialLabelListSpecWith:" : "Haru 7/12/2024 20:03", "buildSidebarSpecWith:" : "mcr 8/1/2022 00:48", "buildSidebarSpecWith:width:" : "AH 5/25/2024 15:26", - "buildSidebarTitleSpecWith:" : "lo 8/1/2022 11:08", - "buildWith:" : "FP 6/10/2024 15:36", + "buildSidebarTitleSpecWith:" : "Haru 7/12/2024 20:03", + "buildWith:" : "Haru 7/12/2024 19:56", "changeActiveCardTo:" : "AH 7/8/2024 11:24", "changeProvider" : "lo 7/8/2022 14:00", "changeProvider:" : "lo 7/8/2022 15:29", diff --git a/Squello-Core.package/SPBLandingPage.class/class/minHighButton.st b/Squello-Core.package/SPBLandingPage.class/class/minHeighButton.st similarity index 55% rename from Squello-Core.package/SPBLandingPage.class/class/minHighButton.st rename to Squello-Core.package/SPBLandingPage.class/class/minHeighButton.st index d43126c..a2276e9 100644 --- a/Squello-Core.package/SPBLandingPage.class/class/minHighButton.st +++ b/Squello-Core.package/SPBLandingPage.class/class/minHeighButton.st @@ -1,4 +1,4 @@ toolbuilder -minHighButton +minHeighButton ^ 50. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteAllLocalBoardsButtonSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteAllLocalBoardsButtonSpecWith..st index 96ef99e..d3bcf6d 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteAllLocalBoardsButtonSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteAllLocalBoardsButtonSpecWith..st @@ -3,7 +3,7 @@ buildDeleteAllLocalBoardsButtonSpecWith: aBuilder ^ aBuilder pluggableButtonSpec new model: self; - verticalResizing: #rigid; action: #deleteAllLocal; label: 'Delete All'; + verticalResizing: #rigid; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteLocalBoardButtonSpecWith.withBoardName..st b/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteLocalBoardButtonSpecWith.withBoardName..st index 9807d4c..53eab33 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteLocalBoardButtonSpecWith.withBoardName..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildDeleteLocalBoardButtonSpecWith.withBoardName..st @@ -4,6 +4,6 @@ buildDeleteLocalBoardButtonSpecWith: aBuilder withBoardName: aString ^ aBuilder pluggableButtonSpec new model: [self deleteBoardFromButton: aString]; action: #value; - horizontalResizing: #shrinkWrap; label: 'Delete'; + horizontalResizing: #shrinkWrap; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardCommonActionsSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardCommonActionsSpecWith..st index 43a4b8e..4a6efca 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardCommonActionsSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardCommonActionsSpecWith..st @@ -3,10 +3,10 @@ buildLocalBoardCommonActionsSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new model: self; + layout: #horizontal; + verticalResizing: #shrinkWrap; children: { self buildDeleteAllLocalBoardsButtonSpecWith: self usedBuilder. self buildNewLocalBoardButtonSpecWith: self usedBuilder }; - layout: #horizontal; - verticalResizing: #shrinkWrap; yourself. diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardPanelSpecWith.withName..st b/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardPanelSpecWith.withName..st index 01d377b..15467a1 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardPanelSpecWith.withName..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardPanelSpecWith.withName..st @@ -5,7 +5,7 @@ buildLocalBoardPanelSpecWith: aBuilder withName: aName model: self; layout: #horizontal; horizontalResizing: #rigid; - minimumHeight: (self class minHighButton px); + minimumHeight: (self class minHeighButton px); children: { self buildOpenLocalBoardButtonSpecWith: aBuilder withBoardName: aName. self buildRenameLocalBoardButtonSpecWith: aBuilder withBoardName: aName. diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardsListSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardsListSpecWith..st index d747961..4b141bf 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardsListSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildLocalBoardsListSpecWith..st @@ -4,7 +4,7 @@ buildLocalBoardsListSpecWith: aBuilder ^ aBuilder pluggableScrollPaneSpec new model: self; vScrollBarPolicy: #always; - children: self buildLocalBoardsListChildren; layout: #vertical; + children: self buildLocalBoardsListChildren; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildMainLayoutPanelSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildMainLayoutPanelSpecWith..st index 0deeb40..cdec86a 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildMainLayoutPanelSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildMainLayoutPanelSpecWith..st @@ -4,9 +4,9 @@ buildMainLayoutPanelSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new model: self; frame: (0@0 corner: 1@1); + layout: #horizontal; children: { self buildSidebarSpecWith: aBuilder. self buildContentPanelSpecWith: aBuilder. }; - layout: #horizontal; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildNewLocalBoardButtonSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildNewLocalBoardButtonSpecWith..st index a653378..857bdf4 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildNewLocalBoardButtonSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildNewLocalBoardButtonSpecWith..st @@ -3,7 +3,7 @@ buildNewLocalBoardButtonSpecWith: aBuilder ^ aBuilder pluggableButtonSpec new model: self; - verticalResizing: #rigid; action: #openNewLocalBoard; label: 'New Local'; + verticalResizing: #rigid; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildOpenLocalBoardButtonSpecWith.withBoardName..st b/Squello-Core.package/SPBLandingPage.class/instance/buildOpenLocalBoardButtonSpecWith.withBoardName..st index 99ea898..b97cf88 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildOpenLocalBoardButtonSpecWith.withBoardName..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildOpenLocalBoardButtonSpecWith.withBoardName..st @@ -4,6 +4,6 @@ buildOpenLocalBoardButtonSpecWith: aBuilder withBoardName: aString ^ aBuilder pluggableButtonSpec new model: [self openBoardFromButton: aString]; action: #value; - horizontalResizing: #shrinkWrap; label: 'Open'; + horizontalResizing: #shrinkWrap; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsButtonSpecWith.withBoardInfo..st b/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsButtonSpecWith.withBoardInfo..st index 8997ebc..ee67df2 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsButtonSpecWith.withBoardInfo..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsButtonSpecWith.withBoardInfo..st @@ -5,6 +5,6 @@ buildRecentGitHubBoardsButtonSpecWith: aBuilder withBoardInfo: aDictionary name := (aDictionary at: #repo), ' : ' ,( aDictionary at: #name). ^ aBuilder pluggableButtonSpec new model: [SPBBoard openFromPrompt: (aDictionary at: #url)]; - label: name; action: #value; + label: name; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsSpecWith..st index 4de4356..f4a71c0 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildRecentGitHubBoardsSpecWith..st @@ -4,6 +4,6 @@ buildRecentGitHubBoardsSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new name: #RecentGitHubBoards; model: self; - children: self buildRecentGitHubBoardsChildren; layout: #horizontal; + children: self buildRecentGitHubBoardsChildren; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildRecentLocalBoardsSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildRecentLocalBoardsSpecWith..st index d2d6839..1f23103 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildRecentLocalBoardsSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildRecentLocalBoardsSpecWith..st @@ -4,6 +4,6 @@ buildRecentLocalBoardsSpecWith: aBuilder ^ aBuilder pluggablePanelSpec new name: #RecentLocalBoards; model: self; - children: self buildRecentLocalBoardsChildren; layout: #horizontal; + children: self buildRecentLocalBoardsChildren; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildRenameLocalBoardButtonSpecWith.withBoardName..st b/Squello-Core.package/SPBLandingPage.class/instance/buildRenameLocalBoardButtonSpecWith.withBoardName..st index f277683..8a31649 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildRenameLocalBoardButtonSpecWith.withBoardName..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildRenameLocalBoardButtonSpecWith.withBoardName..st @@ -4,6 +4,6 @@ buildRenameLocalBoardButtonSpecWith: aBuilder withBoardName: aString ^ aBuilder pluggableButtonSpec new model: [self renameBoardFromButton: aString]; action: #value; - horizontalResizing: #shrinkWrap; label: 'Rename'; + horizontalResizing: #shrinkWrap; yourself. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildSidebarSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildSidebarSpecWith..st index 3716b7c..51a5eee 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildSidebarSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildSidebarSpecWith..st @@ -4,8 +4,8 @@ buildSidebarSpecWith: aBuilder ^ aBuilder pluggableListSpec new model: self; list: #list; - horizontalResizing: #shrinkWrap; getSelected: #lastSidebarPart; setSelected: #lastSidebarPart:; menu: #menu:; + horizontalResizing: #shrinkWrap; yourself \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/contentSpecDict.st b/Squello-Core.package/SPBLandingPage.class/instance/contentSpecDict.st index e462f1e..301586a 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/contentSpecDict.st +++ b/Squello-Core.package/SPBLandingPage.class/instance/contentSpecDict.st @@ -3,5 +3,5 @@ contentSpecDict ^ (self contentPanels collect: [:each| each first -> (each second - collect: [:eachSymbol| self perform: eachSymbol with: self usedBuilder])]) - asDictionary. \ No newline at end of file + collect: [:eachSymbol| self perform: eachSymbol with: self usedBuilder])]) + asDictionary. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/methodProperties.json b/Squello-Core.package/SPBLandingPage.class/methodProperties.json index 097e203..28f0f38 100644 --- a/Squello-Core.package/SPBLandingPage.class/methodProperties.json +++ b/Squello-Core.package/SPBLandingPage.class/methodProperties.json @@ -8,7 +8,7 @@ "changeRecentLocalBoards:" : "Haru 7/12/2024 18:23", "minExtentHorizontal" : "Haru 7/12/2024 18:11", "minExtentVertical" : "Haru 7/12/2024 18:11", - "minHighButton" : "Haru 7/12/2024 18:11", + "minHeighButton" : "Haru 7/12/2024 20:13", "numberOfRecentGitHubBoards" : "Haru 6/8/2024 12:38", "numberOfRecentLocalBoards" : "Haru 6/8/2024 12:37", "open" : "Haru 6/1/2024 12:28", @@ -16,30 +16,30 @@ "instance" : { "buildAuthButtonSpecWith:" : "FP 6/20/2024 16:42", "buildContentPanelSpecWith:" : "FP 6/13/2024 13:46", - "buildDeleteAllLocalBoardsButtonSpecWith:" : "FP 6/20/2024 18:23", - "buildDeleteLocalBoardButtonSpecWith:withBoardName:" : "FP 6/20/2024 18:12", - "buildLocalBoardCommonActionsSpecWith:" : "Haru 7/12/2024 18:09", + "buildDeleteAllLocalBoardsButtonSpecWith:" : "Haru 7/12/2024 20:10", + "buildDeleteLocalBoardButtonSpecWith:withBoardName:" : "Haru 7/12/2024 20:11", + "buildLocalBoardCommonActionsSpecWith:" : "Haru 7/12/2024 20:12", "buildLocalBoardNameSpecWith:withBoardName:" : "Haru 7/7/2024 18:52", - "buildLocalBoardPanelSpecWith:withName:" : "Haru 7/12/2024 18:04", + "buildLocalBoardPanelSpecWith:withName:" : "Haru 7/12/2024 20:13", "buildLocalBoardsListChildren" : "Haru 7/12/2024 18:04", - "buildLocalBoardsListSpecWith:" : "Haru 7/12/2024 18:09", - "buildMainLayoutPanelSpecWith:" : "Haru 7/12/2024 18:06", + "buildLocalBoardsListSpecWith:" : "Haru 7/12/2024 20:14", + "buildMainLayoutPanelSpecWith:" : "Haru 7/12/2024 20:14", "buildManageLocalBoardPanelSpecWith:" : "FP 6/20/2024 18:13", - "buildNewLocalBoardButtonSpecWith:" : "FP 6/20/2024 18:24", + "buildNewLocalBoardButtonSpecWith:" : "Haru 7/12/2024 20:14", "buildOpenButtonSpecWith:" : "FP 6/20/2024 16:46", - "buildOpenLocalBoardButtonSpecWith:withBoardName:" : "FP 6/20/2024 18:12", - "buildRecentGitHubBoardsButtonSpecWith:withBoardInfo:" : "FP 6/20/2024 16:46", + "buildOpenLocalBoardButtonSpecWith:withBoardName:" : "Haru 7/12/2024 20:15", + "buildRecentGitHubBoardsButtonSpecWith:withBoardInfo:" : "Haru 7/12/2024 20:15", "buildRecentGitHubBoardsChildren" : "Haru 7/12/2024 18:10", - "buildRecentGitHubBoardsSpecWith:" : "Haru 7/12/2024 18:10", + "buildRecentGitHubBoardsSpecWith:" : "Haru 7/12/2024 20:15", "buildRecentLocalBoardsButtonSpecWith:withName:" : "FP 6/20/2024 16:50", "buildRecentLocalBoardsChildren" : "Haru 7/12/2024 18:10", - "buildRecentLocalBoardsSpecWith:" : "Haru 7/12/2024 18:10", - "buildRenameLocalBoardButtonSpecWith:withBoardName:" : "FP 6/20/2024 18:12", - "buildSidebarSpecWith:" : "FP 6/10/2024 14:36", + "buildRecentLocalBoardsSpecWith:" : "Haru 7/12/2024 20:15", + "buildRenameLocalBoardButtonSpecWith:withBoardName:" : "Haru 7/12/2024 20:16", + "buildSidebarSpecWith:" : "Haru 7/12/2024 20:16", "buildWith:" : "Haru 7/12/2024 17:43", "contentPanelChildren" : "Haru 7/12/2024 18:08", "contentPanels" : "FP 6/13/2024 11:19", - "contentSpecDict" : "Haru 7/12/2024 17:56", + "contentSpecDict" : "Haru 7/12/2024 20:17", "deleteAllLocal" : "FP 6/20/2024 17:20", "deleteBoardFromButton:" : "FP 6/20/2024 17:19", "initialize" : "Haru 6/7/2024 11:58",