Skip to content

Commit 6fe5d7c

Browse files
committed
Merge master/master into master
2 parents c068711 + d832718 commit 6fe5d7c

File tree

67 files changed

+151
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+151
-143
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@ Squello needs a *Personal Access Token (classic)* to access the Github api. The
2424
- Columns can not be edited
2525
- Adding cards is not supported yet
2626
- Projects (classic) are supported until Github will sunset them. It is highly recommended to migrate any classic Project.
27+
28+
### Starting it manually
29+
30+
Open the workspace and use `SPBLandingPage open.` to open the LandingPage. Follow the instructions above to obtain an GitHub access token. If you do not want to sync your board to GitHub, you can use a local board. For local boards, no access token is required.

Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputPanel..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildInputPanel: aBuilder
33

44
^ aBuilder pluggablePanelSpec new
55
model: self;
6+
frame: (0@0 corner: 1@1);
67
layout: #vertical;
78
children: (self buildInputFields: aBuilder);
8-
frame: (0@0 corner: 1@1);
99
yourself.

Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ buildWith: aBuilder
77
extent: 600 @ 60;
88
exclusive: false;
99
message: 'Insert GitHub authentication data:';
10-
children: {self buildInputPanel: aBuilder};
1110
buttons: (self buildButtons: aBuilder);
11+
children: {self buildInputPanel: aBuilder};
1212
yourself).

Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"actionSubmit" : "L.L. 7/12/2024 21:18",
77
"buildButtons:" : "FP 6/13/2024 11:10",
88
"buildInputFields:" : "mcr 8/4/2022 00:18",
9-
"buildInputPanel:" : "tk 8/2/2022 23:42",
10-
"buildWith:" : "AH 7/12/2024 15:45",
9+
"buildInputPanel:" : "Haru 7/12/2024 20:08",
10+
"buildWith:" : "Haru 7/12/2024 20:08",
1111
"checkUserValid" : "lo 7/13/2022 19:16",
1212
"close" : "lo 8/1/2022 14:16",
1313
"errorEmptyField" : "mcr 8/4/2022 00:36",

Squello-Core.package/SPBBoard.class/instance/addColumn.st

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ addColumn
33

44
| column prompt |
55
prompt := FillInTheBlankMorph request: 'Enter a column name' initialAnswer: ''.
6-
prompt = ''ifTrue: [^ self].
6+
prompt = ''
7+
ifTrue: [^ self].
78
[column := self boardProvider createColumn: prompt]
89
on: Error do: [:error | ^ self errorCannotAddColumn: error messageText].
910

Squello-Core.package/SPBBoard.class/instance/applyUserInterfaceTheme.st

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ applyUserInterfaceTheme
33

44
super applyUserInterfaceTheme.
55
addColumnColumn
6-
ifNotNil: [
7-
addColumnColumn color: ((self userInterfaceTheme get: #color for: SystemWindow)
6+
ifNotNil: [addColumnColumn color: ((self userInterfaceTheme get: #color for: SystemWindow)
87
ifNil: [Color lightGray]).].
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
accessing
22
boardName
33

4-
boardName ifNil: [self boardName: self boardProvider queryBoardName].
4+
boardName
5+
ifNil: [self boardName: self boardProvider queryBoardName].
56
^ boardName.

Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonPanelSpecWith..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
toolbuilder
1+
toolbuilder-colum
22
buildAddColumnButtonPanelSpecWith: aBuilder
33

44
^ aBuilder pluggablePanelSpec new

Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonSpecWith..st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
toolbuilder
1+
toolbuilder-colum
22
buildAddColumnButtonSpecWith: aBuilder
33

44
^ aBuilder pluggableActionButtonSpec new
5-
frame: (0@0 corner: 1@0.1);
65
model: self;
6+
frame: (0@0 corner: 1@0.1);
77
action: #addColumn;
88
label: '+ Add column';
99
help: 'add a new column to the board';

Squello-Core.package/SPBBoard.class/instance/buildColumnAreaChildren.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
toolbuilder
1+
toolbuilder-colum
22
buildColumnAreaChildren
33

44
| children |

0 commit comments

Comments
 (0)