diff --git a/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/at.ifPresent.ifAbsentPut..st b/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/at.ifPresent.ifAbsentPut..st index df99ed61..1d05634f 100644 --- a/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/at.ifPresent.ifAbsentPut..st +++ b/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/at.ifPresent.ifAbsentPut..st @@ -1,5 +1,8 @@ accessing -at: key ifPresent: do ifAbsentPut: anObject - - self items at: key ifPresent: [:arg | do value] ifAbsentPut: (STON fromString: (STON toString: anObject)). +at: key ifPresent: do ifAbsentPut: anObject + self items + at: key + ifPresent: [:arg | do value] + ifAbsentPut: (STON + fromString: (STON toString: anObject)). self changed: #pollList \ No newline at end of file diff --git a/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/removeKey..st b/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/removeKey..st index fd83dc23..b70c98c9 100644 --- a/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/removeKey..st +++ b/packages/Liquid-Network.package/LQLocalObjectRepo.class/instance/removeKey..st @@ -1,5 +1,6 @@ initialize-release -removeKey: key - - self items removeKey: key ifAbsent: [self error]. +removeKey: key + self items + removeKey: key + ifAbsent: [self error]. self changed: #pollList \ No newline at end of file diff --git a/packages/Liquid-Network.package/LQLocalObjectRepo.class/methodProperties.json b/packages/Liquid-Network.package/LQLocalObjectRepo.class/methodProperties.json index eb804afa..d1f11652 100644 --- a/packages/Liquid-Network.package/LQLocalObjectRepo.class/methodProperties.json +++ b/packages/Liquid-Network.package/LQLocalObjectRepo.class/methodProperties.json @@ -5,11 +5,11 @@ "addAnswerSet:ToPoll:" : "JT 8/2/2022 18:06", "at:" : "kge 8/1/2022 18:55", "at:ifAbsent:" : "kge 8/1/2022 18:55", - "at:ifPresent:ifAbsentPut:" : "Ingmar Vogel 6/18/2024 10:14", + "at:ifPresent:ifAbsentPut:" : "Ingmar Vogel 6/18/2024 16:41", "groupAt:" : "ms 8/4/2022 21:56", "includesKey:" : "kge 8/1/2022 18:56", "initialize" : "kge 8/1/2022 18:56", "items" : "JT 8/2/2022 18:06", "items:" : "JT 8/2/2022 18:06", - "removeKey:" : "Ingmar Vogel 6/18/2024 10:14", + "removeKey:" : "Ingmar Vogel 6/18/2024 16:41", "values" : "kge 8/1/2022 18:56" } } diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/addVisualization..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/addVisualization..st index a093afc0..b580c09c 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/addVisualization..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/addVisualization..st @@ -1,4 +1,4 @@ accessing -addVisualization: aVisualization - - self visualizations add: aVisualization \ No newline at end of file +addVisualization: aVisualization + self visualizations add: aVisualization + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildClosePollButtonWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildClosePollButtonWith..st index 2f5e4bc3..0da84a36 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildClosePollButtonWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildClosePollButtonWith..st @@ -1,9 +1,8 @@ toolbuilder -buildClosePollButtonWith: aBuilder - - ^ aBuilder pluggableButtonSpec new - model: self; - label: 'Close Poll'; - help: 'Close poll to prevent participants from handing in answers'; - action: #closePoll; - yourself \ No newline at end of file +buildClosePollButtonWith: aBuilder + ^ aBuilder pluggableButtonSpec new model: self; + label: 'Close Poll'; + help: 'Close poll to prevent participants from handing in answers'; + action: #closePoll; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreateAnotherPollButton..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreateAnotherPollButton..st index 5f62aab0..85998a0d 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreateAnotherPollButton..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreateAnotherPollButton..st @@ -1,9 +1,8 @@ toolbuilder -buildCreateAnotherPollButton: aBuilder - - ^ aBuilder pluggableButtonSpec new - model: self; - label: 'Create Another Poll'; - help: 'Creates another poll and opens the draft builder for it in a new window.'; - action: #createPoll; - yourself \ No newline at end of file +buildCreateAnotherPollButton: aBuilder + ^ aBuilder pluggableButtonSpec new model: self; + label: 'Create Another Poll'; + help: 'Creates another poll and opens the draft builder for it in a new window.'; + action: #createPoll; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreatePollFromSavedDraftsButton..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreatePollFromSavedDraftsButton..st index 4180c982..e76743d1 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreatePollFromSavedDraftsButton..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildCreatePollFromSavedDraftsButton..st @@ -1,9 +1,8 @@ toolbuilder -buildCreatePollFromSavedDraftsButton: aBuilder - - ^ aBuilder pluggableButtonSpec new - model: self; - label: 'Create Poll From Saved Drafts'; - help: 'Opens a window with saved drafts you can then edit and run.'; - action: #createPoll; - yourself \ No newline at end of file +buildCreatePollFromSavedDraftsButton: aBuilder + ^ aBuilder pluggableButtonSpec new model: self; + label: 'Create Poll From Saved Drafts'; + help: 'Opens a window with saved drafts you can then edit and run.'; + action: #createPoll; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildDeletePollButtonWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildDeletePollButtonWith..st index a436bb19..fca29ff1 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildDeletePollButtonWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildDeletePollButtonWith..st @@ -1,9 +1,8 @@ toolbuilder -buildDeletePollButtonWith: aBuilder - - ^ aBuilder pluggableButtonSpec new - model: self; - label: 'Delete Poll'; - help: 'Delete Poll to clear space for new polls.'; - action: #deletePoll; - yourself \ No newline at end of file +buildDeletePollButtonWith: aBuilder + ^ aBuilder pluggableButtonSpec new model: self; + label: 'Delete Poll'; + help: 'Delete Poll to clear space for new polls.'; + action: #deletePoll; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildExportResultsButtonWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildExportResultsButtonWith..st index 35e0352f..f2ad4e61 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildExportResultsButtonWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildExportResultsButtonWith..st @@ -4,4 +4,5 @@ buildExportResultsButtonWith: aBuilder label: 'Export Results'; help: 'Export the results of the currently selected poll to ressources/DataExports as a .csv file named after the poll id.'; action: #exportResults; - yourself \ No newline at end of file + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIDTextBoxWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIDTextBoxWith..st index 4de7957a..fc9acead 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIDTextBoxWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIDTextBoxWith..st @@ -1,9 +1,8 @@ toolbuilder -buildIDTextBoxWith: aBuilder - - ^ aBuilder pluggableTextSpec new - model: self; - readOnly: true; - indicateUnacceptedChanges: false; - getText: #pollId; - yourself \ No newline at end of file +buildIDTextBoxWith: aBuilder + ^ aBuilder pluggableTextSpec new model: self; + readOnly: true; + indicateUnacceptedChanges: false; + getText: #pollIDString; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIdCopyButtonWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIdCopyButtonWith..st index ef142925..e3c9562a 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIdCopyButtonWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildIdCopyButtonWith..st @@ -1,8 +1,7 @@ toolbuilder -buildIdCopyButtonWith: aBuilder - - ^ aBuilder pluggableButtonSpec new - model: self; - label: 'Copy Poll-ID to Clipboard'; - action: #copyPollId; - yourself \ No newline at end of file +buildIdCopyButtonWith: aBuilder + ^ aBuilder pluggableButtonSpec new model: self; + label: 'Copy Poll-ID to Clipboard'; + action: #copyPollId; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildPollListWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildPollListWith..st index 06a9304d..5bbc410e 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildPollListWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildPollListWith..st @@ -1,12 +1,10 @@ toolbuilder -buildPollListWith: aBuilder - +buildPollListWith: aBuilder | listSpec | - listSpec := aBuilder pluggableListSpec new. - listSpec - model: self; - list: #pollList; - getIndex: #getIndex; - setIndex: #setIndex:. - ^ listSpec \ No newline at end of file + listSpec model: self; + list: #pollList; + getIndex: #getIndex; + setIndex: #setIndex:. + ^ listSpec + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildQuestionBuilder.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildQuestionBuilder.st index 3a820db4..51f87d16 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildQuestionBuilder.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildQuestionBuilder.st @@ -1,7 +1,5 @@ toolbuilder buildQuestionBuilder - - ^ {(self questionBuilderAt: self currentQuestion) buildWith: ToolBuilder default} - - + ^ {(self questionBuilderAt: self currentQuestion) + buildWith: ToolBuilder default} \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildStopServerButtonWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildStopServerButtonWith..st index 5dd52357..73fd21d2 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildStopServerButtonWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildStopServerButtonWith..st @@ -1,9 +1,8 @@ toolbuilder -buildStopServerButtonWith: aBuilder - - ^ aBuilder pluggableButtonSpec new - model: self; - label: 'Stop Server'; - help: 'Stops the liquid server which allows access to your local polls.'; - action: #stopServer; - yourself \ No newline at end of file +buildStopServerButtonWith: aBuilder + ^ aBuilder pluggableButtonSpec new model: self; + label: 'Stop Server'; + help: 'Stops the liquid server which allows access to your local polls.'; + action: #stopServer; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildVisualization.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildVisualization.st new file mode 100644 index 00000000..fdaef253 --- /dev/null +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildVisualization.st @@ -0,0 +1,5 @@ +toolbuilder +buildVisualization + ^ {(self visualizationAt: self currentQuestion) + buildWith: ToolBuilder default} + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildWith..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildWith..st index d0181d4d..5547f947 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildWith..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/buildWith..st @@ -1,26 +1,30 @@ toolbuilder -buildWith: builder - +buildWith: builder | windowSpec | - - windowSpec := self buildWindowWith: builder specs: { - (self pollListFrame) -> [self buildPollListWith: builder]. - "(self questionBuilderFrame) -> - [builder pluggablePanelSpec new - model: self; - layout: #vertical; - children: #buildQuestionBuilder; - yourself]." - (self idTextBoxFrameFrame) -> [self buildIDTextBoxWith: builder]. - (self deletePollButtonFrame) -> [self buildDeletePollButtonWith: builder]. - (self createPollFromSavedPollsButtonFrame) -> [self buildCreatePollFromSavedDraftsButton: builder]. - (self idCopyButtonFrame) -> [self buildIdCopyButtonWith: builder]. - (self stopServerButtonFrame) -> [self buildStopServerButtonWith: builder]. - (self closePollButtonFrame) -> [self buildClosePollButtonWith: builder]. - (self createAnotherPollButtonFrame) -> [self buildCreateAnotherPollButton: builder]. - (self exportResultsButtonFrame) -> [self buildExportResultsButtonWith: builder]. - }. + windowSpec := self buildWindowWith: builder specs: {self pollListFrame + -> [self buildPollListWith: builder]. self idTextBoxFrameFrame + -> ["(self + questionBuilderFrame) + -> + + [builder + pluggablePanelSpec + new + model: + self; + layout: + #vertical; + children: + #buildQuestionBuilder; + yourself]. " + self buildIDTextBoxWith: builder]. self deletePollButtonFrame + -> [self buildDeletePollButtonWith: builder]. self createPollFromSavedPollsButtonFrame + -> [self buildCreatePollFromSavedDraftsButton: builder]. self idCopyButtonFrame + -> [self buildIdCopyButtonWith: builder]. self stopServerButtonFrame + -> [self buildStopServerButtonWith: builder]. self closePollButtonFrame + -> [self buildClosePollButtonWith: builder]. self createAnotherPollButtonFrame + -> [self buildCreateAnotherPollButton: builder]. self exportResultsButtonFrame + -> [self buildExportResultsButtonWith: builder]}. windowSpec label: 'Liquid - Host'. ^ builder build: windowSpec - - + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/clipboardDelay.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/clipboardDelay.st index 33c7bc14..3a3b292e 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/clipboardDelay.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/clipboardDelay.st @@ -1,4 +1,4 @@ accessing clipboardDelay - - ^ 0.1 \ No newline at end of file + ^ 0.1 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePoll.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePoll.st index 1407ecaa..6fc2ca03 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePoll.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePoll.st @@ -1,13 +1,10 @@ modifying closePoll - -self currentPoll == 0 ifFalse: [ -(LQRemotePollRepoServer pollRepo at: self currentPollID - ifAbsent: - [^ 'This poll does not exist.']) - closeWithPassword: (LQPasswordManager default - findPasswordFor: self currentPollID - ifAbsent: [^ UIManager default inform: 'You don''t have access to this poll.']). - self changed: #pollId - ] - "self dependents first label: 'closed Poll with ID:'." \ No newline at end of file + self currentPoll == 0 + ifFalse: [(LQRemotePollRepoServer pollRepo + at: self currentPollID + ifAbsent: [^ 'This poll does not exist.']) + closeWithPassword: (LQPasswordManager default + findPasswordFor: self currentPollID + ifAbsent: [^ UIManager default inform: 'You don''t have access to this poll.']). + self changed: #pollIDString] \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePollButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePollButtonFrame.st index ae328e84..87846e30 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePollButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/closePollButtonFrame.st @@ -1,8 +1,8 @@ toolbuilder closePollButtonFrame - ^ self frame: 0.9 fromTop: 0.825 fromLeft: 0.25 - width: 0.50 \ No newline at end of file + width: 0.5 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createAnotherPollButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createAnotherPollButtonFrame.st index e550b060..07db176f 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createAnotherPollButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createAnotherPollButtonFrame.st @@ -1,8 +1,8 @@ toolbuilder createAnotherPollButtonFrame - ^ self frame: 0.9 fromTop: 0.75 fromLeft: 0 - width: 0.25 \ No newline at end of file + width: 0.25 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createPollFromSavedPollsButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createPollFromSavedPollsButtonFrame.st index 5c0ee172..dcb502d5 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createPollFromSavedPollsButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/createPollFromSavedPollsButtonFrame.st @@ -1,8 +1,8 @@ toolbuilder createPollFromSavedPollsButtonFrame - ^ self frame: 1 fromTop: 0.9 fromLeft: 0 - width: 0.25 \ No newline at end of file + width: 0.25 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll..st index 0b09150e..5161a2c9 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll..st @@ -1,4 +1,4 @@ accessing -currentPoll: aNumber - - currentPoll := aNumber \ No newline at end of file +currentPoll: aNumber + currentPoll := aNumber + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll.st index cd1bb945..989c7b19 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPoll.st @@ -1,4 +1,4 @@ accessing currentPoll - - ^ currentPoll \ No newline at end of file + ^ currentPoll + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPollID.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPollID.st index 985934cd..70ff2f0d 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPollID.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/currentPollID.st @@ -1,6 +1,4 @@ accessing currentPollID - self pollList size == 0 - ifFalse: [^ (self pollList at: self getIndex) id]. - - ^ 'No polls in your repo.' \ No newline at end of file + self currentPoll = 0 + ifFalse: [^ (self pollList at: self getIndex) id] \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePoll.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePoll.st index 1ea93c52..d56cc622 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePoll.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePoll.st @@ -5,5 +5,5 @@ deletePoll at: self currentPollID ifAbsent: [^ 'This poll does not exist.']. LQRemotePollRepoServer pollRepo removeKey: self currentPollID. - self setIndex: self pollList size. - self changed: #pollList] \ No newline at end of file + self setIndex: self pollList size] + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePollButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePollButtonFrame.st index 645b7b6a..28ad0f3b 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePollButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/deletePollButtonFrame.st @@ -1,8 +1,8 @@ toolbuilder deletePollButtonFrame - ^ self frame: 0.825 fromTop: 0.75 fromLeft: 0.25 - width: 0.50 \ No newline at end of file + width: 0.5 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResults.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResults.st index ab450c4b..540153a4 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResults.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResults.st @@ -4,4 +4,5 @@ exportResults ifFalse: [LQRemotePollRepoServer pollRepo at: self currentPollID ifAbsent: [^ 'This poll does not exist.']. - (LQRemotePollRepoServer pollRepo at: self currentPollID) exportCSV] \ No newline at end of file + (LQRemotePollRepoServer pollRepo at: self currentPollID) exportCSV] + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResultsButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResultsButtonFrame.st index bf350e09..b0a0c916 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResultsButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/exportResultsButtonFrame.st @@ -4,4 +4,5 @@ exportResultsButtonFrame frame: 0.9 fromTop: 0.825 fromLeft: 0.75 - width: 0.25 \ No newline at end of file + width: 0.25 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/frame.fromTop.fromLeft.width..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/frame.fromTop.fromLeft.width..st index 9a4a15d9..33e67d26 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/frame.fromTop.fromLeft.width..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/frame.fromTop.fromLeft.width..st @@ -1,9 +1,8 @@ toolbuilder -frame: bottomFraction fromTop: topFraction fromLeft: leftFraction width: rightFraction - - ^ LayoutFrame new - leftFraction: leftFraction offset: 0; - topFraction: topFraction offset: 0; - rightFraction: (leftFraction + rightFraction) offset: 0; - bottomFraction: bottomFraction offset: 0.5 negated; - yourself \ No newline at end of file +frame: bottomFraction fromTop: topFraction fromLeft: leftFraction width: rightFraction + ^ LayoutFrame new leftFraction: leftFraction offset: 0; + topFraction: topFraction offset: 0; + rightFraction: leftFraction + rightFraction offset: 0; + bottomFraction: bottomFraction offset: 0.5 negated; + yourself + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/generateRandomID.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/generateRandomID.st index 110d930f..23dddb17 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/generateRandomID.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/generateRandomID.st @@ -1,4 +1,4 @@ supporting generateRandomID - - ^ LQPollIdGenerator new generateIdFromRealWords \ No newline at end of file + ^ LQPollIdGenerator new generateIdFromRealWords + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/getIndex.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/getIndex.st index 06a5cc4b..839c750a 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/getIndex.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/getIndex.st @@ -1,4 +1,4 @@ accessing getIndex - - ^ self currentPoll \ No newline at end of file + ^ self currentPoll + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idCopyButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idCopyButtonFrame.st index 2dd6c30d..ada103aa 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idCopyButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idCopyButtonFrame.st @@ -4,4 +4,5 @@ idCopyButtonFrame frame: 0.075 fromTop: 0 fromLeft: 0.75 - width: 0.25 \ No newline at end of file + width: 0.25 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idTextBoxFrameFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idTextBoxFrameFrame.st index ff13e6d4..7365a68c 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idTextBoxFrameFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/idTextBoxFrameFrame.st @@ -1,8 +1,8 @@ toolbuilder idTextBoxFrameFrame - ^ self frame: 0.075 fromTop: 0 fromLeft: 0.25 - width: 0.50 \ No newline at end of file + width: 0.5 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollIDString.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollIDString.st new file mode 100644 index 00000000..b6ae2633 --- /dev/null +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollIDString.st @@ -0,0 +1,10 @@ +accessing +pollIDString + (self currentPoll = 0 + or: [self pollList size = 0]) + ifFalse: [(LQRemotePollRepoServer pollRepo at: self currentPollID) isOpen + ifFalse: [^ 'Poll closed!']. + ^ self currentPollID asString]. + self pollList size = 0 + ifTrue: [^ 'No Polls on your Server!']. + ^ 'No poll selected!' \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollList.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollList.st index 9334bd2e..d50acb52 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollList.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollList.st @@ -1,5 +1,4 @@ accessing pollList -" LQRemotePollRepoServer pollRepo items size == 0 - ifTrue: [^OrderedCollection new]." - ^ LQRemotePollRepoServer pollRepo items values asOrderedCollection \ No newline at end of file + ^ LQRemotePollRepoServer pollRepo items values asOrderedCollection + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollListFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollListFrame.st index a5acead7..55adab87 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollListFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/pollListFrame.st @@ -1,8 +1,8 @@ toolbuilder pollListFrame - ^ self frame: 0.75 fromTop: 0 fromLeft: 0 - width: 0.25 \ No newline at end of file + width: 0.25 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/questionBuilderFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/questionBuilderFrame.st index 71ddd336..7e264b64 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/questionBuilderFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/questionBuilderFrame.st @@ -1,8 +1,8 @@ toolbuilder questionBuilderFrame - ^ self frame: 0.85 fromTop: 0 fromLeft: 0.25 - width: 0.75 \ No newline at end of file + width: 0.75 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/removeVisualizationAt..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/removeVisualizationAt..st index ce96501c..cde47d77 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/removeVisualizationAt..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/removeVisualizationAt..st @@ -1,3 +1,4 @@ accessing removeVisualizationAt: index - self visualizations removeAt: index \ No newline at end of file + self visualizations removeAt: index + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/setIndex..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/setIndex..st index 72b9e43a..aaca9f14 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/setIndex..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/setIndex..st @@ -1,7 +1,7 @@ -modifying +accessing setIndex: index self currentPoll: index. - "index = 0 - ifFalse: [self changed: #pollID]." - self changed: #pollId. - self changed: #getIndex \ No newline at end of file + index = 0 + ifFalse: [self changed: #visualizationBuilder]. + self changed: #pollIDString. + self changed: #getIndex \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServer.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServer.st index 3f2593d2..7542d68e 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServer.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServer.st @@ -1,5 +1,5 @@ modifying stopServer - LQRemotePollRepoServer startServer. - UIManager default inform: 'Stopped Liquid-Server' \ No newline at end of file + UIManager default inform: 'Stopped Liquid-Server' + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServerButtonFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServerButtonFrame.st index 9e4ce073..37ee6402 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServerButtonFrame.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/stopServerButtonFrame.st @@ -1,8 +1,8 @@ toolbuilder stopServerButtonFrame - ^ self frame: 1 fromTop: 0.9 fromLeft: 0.25 - width: 0.75 \ No newline at end of file + width: 0.75 + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/update..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/update..st new file mode 100644 index 00000000..819e8e40 --- /dev/null +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/update..st @@ -0,0 +1,4 @@ +as yet unclassified +update: aspect + + self changed: #pollList \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationAt..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationAt..st index 18841306..d5abc352 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationAt..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationAt..st @@ -1,4 +1,4 @@ accessing -visualizationAt: index - - ^ self visualizations at: index \ No newline at end of file +visualizationAt: index + ^ self visualizations at: index + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationFrame.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationFrame.st new file mode 100644 index 00000000..2217932f --- /dev/null +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizationFrame.st @@ -0,0 +1,7 @@ +toolbuilder +visualizationFrame + ^ self + frame: 0.75 + fromTop: 0.075 + fromLeft: 0.25 + width: 0.75 \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations..st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations..st index e0c52a44..834ba3fb 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations..st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations..st @@ -1,4 +1,4 @@ accessing -visualizations: anOrderedCollection - - visualizations := anOrderedCollection \ No newline at end of file +visualizations: anOrderedCollection + visualizations := anOrderedCollection + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations.st index c0dcee0d..f1bd37d8 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizations.st @@ -1,4 +1,4 @@ accessing visualizations - - ^ visualizations \ No newline at end of file + ^ visualizations + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizeResults.st b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizeResults.st index 98c016f4..d309a24e 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizeResults.st +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/instance/visualizeResults.st @@ -1,11 +1,21 @@ modifying visualizeResults - "| pollNameInput foundPoll | + "| pollNameInput + foundPoll | currentPoll == 0 - ifFalse: [pollNameInput := UIManager default request: 'Enter Poll ID'. - pollNameInput - ifEmpty: [^ self]. - foundPoll := LQRemotePollRepoServer pollRepo - at: pollNameInput - ifAbsent: [^ UIManager default inform: 'This poll does not exist.']. - LQVisualizationControls openOn: foundPoll]" \ No newline at end of file + ifFalse: [pollNameInput + := UIManager default + request: 'Enter Poll ID'. + pollNameInput + ifEmpty: [^ self]. + foundPoll := + LQRemotePollRepoServer + pollRepo at: + pollNameInput ifAbsent: + [^ UIManager default + inform: 'This poll does + not exist.']. + LQVisualizationControls + openOn: foundPoll]" + ^ self + \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQHostMenuNew.class/methodProperties.json b/packages/Liquid-UI.package/LQHostMenuNew.class/methodProperties.json index e56be6e7..21504346 100644 --- a/packages/Liquid-UI.package/LQHostMenuNew.class/methodProperties.json +++ b/packages/Liquid-UI.package/LQHostMenuNew.class/methodProperties.json @@ -2,47 +2,50 @@ "class" : { "newWithTitle:" : "ape 7/23/2022 09:58" }, "instance" : { - "addVisualization:" : "Ingmar Vogel 6/5/2024 13:27", - "buildClosePollButtonWith:" : "Ingmar Vogel 6/7/2024 11:30", - "buildCreateAnotherPollButton:" : "Ingmar Vogel 6/7/2024 11:30", - "buildCreatePollFromSavedDraftsButton:" : "Ingmar Vogel 6/7/2024 11:36", - "buildDeletePollButtonWith:" : "Ingmar Vogel 6/8/2024 14:13", - "buildExportResultsButtonWith:" : "Ingmar Vogel 6/7/2024 11:30", - "buildIDTextBoxWith:" : "Ingmar Vogel 6/8/2024 14:30", - "buildIdCopyButtonWith:" : "Ingmar Vogel 6/7/2024 11:30", - "buildPollListWith:" : "Ingmar Vogel 6/18/2024 10:18", - "buildQuestionBuilder" : "bn 8/2/2022 16:57", - "buildStopServerButtonWith:" : "Ingmar Vogel 6/7/2024 11:30", - "buildWith:" : "Ingmar Vogel 6/18/2024 10:00", - "clipboardDelay" : "Ingmar Vogel 6/5/2024 15:03", - "closePoll" : "Ingmar Vogel 6/18/2024 09:43", - "closePollButtonFrame" : "Ingmar Vogel 6/7/2024 11:32", + "addVisualization:" : "Ingmar Vogel 6/18/2024 16:17", + "buildClosePollButtonWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildCreateAnotherPollButton:" : "Ingmar Vogel 6/18/2024 16:19", + "buildCreatePollFromSavedDraftsButton:" : "Ingmar Vogel 6/18/2024 16:19", + "buildDeletePollButtonWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildExportResultsButtonWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildIDTextBoxWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildIdCopyButtonWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildPollListWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildQuestionBuilder" : "Ingmar Vogel 6/18/2024 16:19", + "buildStopServerButtonWith:" : "Ingmar Vogel 6/18/2024 16:19", + "buildVisualization" : "Ingmar Vogel 6/18/2024 16:19", + "buildWith:" : "Ingmar Vogel 6/18/2024 16:19", + "clipboardDelay" : "Ingmar Vogel 6/18/2024 16:17", + "closePoll" : "Ingmar Vogel 6/18/2024 16:16", + "closePollButtonFrame" : "Ingmar Vogel 6/18/2024 16:19", "copyPollId" : "Ingmar Vogel 6/8/2024 15:21", - "createAnotherPollButtonFrame" : "Ingmar Vogel 6/7/2024 11:32", - "createPoll" : "Ingmar Vogel 6/8/2024 15:22", - "createPollFromSavedPollsButtonFrame" : "Ingmar Vogel 6/7/2024 11:36", - "currentPoll" : "Ingmar Vogel 6/5/2024 13:28", - "currentPoll:" : "Ingmar Vogel 6/5/2024 13:28", - "currentPollID" : "Ingmar Vogel 6/8/2024 15:31", - "deletePoll" : "Ingmar Vogel 6/18/2024 09:34", - "deletePollButtonFrame" : "Ingmar Vogel 6/8/2024 14:12", - "exportResults" : "Ingmar Vogel 6/8/2024 15:26", - "exportResultsButtonFrame" : "Ingmar Vogel 6/7/2024 11:32", - "frame:fromTop:fromLeft:width:" : "bn 8/2/2022 16:58", - "generateRandomID" : "JT 6/23/2022 19:34", - "getIndex" : "Ingmar Vogel 6/5/2024 13:28", - "idCopyButtonFrame" : "Ingmar Vogel 6/8/2024 14:37", - "idTextBoxFrameFrame" : "Ingmar Vogel 6/8/2024 14:37", - "initialize" : "Ingmar Vogel 6/18/2024 10:00", - "pollId" : "Ingmar Vogel 6/18/2024 11:10", - "pollList" : "Ingmar Vogel 6/18/2024 09:58", - "pollListFrame" : "Ingmar Vogel 6/7/2024 17:20", - "questionBuilderFrame" : "bn 8/2/2022 16:59", - "removeVisualizationAt:" : "Ingmar Vogel 6/5/2024 13:30", - "setIndex:" : "Ingmar Vogel 6/18/2024 09:15", - "stopServer" : "Ingmar Vogel 6/5/2024 13:36", - "stopServerButtonFrame" : "Ingmar Vogel 6/7/2024 11:34", - "visualizationAt:" : "Ingmar Vogel 6/5/2024 13:29", - "visualizations" : "Ingmar Vogel 6/5/2024 13:29", - "visualizations:" : "Ingmar Vogel 6/5/2024 13:29", - "visualizeResults" : "Ingmar Vogel 6/8/2024 15:30" } } + "createAnotherPollButtonFrame" : "Ingmar Vogel 6/18/2024 16:19", + "createPoll" : "Ingmar Vogel 6/18/2024 16:17", + "createPollFromSavedPollsButtonFrame" : "Ingmar Vogel 6/18/2024 16:19", + "currentPoll" : "Ingmar Vogel 6/18/2024 16:17", + "currentPoll:" : "Ingmar Vogel 6/18/2024 16:17", + "currentPollID" : "Ingmar Vogel 6/19/2024 13:50", + "deletePoll" : "Ingmar Vogel 6/18/2024 17:02", + "deletePollButtonFrame" : "Ingmar Vogel 6/18/2024 16:19", + "exportResults" : "Ingmar Vogel 6/18/2024 16:17", + "exportResultsButtonFrame" : "Ingmar Vogel 6/18/2024 16:19", + "frame:fromTop:fromLeft:width:" : "Ingmar Vogel 6/18/2024 16:19", + "generateRandomID" : "Ingmar Vogel 6/18/2024 16:17", + "getIndex" : "Ingmar Vogel 6/18/2024 16:18", + "idCopyButtonFrame" : "Ingmar Vogel 6/18/2024 16:20", + "idTextBoxFrameFrame" : "Ingmar Vogel 6/18/2024 16:20", + "initialize" : "Ingmar Vogel 6/18/2024 16:48", + "pollIDString" : "Ingmar Vogel 6/19/2024 13:44", + "pollList" : "Ingmar Vogel 6/18/2024 16:18", + "pollListFrame" : "Ingmar Vogel 6/18/2024 16:20", + "questionBuilderFrame" : "Ingmar Vogel 6/18/2024 16:20", + "removeVisualizationAt:" : "Ingmar Vogel 6/18/2024 16:18", + "setIndex:" : "Ingmar Vogel 6/19/2024 12:48", + "stopServer" : "Ingmar Vogel 6/18/2024 16:17", + "stopServerButtonFrame" : "Ingmar Vogel 6/18/2024 16:20", + "update:" : "Ingmar Vogel 6/18/2024 16:55", + "visualizationAt:" : "Ingmar Vogel 6/18/2024 16:18", + "visualizationFrame" : "Ingmar Vogel 6/18/2024 16:21", + "visualizations" : "Ingmar Vogel 6/18/2024 16:18", + "visualizations:" : "Ingmar Vogel 6/18/2024 16:18", + "visualizeResults" : "Ingmar Vogel 6/18/2024 16:17" } } diff --git a/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/initialize.st b/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/initialize.st index 90534117..87dd731f 100644 --- a/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/initialize.st +++ b/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/initialize.st @@ -3,7 +3,7 @@ initialize super initialize. self questionBuilders: OrderedCollection new. - self currentQuestion: 1. self pollDraft: LQPollDraft new. self pollDraft questionList: OrderedCollection new. + self currentQuestion: 1. self addQuestion \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/runPoll.st b/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/runPoll.st index 7f4fd7f5..54eebed7 100644 --- a/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/runPoll.st +++ b/packages/Liquid-UI.package/LQPollDraftBuilder.class/instance/runPoll.st @@ -8,4 +8,5 @@ runPoll poll := LQPoll newWithPollDraft: self pollDraft. poll startWithId: givenPollID ifTaken: [^ UIManager default inform: 'This ID is already taken']. - ToolBuilder open: (LQRunningPollView newWithPoll: poll) \ No newline at end of file + self destroy + "ToolBuilder open: (LQRunningPollView newWithPoll: poll)" \ No newline at end of file diff --git a/packages/Liquid-UI.package/LQPollDraftBuilder.class/methodProperties.json b/packages/Liquid-UI.package/LQPollDraftBuilder.class/methodProperties.json index 6ee16593..c8927322 100644 --- a/packages/Liquid-UI.package/LQPollDraftBuilder.class/methodProperties.json +++ b/packages/Liquid-UI.package/LQPollDraftBuilder.class/methodProperties.json @@ -20,7 +20,7 @@ "frame:fromTop:fromLeft:width:" : "bn 8/2/2022 16:58", "generateRandomID" : "JT 6/23/2022 19:34", "getIndex" : "bn 8/2/2022 16:58", - "initialize" : "bn 6/27/2022 13:49", + "initialize" : "Ingmar Vogel 6/18/2024 17:44", "list" : "bn 8/2/2022 16:58", "openManageUserSetsMenu" : "bn 8/2/2022 18:08", "pollDraft" : "bn 6/20/2022 19:55", @@ -33,6 +33,6 @@ "removeQuestion" : "vl 5/27/2024 12:39", "removeQuestionBuilderAt:" : "vl 5/27/2024 12:39", "removeQuestionButtonFrame" : "vl 5/27/2024 12:39", - "runPoll" : "Ingmar Vogel 6/8/2024 13:19", + "runPoll" : "Ingmar Vogel 6/18/2024 17:11", "runPollButtonFrame" : "bn 8/2/2022 16:59", "setIndex:" : "bn 6/23/2022 22:17" } } diff --git a/packages/Liquid-UI.package/LQRunningPollView.class/methodProperties.json b/packages/Liquid-UI.package/LQRunningPollView.class/methodProperties.json index 8aeba141..bd8b40b2 100644 --- a/packages/Liquid-UI.package/LQRunningPollView.class/methodProperties.json +++ b/packages/Liquid-UI.package/LQRunningPollView.class/methodProperties.json @@ -3,7 +3,7 @@ "newWithPoll:" : "CG 7/30/2021 19:06", "open" : "CG 7/30/2021 19:06" }, "instance" : { - "buildIDTextBoxWith:" : "kge 8/1/2022 20:49", + "buildIDTextBoxWith:" : "Ingmar Vogel 6/18/2024 16:08", "buildIdCopyButtonWith:" : "kge 8/1/2022 20:50", "buildOpenMailDialogButtonWith:" : "kge 8/1/2022 20:50", "buildPollInteractionButtonWith:" : "kge 8/1/2022 20:50",