This commit is contained in:
ruidajo 2022-03-17 15:33:25 -05:00
commit 1b12ed67b0
1 changed files with 6 additions and 1 deletions

View File

@ -37,7 +37,7 @@ TiddlyWiki >> addRecentChangesToRepo [
repository := self repository.
self updateFromHtml.
recentTiddlers := self changesAfter: repository checkoutDateAndTime.
docsSton := recentTiddlers collect: [:each | each exportSTONFile].
docsSton := recentTiddlers collect: [:each | each exportSTONFileOptimized ].
"Collecting tiddlers file reference as string and adding to the repo"
docsStonSanitized := docsSton collect: [ :each |
(each fullName removePrefix: repository localRoot) allButFirst ].
@ -271,6 +271,11 @@ TiddlyWiki >> file: anObject [
file := anObject
]
{ #category : #accessing }
TiddlyWiki >> folder [
^ self file parent
]
{ #category : #accessing }
TiddlyWiki >> fromDictionary: tiddlersDict [