Starting themes customization.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-08-13 19:14:20 -05:00
parent c7fb5d8900
commit 4bd52732ab
1 changed files with 14 additions and 1 deletions

View File

@ -30,7 +30,9 @@ Class {
'provider',
'url',
'preview',
'license'
'license',
'folder',
'customizations'
],
#category : #Brea
}
@ -49,9 +51,20 @@ BreaTheme >> downloadInto: aFolder [
aFolder ensureCreateDirectory.
GrafoscopioUtils
downloadingFrom: self url withMessage: 'Downloading ', tempName, '...' into: zippedFile.
self folder: aFolder.
^ zippedFile
]
{ #category : #accessing }
BreaTheme >> folder [
^ folder
]
{ #category : #accessing }
BreaTheme >> folder: anObject [
folder := anObject
]
{ #category : #installation }
BreaTheme >> installInto: aFolder [
| zippedFile |