From 220c691b3e9db8031b1e5a60a9acbb545c45c0c8 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 18:07:29 +0200 Subject: [PATCH 01/23] Create .properties --- src/SpotifyConnect/.properties | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/SpotifyConnect/.properties diff --git a/src/SpotifyConnect/.properties b/src/SpotifyConnect/.properties new file mode 100644 index 0000000..53a5454 --- /dev/null +++ b/src/SpotifyConnect/.properties @@ -0,0 +1,3 @@ +{ + #format : #tonel +} From a2c3e5162f517e74c7070899b56277c747be64a6 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 18:22:24 +0200 Subject: [PATCH 02/23] Create .smalltalk.ston --- .smalltalk.ston | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .smalltalk.ston diff --git a/.smalltalk.ston b/.smalltalk.ston new file mode 100644 index 0000000..68b0dc3 --- /dev/null +++ b/.smalltalk.ston @@ -0,0 +1,16 @@ +SmalltalkCISpec { + #name : 'SpotifyCOnnect CI', + #loading : [ + SCIMetacelloLoadSpec { + #baseline : 'SpotifyConnect', + #directory : 'src/SpotifyConnect', + #load : 'Tests', + #platforms : [ #squeak ] + } + ], + #testing : { + #coverage : { + #packages : [ 'SpotifyConnect', 'SpotifyConnect-Utils' ] + } +} +} From adc8cfbe75f9f634b5e73e30425e5e53b65c4c02 Mon Sep 17 00:00:00 2001 From: OW Date: Thu, 30 May 2024 18:26:08 +0200 Subject: [PATCH 03/23] add Baseline --- .squot-materialize | 32 +++++++++++-------- .../BaselineOfSpotifyConnect.class.st | 25 +++++++++++++++ src/BaselineOfSpotifyConnect/package.st | 4 +++ 3 files changed, 48 insertions(+), 13 deletions(-) create mode 100644 src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st create mode 100644 src/BaselineOfSpotifyConnect/package.st diff --git a/.squot-materialize b/.squot-materialize index 37e8512..eb128be 100644 --- a/.squot-materialize +++ b/.squot-materialize @@ -1,4 +1,12 @@ [ + SquotTonelMapper { + #package : MCPackage { + #name : 'SpotifyConnect' + }, + #path : FSAbsolutePath [ + 'src' + ] + }, SquotImageMapper { #path : FSAbsolutePath [ 'assets', @@ -6,40 +14,38 @@ ], #encoding : Class [ #PNGReadWriter ] }, - SquotImageMapper { + SquotPlaintextMapper { #path : FSAbsolutePath [ 'assets', - 'next.png' + 'successResponse.html' ], - #encoding : @4 + #encoding : 'TXT' }, SquotImageMapper { #path : FSAbsolutePath [ 'assets', 'previous.png' ], - #encoding : @4 + #encoding : @7 }, - SquotPlaintextMapper { + SquotImageMapper { #path : FSAbsolutePath [ 'assets', - 'successResponse.html' + 'play.png' ], - #encoding : 'TXT' + #encoding : @7 }, SquotTonelMapper { #package : MCPackage { - #name : 'SpotifyConnect' + #name : 'BaselineOfSpotifyConnect' }, - #path : FSAbsolutePath [ - 'src' - ] + #path : @4 }, SquotImageMapper { #path : FSAbsolutePath [ 'assets', - 'play.png' + 'next.png' ], - #encoding : @4 + #encoding : @7 } ] \ No newline at end of file diff --git a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st new file mode 100644 index 0000000..5de1636 --- /dev/null +++ b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st @@ -0,0 +1,25 @@ +Class { + #name : #BaselineOfSpotifyConnect, + #superclass : #BaselineOf, + #category : #BaselineOfSpotifyConnect +} + +{ + #category : #'as yet unclassified', + #'squeak_changestamp' : 'OW 5/30/2024 18:23' +} +BaselineOfSpotifyConnect >> baseline: spec [ + + spec + for: #'common' + do: [ + spec + package: 'SpotifyConnect'; + package: 'SpotifyConnect-Utils'; + package: 'SpotifyConnect-Tests' with: [spec requires: #('default')]; + yourself. + spec + group: 'default' with: #('SpotifyConnect', 'SpotifyConnect-Utils'); + group: 'tests' with: #('SpotifyConnect-Tests'); + yourself]. +] diff --git a/src/BaselineOfSpotifyConnect/package.st b/src/BaselineOfSpotifyConnect/package.st new file mode 100644 index 0000000..d72dc31 --- /dev/null +++ b/src/BaselineOfSpotifyConnect/package.st @@ -0,0 +1,4 @@ +Package { + #'squeak_changestamp' : true, + #name : #BaselineOfSpotifyConnect +} From 3a706fa48c8c0eb3a68e34416ed58b4a454bd8f9 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 18:43:38 +0200 Subject: [PATCH 04/23] Create ci.yml --- .github/workflows/ci.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0b7a339 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,37 @@ +name: CI + +on: + - push + - pull_request + # for triggering the workflow manually from the GitHub Actions page + - workflow_dispatch + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + # Select platform(s) + os: + - ubuntu-latest + # If your application contains any OS-dependent logic (such as + # accesses to the filesystem or invocations of native libraries), + # you can enable further OS platforms here. Other than that, you may + # just leave them disabled to reduce energy usage and build time :) + # (Usually, windows builds are slower than ubuntu/macOS.) + #- macos-latest + #- windows-latest + # Select compatible Smalltalk image(s) + smalltalk: [ Squeak64-trunk, Squeak64-5.3, Squeak64-5.2 ] + name: ${{ matrix.smalltalk }} on ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - uses: hpi-swa/setup-smalltalkCI@v1 + with: + smalltalk-image: ${{ matrix.smalltalk }} + - run: smalltalkci -s ${{ matrix.smalltalk }} + shell: bash + timeout-minutes: 15 + env: + # for uploading coverage reports + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 390104221901954e9f9fc064886db5ceda75cd9d Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 18:51:46 +0200 Subject: [PATCH 05/23] Update .smalltalk.ston --- .smalltalk.ston | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 68b0dc3..7975bb1 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -3,7 +3,7 @@ SmalltalkCISpec { #loading : [ SCIMetacelloLoadSpec { #baseline : 'SpotifyConnect', - #directory : 'src/SpotifyConnect', + #directory : 'src', #load : 'Tests', #platforms : [ #squeak ] } From 0eb10b7f7d0382f7155f8127090a40b1a049b663 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 18:54:36 +0200 Subject: [PATCH 06/23] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b7a339..0b7412c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: #- macos-latest #- windows-latest # Select compatible Smalltalk image(s) - smalltalk: [ Squeak64-trunk, Squeak64-5.3, Squeak64-5.2 ] + smalltalk: [Squeak64-5.3] name: ${{ matrix.smalltalk }} on ${{ matrix.os }} steps: - uses: actions/checkout@v2 From 980841c807c7eaa42ae839b65b54b6132e1be01c Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 19:23:09 +0200 Subject: [PATCH 07/23] Update .smalltalk.ston --- .smalltalk.ston | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 7975bb1..927360e 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -3,8 +3,9 @@ SmalltalkCISpec { #loading : [ SCIMetacelloLoadSpec { #baseline : 'SpotifyConnect', + #repository: 'https://github.com/hpi-swa-teaching/SpotifyConnect', #directory : 'src', - #load : 'Tests', + #load : 'tests', #platforms : [ #squeak ] } ], From 7162c3b42081d7f927959e47176e223f0bdeb176 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 19:30:14 +0200 Subject: [PATCH 08/23] Delete src/SpotifyConnect/.properties --- src/SpotifyConnect/.properties | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 src/SpotifyConnect/.properties diff --git a/src/SpotifyConnect/.properties b/src/SpotifyConnect/.properties deleted file mode 100644 index 53a5454..0000000 --- a/src/SpotifyConnect/.properties +++ /dev/null @@ -1,3 +0,0 @@ -{ - #format : #tonel -} From 112704d3c7e86f26e828623309eb443e74e1ac90 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 19:30:46 +0200 Subject: [PATCH 09/23] Create .properties --- src/.properties | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/.properties diff --git a/src/.properties b/src/.properties new file mode 100644 index 0000000..53a5454 --- /dev/null +++ b/src/.properties @@ -0,0 +1,3 @@ +{ + #format : #tonel +} From cae875b73784858126d57190d3d53a6e0df79918 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 19:37:18 +0200 Subject: [PATCH 10/23] Update .smalltalk.ston --- .smalltalk.ston | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 927360e..173eaaa 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -1,17 +1,16 @@ SmalltalkCISpec { - #name : 'SpotifyCOnnect CI', + #name : 'SpotifyConnect CI', #loading : [ SCIMetacelloLoadSpec { #baseline : 'SpotifyConnect', - #repository: 'https://github.com/hpi-swa-teaching/SpotifyConnect', #directory : 'src', - #load : 'tests', + #load : [ 'tests' ], #platforms : [ #squeak ] } ], #testing : { #coverage : { - #packages : [ 'SpotifyConnect', 'SpotifyConnect-Utils' ] + #packages : [ 'SpotifyConnect.*', 'SpotifyConnect-Utils.*' ] } -} + } } From 3291081ae107a650f000bd1942a2fb69e3131daf Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 19:56:59 +0200 Subject: [PATCH 11/23] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b7412c..847f5cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: smalltalk-image: ${{ matrix.smalltalk }} - run: smalltalkci -s ${{ matrix.smalltalk }} shell: bash - timeout-minutes: 15 + timeout-minutes: 30 env: # for uploading coverage reports GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 7fcbc78e776a6c16b9782810bbcfd2738a27ae86 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 21:35:15 +0200 Subject: [PATCH 12/23] Update .smalltalk.ston --- .smalltalk.ston | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 173eaaa..50eafd7 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -9,8 +9,7 @@ SmalltalkCISpec { } ], #testing : { - #coverage : { - #packages : [ 'SpotifyConnect.*', 'SpotifyConnect-Utils.*' ] + #packages : ['SpotifyConnect-Tests'] } } } From 2ac7f6664a04248e84b022b5284e92faaaaea78a Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 21:36:01 +0200 Subject: [PATCH 13/23] Update .smalltalk.ston --- .smalltalk.ston | 1 - 1 file changed, 1 deletion(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 50eafd7..d9fd744 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -10,6 +10,5 @@ SmalltalkCISpec { ], #testing : { #packages : ['SpotifyConnect-Tests'] - } } } From 0f18d23528badcd1f2c1f501ef9846cd5106d731 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 21:42:29 +0200 Subject: [PATCH 14/23] Update BaselineOfSpotifyConnect.class.st --- src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st index 5de1636..46a43c7 100644 --- a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st +++ b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st @@ -19,7 +19,7 @@ BaselineOfSpotifyConnect >> baseline: spec [ package: 'SpotifyConnect-Tests' with: [spec requires: #('default')]; yourself. spec - group: 'default' with: #('SpotifyConnect', 'SpotifyConnect-Utils'); + group: 'default' with: #('SpotifyConnect' 'SpotifyConnect-Utils'); group: 'tests' with: #('SpotifyConnect-Tests'); yourself]. ] From b34f644f7d0981495f26ba2d386b669057295ab3 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 21:52:15 +0200 Subject: [PATCH 15/23] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 847f5cc..59bb7a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: #- macos-latest #- windows-latest # Select compatible Smalltalk image(s) - smalltalk: [Squeak64-5.3] + smalltalk: [ Squeak64-trunk, Squeak64-5.3, Squeak64-5.2 ] name: ${{ matrix.smalltalk }} on ${{ matrix.os }} steps: - uses: actions/checkout@v2 From b52da4438a6535cde1b6b51cb24f3c411fd556cf Mon Sep 17 00:00:00 2001 From: OW Date: Thu, 30 May 2024 22:08:13 +0200 Subject: [PATCH 16/23] update baseline --- .../BaselineOfSpotifyConnect.class.st | 5 ++--- src/BaselineOfSpotifyConnect/package.st | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st index 46a43c7..bec0706 100644 --- a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st +++ b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st @@ -6,7 +6,7 @@ Class { { #category : #'as yet unclassified', - #'squeak_changestamp' : 'OW 5/30/2024 18:23' + #'squeak_changestamp' : 'OW 5/30/2024 22:07' } BaselineOfSpotifyConnect >> baseline: spec [ @@ -15,11 +15,10 @@ BaselineOfSpotifyConnect >> baseline: spec [ do: [ spec package: 'SpotifyConnect'; - package: 'SpotifyConnect-Utils'; package: 'SpotifyConnect-Tests' with: [spec requires: #('default')]; yourself. spec - group: 'default' with: #('SpotifyConnect' 'SpotifyConnect-Utils'); + group: 'default' with: #('SpotifyConnect'); group: 'tests' with: #('SpotifyConnect-Tests'); yourself]. ] diff --git a/src/BaselineOfSpotifyConnect/package.st b/src/BaselineOfSpotifyConnect/package.st index d72dc31..2f82048 100644 --- a/src/BaselineOfSpotifyConnect/package.st +++ b/src/BaselineOfSpotifyConnect/package.st @@ -1,4 +1,4 @@ Package { - #'squeak_changestamp' : true, - #name : #BaselineOfSpotifyConnect + #name : #BaselineOfSpotifyConnect, + #'squeak_changestamp' : true } From 6c304a890a509674b7cb8cad3e7342bf10622147 Mon Sep 17 00:00:00 2001 From: OW Date: Thu, 30 May 2024 22:31:47 +0200 Subject: [PATCH 17/23] test --- .../BaselineOfSpotifyConnect.class.st | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st index bec0706..8d18326 100644 --- a/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st +++ b/src/BaselineOfSpotifyConnect/BaselineOfSpotifyConnect.class.st @@ -6,7 +6,7 @@ Class { { #category : #'as yet unclassified', - #'squeak_changestamp' : 'OW 5/30/2024 22:07' + #'squeak_changestamp' : 'OW 5/30/2024 22:31' } BaselineOfSpotifyConnect >> baseline: spec [ @@ -15,10 +15,10 @@ BaselineOfSpotifyConnect >> baseline: spec [ do: [ spec package: 'SpotifyConnect'; - package: 'SpotifyConnect-Tests' with: [spec requires: #('default')]; + "package: 'SpotifyConnect-Tests' with: [spec requires: #('default')];" yourself. spec group: 'default' with: #('SpotifyConnect'); - group: 'tests' with: #('SpotifyConnect-Tests'); + group: 'tests' with: #('SpotifyConnect'); yourself]. ] From ad29d764166fa38aa4c202d14ec770b205c092ab Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 22:32:28 +0200 Subject: [PATCH 18/23] teste .smalltalk.ston --- .smalltalk.ston | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index d9fd744..46eeea2 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -9,6 +9,6 @@ SmalltalkCISpec { } ], #testing : { - #packages : ['SpotifyConnect-Tests'] + #packages : ['SpotifyConnect'] } } From 8693ed78b01a423bf8d35845f54d7eac951bbaa8 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 22:58:21 +0200 Subject: [PATCH 19/23] test test test --- .smalltalk.ston | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 46eeea2..5ddf9c3 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -9,6 +9,9 @@ SmalltalkCISpec { } ], #testing : { - #packages : ['SpotifyConnect'] + #packages : ['SpotifyConnect'], + #exclude : { + #classes : [ #SPOCTestAuthorizer #SPOCTestTokens ] + } } } From 39d02da6c42d5acb38f4caeae5316359a3a02dfa Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 23:30:16 +0200 Subject: [PATCH 20/23] include exlude tests --- .smalltalk.ston | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index 5ddf9c3..b95e1a4 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -9,9 +9,11 @@ SmalltalkCISpec { } ], #testing : { - #packages : ['SpotifyConnect'], + #include : { + #packages : ['SpotifyConnect'] + }, #exclude : { - #classes : [ #SPOCTestAuthorizer #SPOCTestTokens ] - } + #classes : [ #SPOCTestAuthorizer #SPOCTestTokens ] + } } } From 0164c5089005fd75338fb9858d48c7f29ed27639 Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Thu, 30 May 2024 23:48:18 +0200 Subject: [PATCH 21/23] test categories --- .smalltalk.ston | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.smalltalk.ston b/.smalltalk.ston index b95e1a4..f64316c 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -9,11 +9,6 @@ SmalltalkCISpec { } ], #testing : { - #include : { - #packages : ['SpotifyConnect'] - }, - #exclude : { - #classes : [ #SPOCTestAuthorizer #SPOCTestTokens ] - } + #categories : [ 'SpotifyConnect-Tests' ] } } From 152f566a36360e86d92fb044baf3c5a09f1efaa4 Mon Sep 17 00:00:00 2001 From: OW Date: Thu, 30 May 2024 23:56:43 +0200 Subject: [PATCH 22/23] move tests with auth --- src/SpotifyConnect/SPOCTestAuthorizer.class.st | 2 +- src/SpotifyConnect/SPOCTestTokens.class.st | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SpotifyConnect/SPOCTestAuthorizer.class.st b/src/SpotifyConnect/SPOCTestAuthorizer.class.st index 053686f..fb71c0f 100644 --- a/src/SpotifyConnect/SPOCTestAuthorizer.class.st +++ b/src/SpotifyConnect/SPOCTestAuthorizer.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'authorizer' ], - #category : #'SpotifyConnect-Tests' + #category : #'SpotifyConnect-Auth-Tests' } { diff --git a/src/SpotifyConnect/SPOCTestTokens.class.st b/src/SpotifyConnect/SPOCTestTokens.class.st index e9fc301..8e49f7b 100644 --- a/src/SpotifyConnect/SPOCTestTokens.class.st +++ b/src/SpotifyConnect/SPOCTestTokens.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'authorizer' ], - #category : #'SpotifyConnect-Tests' + #category : #'SpotifyConnect-Auth-Tests' } { From 420b20d37ab092fa154d09b748b2a1eeb8dc83ff Mon Sep 17 00:00:00 2001 From: Ole W <114822024+olewoy@users.noreply.github.com> Date: Fri, 31 May 2024 00:07:58 +0200 Subject: [PATCH 23/23] Update ci.yml to only use squeak-trunc --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59bb7a6..4d30919 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: #- macos-latest #- windows-latest # Select compatible Smalltalk image(s) - smalltalk: [ Squeak64-trunk, Squeak64-5.3, Squeak64-5.2 ] + smalltalk: [ Squeak64-trunk ] name: ${{ matrix.smalltalk }} on ${{ matrix.os }} steps: - uses: actions/checkout@v2