diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildButtons..st b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildButtons..st index cb6dc1e4..d9156738 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildButtons..st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildButtons..st @@ -5,14 +5,17 @@ buildButtons: aBuilder model: self; label: 'Submit'; action: #actionSubmit; + color: Color green muchDarker; yourself. aBuilder pluggableButtonSpec new model: self; label: 'Cancel'; action: #actionCancel; + color: Color orange muchDarker; yourself. aBuilder pluggableButtonSpec new model: self; label: 'Logout'; action: #resetCredentials; + color: Color red muchDarker; 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 0ce6c22b..dc468fd3 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json +++ b/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json @@ -4,7 +4,7 @@ "instance" : { "actionCancel" : "mcr 7/4/2022 00:36", "actionSubmit" : "mcr 8/4/2022 00:25", - "buildButtons:" : "Felix Triebel 6/10/2024 09:47", + "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", diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildAuthButtonSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildAuthButtonSpecWith..st index 8c57be69..1229c619 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/buildAuthButtonSpecWith..st +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildAuthButtonSpecWith..st @@ -1,4 +1,4 @@ -toolbuilder-recent boards +toolbuilder buildAuthButtonSpecWith: aBuilder ^ aBuilder build: (aBuilder pluggableButtonSpec new diff --git a/Squello-Core.package/SPBLandingPage.class/instance/buildOpenButtonSpecWith..st b/Squello-Core.package/SPBLandingPage.class/instance/buildOpenButtonSpecWith..st new file mode 100644 index 00000000..34155e26 --- /dev/null +++ b/Squello-Core.package/SPBLandingPage.class/instance/buildOpenButtonSpecWith..st @@ -0,0 +1,8 @@ +toolbuilder +buildOpenButtonSpecWith: aBuilder + + ^ aBuilder build: (aBuilder pluggableButtonSpec new + model: self; + action: #openBoard; + label: 'Open Board'; + yourself). \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/openBoard.st b/Squello-Core.package/SPBLandingPage.class/instance/openBoard.st new file mode 100644 index 00000000..a1d4dd0f --- /dev/null +++ b/Squello-Core.package/SPBLandingPage.class/instance/openBoard.st @@ -0,0 +1,4 @@ +actions +openBoard + + ^ SPBBoard open. \ No newline at end of file diff --git a/Squello-Core.package/SPBLandingPage.class/instance/openBoardPanel.st b/Squello-Core.package/SPBLandingPage.class/instance/openBoardPanel.st index 344ab695..8112d310 100644 --- a/Squello-Core.package/SPBLandingPage.class/instance/openBoardPanel.st +++ b/Squello-Core.package/SPBLandingPage.class/instance/openBoardPanel.st @@ -1,4 +1,4 @@ content-panels openBoardPanel - ^ {'Open Board'. {}}. \ No newline at end of file + ^ {'Open Board'. {#buildOpenButtonSpecWith:}}. \ 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 1f7c016d..eaa8422f 100644 --- a/Squello-Core.package/SPBLandingPage.class/methodProperties.json +++ b/Squello-Core.package/SPBLandingPage.class/methodProperties.json @@ -13,6 +13,7 @@ "buildAuthButtonSpecWith:" : "FP 6/13/2024 11:03", "buildContentPanelSpecWith:" : "FP 6/11/2024 11:54", "buildMainLayoutPanelSpecWith:" : "FP 6/11/2024 11:53", + "buildOpenButtonSpecWith:" : "FP 6/13/2024 11:06", "buildRecentGitHubBoardsButtonSpecWith:withBoardInfo:" : "FP 6/10/2024 16:27", "buildRecentGitHubBoardsChildren" : "FP 6/13/2024 10:57", "buildRecentGitHubBoardsSpecWith:" : "FP 6/10/2024 15:55", @@ -33,7 +34,8 @@ "newLocalPanel" : "FP 6/11/2024 13:36", "open" : "Haru 6/1/2024 12:22", "openAuthPanel" : "FP 6/13/2024 11:02", - "openBoardPanel" : "FP 6/11/2024 12:25", + "openBoard" : "FP 6/13/2024 11:06", + "openBoardPanel" : "FP 6/13/2024 11:07", "recentBoardsPanel" : "FP 6/11/2024 12:24", "usedBuilder" : "Haru 6/1/2024 12:39", "usedBuilder:" : "Haru 6/1/2024 12:40" } }