-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update installation/update of semantics package
- Loading branch information
Showing
13 changed files
with
46 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
...OfSqueakInboxTalk.package/BaselineOfSqueakInboxTalk.class/instance/installSemanticText.st
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...ges/SqueakInboxTalk.package/TalkInboxBrowser.class/class/basicSelfUpdateMetacelloSpec..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
self-updating | ||
basicSelfUpdateMetacelloSpec: aString | ||
|
||
SelfUpdateMetacelloSpec := Compiler evaluate: aString. |
7 changes: 0 additions & 7 deletions
7
packages/SqueakInboxTalk.package/TalkInboxBrowser.class/class/ensureSemanticTextOrCancel.st
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
...es/SqueakInboxTalk.package/TalkInboxBrowser.class/class/ensureSemanticsPackageOrCancel.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
self-updating | ||
ensureSemanticsPackageOrCancel | ||
|
||
(Smalltalk classNamed: #TalkSemanticConversationBrowserPlugin) ifNotNil: [:class | ^ class]. | ||
(self confirm: 'Install SemanticText?') ifFalse: [^ nil]. | ||
|
||
self basicSelfUpdateMetacelloSpec: {self selfUpdateMetacelloSpec. 'SqueakInboxTalkExtras-Semantic'}. | ||
self selfUpdateFromMetacello. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
packages/SqueakInboxTalk.package/TalkInboxBrowser.class/class/selfUpdateMetacelloSpec..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
self-updating | ||
selfUpdateMetacelloSpec: aString | ||
|
||
self basicSelfUpdateMetacelloSpec: aString. | ||
|
||
(Project uiManager confirm: 'Would you like to install updates now?' title: ('{1} self-update' format: {self appName})) | ||
ifTrue: [self selfUpdate] |
8 changes: 8 additions & 0 deletions
8
packages/SqueakInboxTalk.package/TalkInboxBrowser.class/class/selfUpdateMetacelloSpec.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
self-updating | ||
selfUpdateMetacelloSpec | ||
<preference: 'Squeak Inbox Talk self-update Metacello spec' | ||
category: #'Squeak Inbox Talk' | ||
description: 'The Metacello used for installing updates for Squeak Inbox Talk from the GitHub repository.' | ||
type: #String> | ||
|
||
^ (SelfUpdateMetacelloSpec ifNil: [#default]) storeString |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters