-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1144 from pharo-vcs/dev-1.0
Preparing release of v1.5.2
- Loading branch information
Showing
61 changed files
with
293 additions
and
32 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
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
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
...erg-Metacello-Integration.package/IceProviderRepositoryType.class/instance/projectName.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 @@ | ||
accessing | ||
projectName | ||
|
||
^ (self location substrings: '/') third copyUpTo: $: |
4 changes: 4 additions & 0 deletions
4
...-Metacello-Integration.package/IceProviderRepositoryType.class/instance/projectVersion.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 @@ | ||
accessing | ||
projectVersion | ||
|
||
^ (location substrings: '/') third copyAfter: $: |
Empty file.
4 changes: 4 additions & 0 deletions
4
...tacelloIntegration.package/AbstractIceMetacelloIntegrationTests.class/class/isAbstract.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 @@ | ||
testing | ||
isAbstract | ||
|
||
^ self name = #AbstractIceMetacelloIntegrationTests |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 14 additions & 0 deletions
14
...s-MetacelloIntegration.package/AbstractIceMetacelloIntegrationTests.class/properties.json
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,14 @@ | ||
{ | ||
"commentStamp" : "", | ||
"super" : "IceParameterizedTestCase", | ||
"category" : "Iceberg-Tests-MetacelloIntegration", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ | ||
"repository", | ||
"conflictingRepository" | ||
], | ||
"name" : "AbstractIceMetacelloIntegrationTests", | ||
"type" : "normal" | ||
} |
7 changes: 2 additions & 5 deletions
7
...erg-Tests-MetacelloIntegration.package/IceMetacelloIntegrationTests.class/properties.json
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 |
---|---|---|
@@ -1,16 +1,13 @@ | ||
{ | ||
"commentStamp" : "", | ||
"super" : "IceParameterizedTestCase", | ||
"super" : "AbstractIceMetacelloIntegrationTests", | ||
"category" : "Iceberg-Tests-MetacelloIntegration", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ | ||
"CommitishToUse" | ||
], | ||
"instvars" : [ | ||
"repository", | ||
"conflictingRepository" | ||
], | ||
"instvars" : [ ], | ||
"name" : "IceMetacelloIntegrationTests", | ||
"type" : "normal" | ||
} |
Empty file.
4 changes: 4 additions & 0 deletions
4
....package/IceMetacelloIntegrationUpdateALoadedVersionTest.class/instance/repositoryName.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 @@ | ||
configuring | ||
repositoryName | ||
|
||
^ 'test-project-source-properties-tonel' |
15 changes: 15 additions & 0 deletions
15
...ration.package/IceMetacelloIntegrationUpdateALoadedVersionTest.class/instance/tearDown.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,15 @@ | ||
tests | ||
tearDown | ||
|
||
super tearDown. | ||
|
||
(IceRepository registry select: [ :e | e name = 'test-project-with-dep' ]) do: [ :each | each ifNotNil: [ :repo | | ||
repo unload. | ||
repo forget. | ||
repo location ifNotNil: #ensureDeleteAll ] ]. | ||
|
||
"Cleanup Metacello registry to avoid conflicts" | ||
MetacelloProjectRegistration registry baselineRegistry | ||
detect: [ :registration | registration projectName = 'TestProjectWithDep' ] | ||
ifFound: [ :registration | registration unregisterProject ]. | ||
|
16 changes: 16 additions & 0 deletions
16
...nUpdateALoadedVersionTest.class/instance/testConflictDetectedWithProjectWithDependency.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,16 @@ | ||
tests | ||
testConflictDetectedWithProjectWithDependency | ||
|
||
Metacello new | ||
baseline: 'PharoGitTest'; | ||
repository:'github://pharo-vcs/test-project-source-properties-tonel'; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: 'master'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 700. | ||
|
||
self should: [Metacello new | ||
baseline: 'TestProjectWithDep'; | ||
repository:'github://pharo-vcs/test-project-with-dep'; | ||
load] raise: MetacelloConflictingProjectError. | ||
|
20 changes: 20 additions & 0 deletions
20
...egrationUpdateALoadedVersionTest.class/instance/testIncommingWhenProjectWithDependency.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,20 @@ | ||
tests | ||
testIncommingWhenProjectWithDependency | ||
|
||
Metacello new | ||
baseline: 'PharoGitTest'; | ||
repository:'github://pharo-vcs/test-project-source-properties-tonel'; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: 'master'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 700. | ||
|
||
Metacello new | ||
baseline: 'TestProjectWithDep'; | ||
repository:'github://pharo-vcs/test-project-with-dep'; | ||
onConflictUseIncoming; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: '1.2.3'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 697. | ||
|
20 changes: 20 additions & 0 deletions
20
...ationUpdateALoadedVersionTest.class/instance/testKeepExistingWhenProjectWithDependency.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,20 @@ | ||
tests | ||
testKeepExistingWhenProjectWithDependency | ||
|
||
Metacello new | ||
baseline: 'PharoGitTest'; | ||
repository:'github://pharo-vcs/test-project-source-properties-tonel'; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: 'master'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 700. | ||
|
||
Metacello new | ||
baseline: 'TestProjectWithDep'; | ||
repository:'github://pharo-vcs/test-project-with-dep'; | ||
onConflictUseLoaded; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: 'master'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 700. | ||
|
19 changes: 19 additions & 0 deletions
19
...onUpdateALoadedVersionTest.class/instance/testUpdateProjectShouldCheckoutTheNewVersion.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,19 @@ | ||
tests | ||
testUpdateProjectShouldCheckoutTheNewVersion | ||
|
||
Metacello new | ||
baseline: 'PharoGitTest'; | ||
repository:'github://pharo-vcs/test-project-source-properties-tonel'; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: 'master'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 700. | ||
|
||
Metacello new | ||
baseline: 'PharoGitTest'; | ||
repository:'github://pharo-vcs/test-project-source-properties-tonel:1.2.3'; | ||
onConflictUseIncoming; | ||
load. | ||
|
||
self assert: self repositoryForTest head description equals: '1.2.3'. | ||
self assert: (Smalltalk classNamed: #Test) new versionNumber equals: 697. |
11 changes: 11 additions & 0 deletions
11
...Integration.package/IceMetacelloIntegrationUpdateALoadedVersionTest.class/properties.json
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,11 @@ | ||
{ | ||
"commentStamp" : "", | ||
"super" : "AbstractIceMetacelloIntegrationTests", | ||
"category" : "Iceberg-Tests-MetacelloIntegration", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "IceMetacelloIntegrationUpdateALoadedVersionTest", | ||
"type" : "normal" | ||
} |
5 changes: 5 additions & 0 deletions
5
Iceberg-TipUI.package/FTBasicItem.extension/instance/toggle.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,5 @@ | ||
*Iceberg-TipUI | ||
toggle | ||
self isExpanded | ||
ifTrue: [ self collapseAndRefresh ] | ||
ifFalse: [ self expandAndRefresh ] |
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,3 @@ | ||
{ | ||
"name" : "FTBasicItem" | ||
} |
3 changes: 1 addition & 2 deletions
3
Iceberg-TipUI.package/IceTipEntityModel.class/instance/colorModified.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
TOMOVE | ||
colorModified | ||
self flag: #todo. "Make themable" | ||
^ Color r: 0 g: 0.5 b: 0 | ||
^ Smalltalk ui theme successTextColor |
6 changes: 6 additions & 0 deletions
6
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/README.md
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,6 @@ | ||
Description | ||
-------------------- | ||
|
||
I am a cell used to render the header of an outline datasource. | ||
|
||
Since the header should not be part of the tree, to collapse it we do not have a button but I am clickable. (I show a web cursor to show the feature to the user) |
6 changes: 6 additions & 0 deletions
6
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/class/dataSource.item..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,6 @@ | ||
instance creation | ||
dataSource: aDataSource item: anItem | ||
^ self new | ||
dataSource: aDataSource; | ||
item: anItem; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/dataSource..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,3 @@ | ||
accessing | ||
dataSource: aDataSource | ||
dataSource := aDataSource |
3 changes: 3 additions & 0 deletions
3
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/defaultColor.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,3 @@ | ||
initialize | ||
defaultColor | ||
^ self theme backgroundColor negated alpha: 0.05 |
3 changes: 3 additions & 0 deletions
3
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/handlesMouseDown..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,3 @@ | ||
event handling | ||
handlesMouseDown: evt | ||
^ true |
3 changes: 3 additions & 0 deletions
3
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/handlesMouseOver..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,3 @@ | ||
event handling | ||
handlesMouseOver: evt | ||
^ true |
3 changes: 3 additions & 0 deletions
3
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/item..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,3 @@ | ||
accessing | ||
item: anItem | ||
item := anItem |
4 changes: 4 additions & 0 deletions
4
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/mouseEnter..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 @@ | ||
event handling | ||
mouseEnter: evt | ||
self currentHand showTemporaryCursor: Cursor webLink. | ||
super mouseEnter: evt |
4 changes: 4 additions & 0 deletions
4
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/mouseLeave..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 @@ | ||
event handling | ||
mouseLeave: evt | ||
self currentHand showTemporaryCursor: nil. | ||
super mouseLeave: evt |
5 changes: 5 additions & 0 deletions
5
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/instance/mouseUp..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,5 @@ | ||
event handling | ||
mouseUp: evt | ||
((dataSource canDisplayChildrenOf: item) and: [ item children isNotEmpty ]) | ||
ifTrue: [ item toggle ]. | ||
super mouseUp: evt |
14 changes: 14 additions & 0 deletions
14
Iceberg-TipUI.package/IceTipOutlineHeaderCellMorph.class/properties.json
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,14 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 11/8/2018 12:00", | ||
"super" : "FTCellMorph", | ||
"category" : "Iceberg-TipUI-View-DataSource", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ | ||
"dataSource", | ||
"item" | ||
], | ||
"name" : "IceTipOutlineHeaderCellMorph", | ||
"type" : "normal" | ||
} |
2 changes: 1 addition & 1 deletion
2
Iceberg-TipUI.package/IceTipRepositoryBrowser.class/instance/newSidebarTreeDataSource.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
6 changes: 6 additions & 0 deletions
6
Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/README.md
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,6 @@ | ||
Description | ||
-------------------- | ||
|
||
I'm a tree datasource to generate an Outline component. | ||
|
||
My roots are displayed as section and not as part of the tree. |
8 changes: 8 additions & 0 deletions
8
Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellColumn.row..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 @@ | ||
instance creation | ||
cellColumn: column row: rowIndex | ||
| item | | ||
|
||
item := self elementAt: rowIndex. | ||
^ item depth = 0 | ||
ifTrue: [ self newRootCellFor: item ] | ||
ifFalse: [ self newCellFor: item ] |
3 changes: 3 additions & 0 deletions
3
Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellIndentFor..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,3 @@ | ||
private factory | ||
cellIndentFor: item | ||
^ ((item depth - 1) * 16) + 3 |
11 changes: 11 additions & 0 deletions
11
Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/newRootCellFor..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,11 @@ | ||
instance creation | ||
newRootCellFor: item | ||
| cell | | ||
cell := IceTipOutlineHeaderCellMorph dataSource: self item: item. | ||
(self iconFor: item data) ifNotNil: [ :icon | cell addMorphBack: icon asMorph ]. | ||
cell addMorphBack: (self toString: item data) asMorph asReadOnlyMorph. | ||
cell addMorphBack: (AlignmentMorph newSpacer: Color transparent). | ||
cell addMorphBack: item children size asMorph asReadOnlyMorph. | ||
"Since we might have a scroll bar we do not want to have the number of children displayed at the extreme right." | ||
cell addMorphBack: (Morph newBounds: (0 @ 0 corner: 20 @ 0) color: Color transparent) asReadOnlyMorph. | ||
^ cell |
11 changes: 11 additions & 0 deletions
11
Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/properties.json
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,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 11/8/2018 12:01", | ||
"super" : "IceTipTreeDataSource", | ||
"category" : "Iceberg-TipUI-View-DataSource", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "IceTipTreeOutlineDataSource", | ||
"type" : "normal" | ||
} |
4 changes: 4 additions & 0 deletions
4
Iceberg.package/IceCheckoutStrategy.class/instance/commitish..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 @@ | ||
accessing | ||
commitish: aCommittish | ||
|
||
committish := aCommittish |
Oops, something went wrong.