[Cuis-dev] 'Open -> File list' hangs Cuis --- [latest updates and VM]

Gerald Klix cuis.01 at klix.ch
Mon Aug 23 08:12:46 PDT 2021


Hoi Nicola,



On 8/23/21 11:30 AM, Nicola Mingotti via Cuis-dev wrote:
> 
> Hi guys,
> 
> I am back the the keyboard.
> 
> so, FileList now opens but I see problems with this new setup.
> 
> What follows are facts mixed with opinions based on my current level of 
> experience,
> so don't take them as critics, always as suggestions for improvement ;)
> 
> 1] I see by default the FileList opens now on '/' ;, this is very much 
> undersirable
> as Cuis can't `cd` its base working directory, the center of its universe
> is always the directory containing the VM and the Cuis-Smalltalk-Dev 
> directory
> so FileList should definitely open itself in that position.
This was always the case, normally you won't notice this behavior
and it never annoyed so much that I took action.
> 
> 2] I need often to write in my notes this statement 'the directory 
> containing
> Cuis-Smalltalk-Dev'. We should call it in one way, let's say 
> 'cuis-project'.
Please, call it "image-directory", that's what it actually is.

Let my explain my setup:
I normally do not use Cuis-Smalltalk-Dev,
I have one directory that contains symbolic links to all the
relevant Cuis-Smalltalk repository directories and a directory
for each major project which contains the image and change log
and symbolic links to the true-type font directory and the
CuisV5.sources file.

This way all the files I change regularly are not part of
Cuis's git repository. Source-Code I keep in a Mercurial repo
in sub-directory of each project directory.

This works nicely with Cuis' package search algorithm, unless
you mess things up by utter stupidity, as I once did when
mounting my entire Windows home-directory inside Cuis'
package search path.

I added a listing of one of the zip-files that contain a
Haver release. Its (rather different) directory structure
should give you an impression what works with Cuis (and Haver).
Needless to say, I would like to keep that flexibility.

> the humble lowercase name suggests the user its name is modifiable at 
> pleasure.

Which might become cumbersome, if it is one of the official git-repos.

> At the moment the doc reccomends 'My-Project'. that is too vague IMO,
> It is true that nearby it Juan says 'You can call it Cuis-Smalltalk', 
> but trust me,
> if you don't write things as commds, 50% of users will not read them.
> Also 'Cuis-Smalltalk' is too similar to 'Cuis-Smalltalk-Dev', it is 
> uppercase so
> it looks like it is an important name and it does not convey the idea it is
> a project directory, so you can have many of them: cuis-projec-foo, 
> cuis-project-bar etc. etc.
> 
> 3] This is a real problem. Opening FileList at '/' I can't reach anymore 
> cuis-project,
> it is beyond the 50 entry limits.
Should be fixed by now?
> 
> 4] Usability. Since Cuis fileout stuff in Cuis-Smalltalk-Dev and most 
> probably
> then we load ".st" files they are into 'cuis-project' it is annoying to 
> have to
> parse all the directory tree (which can be complex) to arrive at 
> 'cuis-project'.
The setup mentioned above avoids that inconvenience.
> 
> 5] This about Gerald observation about missing file systems. Yes, 
> absolutely,
> I have a few of them, sshfs and CIFS. Putting Cuis in servers and office 
> pc, this will be
> the rule more than an exception. All of the environment I worked into 
> have a CIFS or a
> NFS. Some of these filesystems can contain a lot of Teras of data which 
> are of absolute no interest to Cuis,
> I reccomend you don't try by default to parse those trees, it can give 
> thousands of problems:
> they can be unavailable for high load or part of them can be unavailable 
> to a certain user
> for user policy permissions.
I strongly advice against this practice, not only for Cuis development
or any development, but for all kind of Unix work. Use an automounter
like autofs instead. After not being used for some time
the mounted directories are unmounted automatically,
putting them out of harm's way.
See: https://help.ubuntu.com/community/Autofs

> 
> 6] For all of these reasons I would reccomend to make FileList start at
> 'cuis-project' by default, and by default, ignore what is outside it. It 
> goes
> there if the user asks it. If the user finds problems he knows it is not 
> Cuis fault.
> 
> 7] If [6] not feasible I would reccomend putting a push button into 
> FileList
> saying 'go to cuis-project' and this bring the user where he wants to be 
> with probability near to 1
> without traversing all his ugly directory tree and seeing those annoying 
> hundreds of hidden directory.
Well, if you go to that length you an add a "favorites"-pane
pre-populated with the image-directory,
the root-directory (or all the drive-letters)
and the user's home-directory.

BTW: This rises an interesting question:
How can I get the user's home-directory without loading
OSProcesses and look at various environment variables
or load FFI and start messing with getpwent (ignoring
Windows for the sake of simplicity)?
Needless to say that I searched a 5.3 Squeak image
for a solution, I did not find anything helpful.

I did a limited getpwent implementation which I attached.
Maybe it helps others.
> 
> 
> 
> bye
> Nicola
> 
> 
> 
> On 8/22/21 1:16 AM, Juan Vuletich wrote:
>> On 8/21/2021 6:32 PM, Gerald Klix via Cuis-dev wrote:
>>> Nicola,
>>>
>>> browse to
>>> HierarchicalListMorph>>#addSubmorphsAfter:fromCollection:allowSorting:
>>> press the the versions button and revert the method
>>> to the but-first version.
>>>
>>> I hope this will repair FileList.
>>>
>>>
>>> HTH,
>>>
>>> Gerald
>>
>> Oh gosh. Silly me. Apologies to all.
>>
>> Just pushed an update to rollback that change. Maybe I'll later look 
>> for a smarter way to limit contents for ObjectExplorers. Please pull 
>> repo and install updates.
>>
>> Thanks for the patience.
>>
> 

HTH,

Gerald
-------------- next part --------------
'From Haver 5.0 [latest update: #4607] on 25 May 2021 at 2:35:43 pm'!
'Description '!
!provides: 'UserInfo' 1 1!
SystemOrganization addCategory: 'UserInfo'!





!classDefinition: #Passwd category: 'UserInfo'!
Object subclass: #Passwd
	instanceVariableNames: 'entries userNameToEntry'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'UserInfo'!
!classDefinition: 'Passwd class' category: 'UserInfo'!
Passwd class
	instanceVariableNames: 'uniqueInstance'!


!Passwd commentStamp: '<historical>' prior: 0!
I provide access to '/etc/passwd' on a unix system.

I provide the same service as "getpwent", but I only consult local files and
ignore any "nsswitch.conf: settings.!

!Passwd methodsFor: 'initialization' stamp: 'KLG 5/23/2021 13:32:46'!
initialize
	"Initialize the entries."

	super initialize.
	self readEntries.! !

!Passwd methodsFor: 'reading' stamp: 'KLG 5/23/2021 14:17:37'!
readEntries
	"Read and parse all passwd entries."

	entries _ OrderedCollection new: 70.
	self passwdFileName asFileEntry readStreamDo: [ :stream |
		[ stream atEnd ] whileFalse: [ | entry lineStream |
			entry _ Array new: 6.
			lineStream _ ReadStream on: stream nextLine.
			1 to: entry size do: [ :index |
				entry at: index put: (lineStream upTo: $:) ].
			entries add: entry ] ]
		 ! !

!Passwd methodsFor: 'accessing' stamp: 'KLG 5/23/2021 14:12:37'!
entries
	"Answer the value of entries"

	^ entries! !

!Passwd methodsFor: 'accessing' stamp: 'KLG 5/23/2021 14:12:37'!
entries: anObject
	"Set the value of entries"

	entries _ anObject! !

!Passwd methodsFor: 'accessing' stamp: 'KLG 5/23/2021 23:34:15'!
entryForUserName: aUserName
	"Answer the entry for aUserName."

	^ self userNameToEntry at: aUserName ! !

!Passwd methodsFor: 'accessing' stamp: 'KLG 5/23/2021 23:37:29'!
homeDirectoryForUserName: aUserName
	"Answer the entry for aUserName."

	^ self entryForUserName: aUserName :: last! !

!Passwd methodsFor: 'accessing' stamp: 'KLG 5/23/2021 23:36:09'!
userNameToEntry
	"Answer the value of userNameToEntry"

	^ userNameToEntry ifNil: [
		userNameToEntry _ Dictionary new.
		entries do: [  :entry |
			userNameToEntry at: (entry at: 1) put: entry ].
		userNameToEntry ]! !

!Passwd methodsFor: 'filenames' stamp: 'KLG 5/23/2021 14:13:42'!
passwdFileName
	"Answer the name of the passwd file."
	
	^ '/etc/passwd'! !

!Passwd class methodsFor: 'singleton' stamp: 'KLG 5/25/2021 12:30:46'!
uniqueInstance
	"Answer my unique instrance."

	^ uniqueInstance ifNil: [ uniqueInstance - self new ]! !

!Passwd class methodsFor: 'accessing' stamp: 'KLG 5/25/2021 12:31:31'!
homeDirectoryForUserName: aUserName
	"Answer the entry for aUserName."

	^ self uniqueInstance homeDirectoryForUserName: aUserName! !
-------------- next part --------------
Archive:  Haver-unix-linux-gnu-x86_64-64bit-2-alpha.zip
Haver on Cuis
  Length      Date    Time    Name
---------  ---------- -----   ----
  5426534  2017-03-14 15:05   Image/CuisV5.sources
  1721744  2021-05-30 22:01   VM/squeak
    10088  2021-05-30 22:01   VM/XDisplayControlPlugin.so
    10080  2021-05-30 22:01   VM/UUIDPlugin.so
    14176  2021-05-30 22:01   VM/LocalePlugin.so
    22368  2021-05-30 22:01   VM/FileAttributesPlugin.so
    10016  2021-05-30 22:01   VM/SHA2Plugin.so
    75960  2021-05-30 22:01   VM/Squeak3D.so
   207360  2021-05-30 22:01   VM/vm-display-fbdev.so
    59320  2021-05-30 22:01   VM/B3DAcceleratorPlugin.so
    51088  2021-05-30 22:01   VM/UnixOSProcessPlugin.so
    10080  2021-05-30 22:01   VM/ImmX11Plugin.so
    51096  2021-05-30 22:01   VM/SqueakFFIPrims.so
    18416  2021-05-30 22:01   VM/MIDIPlugin.so
    14384  2021-05-30 22:01   VM/vm-sound-pulse.so
    55136  2021-05-30 22:01   VM/VectorEnginePlugin.so
   126760  2021-05-30 22:01   VM/vm-display-X11.so
    10016  2021-05-30 22:01   VM/DESPlugin.so
     6192  2021-05-30 22:01   VM/vm-sound-null.so
    34664  2021-05-30 22:01   VM/SqueakSSL.so
    39232  2021-05-30 22:01   VM/vm-sound-OSS.so
    10016  2021-05-30 22:01   VM/MD5Plugin.so
    23240  2021-05-30 22:01   VM/vm-sound-ALSA.so
    10672  2021-05-30 22:01   VM/vm-display-null.so
    91480  2020-10-16 10:27   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/TerseGuide.pck.st
     7763  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/DevTools/SUnit XML reports.pck.st
    22504  2020-03-04 21:32   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/DevTools/MessageChainBrowsers.pck.st
   395038  2020-10-16 10:27   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/DevTools/Assessments.pck.st
    22158  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/DevTools/ClassCommentBrowser.pck.st
     2207  2020-08-24 20:31   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/AllPackages.pck.st
  1062365  2021-05-06 17:36   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/BaseImageTests.pck.st
    14907  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/JSON.pck.st
    89551  2020-12-30 13:52   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/YAXO.pck.st
    17745  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-WebClient-SqueakSSL.pck.st
   130599  2021-05-30 17:05   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/VectorEnginePlugin.pck.st
    22302  2020-05-15 14:36   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Complex.pck.st
     9852  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Identities-UUID.pck.st
     5021  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-Identities-UUID.pck.st
      824  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-Color-Extras.pck.st
    60627  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Cryptography-DigitalSignatures.pck.st
    27353  2021-01-08 22:29   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Color-Extras.pck.st
    12022  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-Cryptography-DigitalSignatures.pck.st
    23787  2020-05-15 14:36   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-Complex.pck.st
   355258  2021-05-30 17:05   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/VectorGraphics.pck.st
   441184  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Sound.pck.st
    59853  2019-01-29 21:10   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/NamedColors/CSS3-NamedColors.pck.st
    18152  2019-01-29 21:10   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/NamedColors/NBSISCC-NamedColors.pck.st
    54683  2019-01-29 21:10   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/NamedColors/XKCD-NamedColors.pck.st
     9531  2019-01-29 21:10   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/NamedColors/Crayon-NamedColors.pck.st
    10890  2019-01-29 21:10   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/NamedColors/CSS2-NamedColors.pck.st
     2036  2020-10-25 15:31   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Wallpaper.pck.st
     7119  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-JSON.pck.st
     2427  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-YAXO.pck.st
     6215  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-Compression.pck.st
   178462  2021-04-14 19:52   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Compression.pck.st
   249200  2021-01-18 21:22   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/WebClient.pck.st
     2474  2019-12-06 21:00   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/PerformanceImprovements.pck.st
    94433  2020-12-08 22:18   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Graphics-Files-Additional.pck.st
    52025  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/Tests-WebClient.pck.st
   664604  2020-03-04 21:32   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Features/History-VectorGraphics.pck.st
      248  2019-03-15 18:44   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/__Refactoring-TestData__.pck.st
    39584  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Goodies.pck.st
     1615  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/CorePackages.pck.st
   931491  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/OpenCL.pck.st
     3618  2019-05-29 12:26   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Collections-TwoAndEightByteArrays.pck.st
    33152  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/ExtendedClipboard.pck.st
   100363  2019-10-09 16:14   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/FFI.pck.st
    30096  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Tests-FFI.pck.st
     4673  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Tests-OpenCL.pck.st
    10153  2020-05-08 14:57   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Immutability.pck.st
    11975  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Tests-Immutability.pck.st
     2458  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Tests-Collections-CompactArrays.pck.st
     3642  2020-10-24 17:59   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Tests-ExtendedClipboard.pck.st
    22065  2020-10-23 15:05   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Collections-CompactArrays.pck.st
   127386  2019-05-25 17:42   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/System/Network-Kernel.pck.st
    20760  2020-02-03 17:49   Packages/Cuis/Cuis-Smalltalk-Dev/Packages/Theme-Themes.pck.st
    86866  2021-03-22 21:20   Packages/Cuis/Cuis-Smalltalk-Dev/CompatibilityPackages/SqueakCompatibility.pck.st
    17894  2020-10-25 15:31   Packages/Cuis/Cuis-Smalltalk-Dev/CompatibilityPackages/Morphic-Deprecated.pck.st
    48093  2021-04-28 13:48   Packages/Cuis/SVG/SVG.pck.st
    53430  2019-05-17 16:57   Packages/Cuis/EnhancedText/Unicode/UniCodesTests.pck.st
   257538  2020-11-20 22:21   Packages/Cuis/EnhancedText/Unicode/UniCodes.pck.st
     3965  2020-05-08 14:57   Packages/Cuis/EnhancedText/Unicode/UniCodesTrueType.pck.st
   162964  2019-05-17 16:57   Packages/Cuis/EnhancedText/Ropes/Ropes.pck.st
    24515  2020-07-23 17:45   Packages/Cuis/Erudite/PetitParserTutorial.pck.st
    57659  2021-03-07 16:35   Packages/Cuis/Erudite/MorphicBook.pck.st
     4060  2019-10-09 16:37   Packages/Cuis/Erudite/PetitParserBinding.pck.st
      895  2021-03-06 14:53   Packages/Cuis/Erudite/EruditeToolsExtensions.pck.st
   373437  2021-05-11 00:40   Packages/Cuis/Erudite/Erudite.pck.st
    69533  2020-10-16 10:27   Packages/Cuis/StyledTextEditor/RTFTests.pck.st
     6526  2019-05-17 16:56   Packages/Cuis/StyledTextEditor/StyledTextWiki.pck.st
     8701  2019-05-17 16:56   Packages/Cuis/StyledTextEditor/RTFExporting.pck.st
     4888  2019-05-17 16:56   Packages/Cuis/StyledTextEditor/RTFClipboardTests.pck.st
   191248  2021-02-10 16:42   Packages/Cuis/StyledTextEditor/StyledText.pck.st
     4067  2020-08-24 20:31   Packages/Cuis/StyledTextEditor/StyledTextNotebook.pck.st
    82956  2020-06-12 18:52   Packages/Cuis/StyledTextEditor/RTFImporting.pck.st
     4583  2019-10-14 13:36   Packages/Cuis/StyledTextEditor/StyledTextInstaller.pck.st
   453434  2021-05-03 08:23   Packages/Cuis/Measures/Aconcagua/Aconcagua.pck.st
   410116  2020-05-08 14:57   Packages/Cuis/Calendars/Chalten/Chalten.pck.st
    21057  2020-12-08 22:18   Packages/Cuis/CodeExamples/TrafficLight/TrafficLight.pck.st
    29462  2020-06-11 10:32   Packages/Cuis/CodeExamples/Patterns/Code-Patterns.pck.st
    15389  2020-10-17 12:44   Packages/Cuis/CodeExamples/IA-EN-Dictionary/IA-EN-Dictionary.pck.st
    40528  2019-05-17 16:54   Packages/Cuis/Games/Life/Life.pck.st
    10697  2019-05-17 16:54   Packages/Cuis/Games/SecretSanta/SecretSanta.pck.st
    11820  2020-06-19 18:53   Packages/Cuis/Games/AnagramAid/AnagramAid.pck.st
   317948  2021-04-06 12:00   Packages/Cuis/Games/Solitaire/Morphic-Games-Solitaire.pck.st
   153249  2020-06-19 18:53   Packages/Cuis/Games/Construction/Construction.pck.st
    97817  2020-10-16 10:27   Packages/Cuis/Games/GameClasses/Game.pck.st
    47439  2020-04-29 22:55   Packages/Cuis/Morphic/WaitSpinner.pck.st
    22726  2020-06-12 18:50   Packages/Cuis/Morphic/Pen.pck.st
     2955  2020-12-08 22:18   Packages/Cuis/Morphic/Avatar.pck.st
     8127  2021-01-05 20:12   Packages/Cuis/Morphic/WheelMorph.pck.st
   178019  2021-05-07 18:06   Packages/Cuis/Morphic/Morphic-Misc1/Morphic-Misc1.pck.st
    23481  2020-10-16 10:28   Packages/Cuis/Morphic/BouncingAtoms.pck.st
    45306  2021-01-05 20:12   Packages/Cuis/Morphic/ColorEditor/Morphic-ColorEditor.pck.st
    58662  2021-01-05 20:12   Packages/Cuis/Morphic/Morphic-Widgets-Extras.pck.st
    78300  2021-05-09 21:59   Packages/Cuis/Morphic/MetaProperties/Morph-MetaProperties.pck.st
     3799  2020-10-16 10:28   Packages/Cuis/Morphic/Dice.pck.st
   114938  2020-06-21 20:12   Packages/Cuis/Cairo/Cairo.pck.st
    12274  2020-06-21 20:12   Packages/Cuis/Cairo/FFIGen.pck.st
    21124  2020-06-21 20:12   Packages/Cuis/Cairo/CairoMorphic.pck.st
   553151  2021-01-21 11:34   Packages/Cuis/OSProcess/OSProcess.pck.st
    27510  2019-06-19 21:01   Packages/Cuis/Numerics/Statistics.pck.st
      931  2020-04-17 21:32   Packages/Cuis/Numerics/LinearAlgebra_OpenCLExtensions.pck.st
    86909  2020-09-06 13:04   Packages/Cuis/Numerics/LinearAlgebra.pck.st
   372533  2021-05-11 00:40   Packages/Cuis/Numerics/ImageProcessing.pck.st
     1908  2020-04-17 21:32   Packages/Cuis/Numerics/LinearAlgebra_CompactArrays.pck.st
    41393  2020-09-06 13:04   Packages/Cuis/Numerics/SignalProcessing.pck.st
    87888  2020-09-06 13:04   Packages/Cuis/Numerics/Math 3D.pck.st
     5668  2019-06-19 21:01   Packages/Cuis/Numerics/ProbabilityDistributions.pck.st
     7402  2019-05-17 16:55   Packages/Cuis/Numerics/NumericalMethods.pck.st
   164239  2021-05-20 16:16   Packages/Cuis/GeographicInformationSystems/GeographicDatasets.pck.st
    21260  2021-05-11 00:40   Packages/Cuis/GeographicInformationSystems/Cartography.pck.st
   102186  2021-01-06 21:17   Packages/Cuis/Parsers/PetitParser/PetitTests.pck.st
    87238  2019-05-17 16:56   Packages/Cuis/Parsers/PetitParser/PetitParser.pck.st
     3201  2020-10-16 10:28   Packages/Cuis/Parsers/PetitParser/PetitTutorial.pck.st
    64028  2019-07-07 22:22   Packages/Cuis/Machine-Learning/Packages/TensorFlow-Examples.pck.st
   246149  2019-07-07 22:22   Packages/Cuis/Machine-Learning/Packages/TensorFlow-Kernel.pck.st
   366366  2019-05-17 16:54   Packages/Cuis/AMQP/Amqp.pck.st
    18999  2019-05-17 16:55   Packages/Cuis/firmata/Firmata.pck.st
  3477774  2021-05-30 17:05   Packages/Cuis/VMMaker/VMMaker.pck.st
   135578  2021-03-03 12:31   Packages/Cuis/VMMaker/Tests-VMMaker.pck.st
    81087  2021-03-03 12:31   Packages/Cuis/VMMaker/Balloon.pck.st
    20701  2021-03-23 09:17   Packages/Cuis/VMMaker/Compatibility-VMMaker.pck.st
    13723  2020-12-20 22:10   Packages/Cuis/TheCuisBook/Spacewar!.pck.st
    31222  2021-03-22 18:43   Packages/Haver/haver/modules/ClassBuilding.pck.st
    90033  2021-05-22 13:25   Packages/Haver/haver/modules/ModulesTools.pck.st
    38673  2021-05-17 13:32   Packages/Haver/haver/modules/ModuleAwareTools.pck.st
   151799  2021-05-22 13:25   Packages/Haver/haver/modules/Modules.pck.st
    26579  2021-05-17 13:32   Packages/Haver/haver/modules/HaverCompiler.pck.st
    20784  2021-05-04 17:58   Packages/Haver/haver/modules/ModulesRefactorings.pck.st
    87999  2021-05-30 23:30   Packages/Haver/haver/db/PlanE.pck.st
    24795  2021-05-31 00:09   Packages/Haver/haver/db/PlanETest.pck.st
    20743  2021-05-22 13:25   Packages/Haver/haver/transactions/WriteBarrier.pck.st
    20072  2021-05-22 13:25   Packages/Haver/haver/transactions/Transactions.pck.st
     9424  2021-03-22 18:43   Packages/Haver/haver/transactions/WriteBarrierTest.pck.st
     7349  2021-05-22 13:25   Packages/Haver/haver/transactions/TransactionsTest.pck.st
    15941  2021-05-30 23:39   Packages/Haver/haver/packaging/Distributor.pck.st
    10078  2021-04-19 16:55   Packages/Haver/haver/packaging/FileFinderTest.pck.st
    60620  2021-04-28 22:30   Packages/Haver/haver/packaging/FileFinder.pck.st
    21857  2021-04-29 22:01   Packages/Haver/haver/communication/MQTTClientTest.pck.st
    99025  2021-04-29 22:00   Packages/Haver/haver/communication/MQTTClient.pck.st
     1923  2021-05-04 17:58   Packages/Haver/haver/communication/KademliaTest.pck.st
     6880  2021-05-04 17:58   Packages/Haver/haver/communication/Kademlia.pck.st
     6474  2021-05-04 17:58   Packages/Haver/haver/communication/Chat.pck.st
    15904  2021-05-27 23:03   Packages/Haver/haver/Haverize.pck.st
    12527  2020-12-05 14:46   Packages/Haver/haver/ui/DNDForIndentingListItemMorph.pck.st
    13584  2021-03-22 18:43   Packages/Haver/haver/ui/DNDIndentingListItemMorph.pck.st
     6280  2021-03-22 18:43   Packages/Haver/haver/ui/SystemMorphs.pck.st
    10989  2021-03-22 18:43   Packages/Haver/haver/actions/ActionBuilderTest.pck.st
    58133  2021-03-20 15:25   Packages/Haver/haver/actions/ActionBuilder.pck.st
    10496  2020-12-09 12:09   Packages/Haver/environments/EnvironmentAwarenessTest.pck.st
    14122  2021-03-01 10:31   Packages/Haver/environments/EnvironmentAwareness.pck.st
     5613  2020-12-09 16:59   Packages/Haver/environments/SimpleEnvironmentsTest.pck.st
     1749  2020-12-09 16:52   Packages/Haver/environments/EnvironmentsBaseTest.pck.st
    15656  2020-12-05 14:46   Packages/Haver/environments/Environments.pck.st
    30686  2021-05-17 22:41   Packages/Haver/environments/SimpleEnvironments.pck.st
    32221  2021-03-23 21:28   Packages/Haver/environments/EnvironmentsDocumentation.pck.st
    25266  2021-03-08 21:49   Packages/Haver/environments/EnvironmentsBase.pck.st
   127411  2020-12-06 15:20   Packages/ThirdParty/Cuis-Smalltalk-RegEx/Regex-Core.pck.st
    46666  2020-12-06 15:20   Packages/ThirdParty/Cuis-Smalltalk-RegEx/Regex-Tests.pck.st
   241906  2021-05-30 21:02   Packages/ThirdParty/Cuis-Smalltalk-X-ray/X-ray.pck.st
    69280  2021-03-04 20:17   CoreChanges/CuisCoreEnvironmentSupport.cs.st
 34187872  2021-05-30 23:33   Image/Haver5.0-4619.image
 13905597  2021-05-30 23:33   Image/Haver5.0-4619.changes
      737  2020-05-26 10:27   Image/CoreUpdates/4180-InspectorTolerance-AndresValloud-2020May24-20h58m-sqr.001.cs.st
    32602  2020-01-01 15:45   Image/CoreUpdates/3998-PushUpDownInstanceVariable-HernanWilkinson-2019Dec26-19h05m-HAW.1.cs.st
    25638  2019-12-06 21:00   Image/CoreUpdates/3964-AutoCompleteRefactoring-HernanWilkinson-2019Dec04-12h00m-HAW.1.cs.st
     2728  2020-03-10 19:20   Image/CoreUpdates/4060-fileName-fileEntry-fix-JuanVuletich-2020Mar06-11h06m-jmv.001.cs.st
     4461  2020-08-24 20:31   Image/CoreUpdates/4359-FixStartupGlitches-JuanVuletich-2020Aug21-19h24m-jmv.002.cs.st
      242  2020-05-22 20:30   Image/CoreUpdates/4162-yetAnotherLayoutFix-JuanVuletich-2020May21-19h46m-jmv.001.cs.st
     2081  2020-11-12 10:20   Image/CoreUpdates/4448-NonMovableMorphFixes-JuanVuletich-2020Nov10-16h30m-jmv.001.cs.st
      345  2020-06-02 15:11   Image/CoreUpdates/4192-FixTaskbarEndDuringPreview-again-JuanVuletich-2020May27-00h04m-jmv.001.cs.st
     1155  2021-04-19 19:56   Image/CoreUpdates/4570-NewerPackagesWarning-fix-JuanVuletich-2021Apr19-12h33m-jmv.001.cs.st
      597  2021-04-06 20:47   Image/CoreUpdates/4554-RemoveUnnededReturn-JuanVuletich-2021Apr05-12h31m-jmv.001.cs.st
     1099  2020-03-04 21:32   Image/CoreUpdates/4044-FixReferencesToGlobalNames-JuanVuletich-2020Feb19-12h21m-jmv.1.cs.st
     2380  2020-04-01 13:48   Image/CoreUpdates/4096-ExtractMethodFix-NahuelGarbezza-2020Mar30-17h23m-RNG.001.cs.st
     1339  2021-04-28 13:48   Image/CoreUpdates/4571-AllowMissingLeadingZeroForFloatNumberFromString-JuanVuletich-2021Apr27-15h15m-jmv.001.cs.st
     2830  2020-08-06 18:20   Image/CoreUpdates/4310-Morphic-VG-JuanVuletich-2020Jul27-14h44m-jmv.001.cs.st
     7739  2020-04-05 13:44   Image/CoreUpdates/4104-FasterPackageLoad-JuanVuletich-2020Apr04-13h03m-jmv.001.cs.st
     6326  2020-04-01 13:48   Image/CoreUpdates/4081-Preferences-verbose-logging-PhilBellalouna-2020Mar20-21h02m-pb.001.cs.st
     1300  2020-10-27 10:44   Image/CoreUpdates/4430-kbdTestTweak-JuanVuletich-2020Oct26-11h44m-jmv.001.cs.st
      629  2020-08-06 18:20   Image/CoreUpdates/4289-Morphic-VG-JuanVuletich-2020Jul23-11h43m-jmv.001.cs.st
     2671  2021-05-06 08:02   Image/CoreUpdates/4586-BrowserCommentAdjusterFix-JuanVuletich-2021May05-15h12m-jmv.001.cs.st
      894  2020-05-26 10:27   Image/CoreUpdates/4185-TaskbarScaleOneHalf-JuanVuletich-2020May24-21h22m-jmv.001.cs.st
      626  2020-06-30 13:38   Image/CoreUpdates/4246-ParserRefactoring-HernanWilkinson-2020Jun27-19h09m-HAW.001.cs.st
     8217  2020-06-30 13:38   Image/CoreUpdates/4243-ParserRefactoring-HernanWilkinson-2020Jun27-18h34m-HAW.001.cs.st
     3109  2021-05-20 16:16   Image/CoreUpdates/4599-Comments-JuanVuletich-2021May16-10h08m-jmv.001.cs.st
      729  2021-05-11 00:40   Image/CoreUpdates/4593-MorphicDrawFix-JuanVuletich-2021May10-14h22m-jmv.001.cs.st
     1473  2020-05-08 14:57   Image/CoreUpdates/4136-FloatStoreOnImprovement-HernanWilkinson-2020May03-12h35m-HAW.001.cs.st
      313  2020-04-01 13:48   Image/CoreUpdates/4098-should-be-subclassResponsibility-PhilBellalouna-2020Mar30-19h39m-pb.001.cs.st
      505  2020-03-04 21:32   Image/CoreUpdates/4052-AffineTransformation-tweaks-JuanVuletich-2020Feb28-16h46m-jmv.001.cs.st
    15295  2020-03-04 21:32   Image/CoreUpdates/4048-CuisCore-NahuelGarbezza-2020Feb20-08h41m-RNG.1.cs.st
     1181  2020-09-06 13:04   Image/CoreUpdates/4367-CreateAbstractFloatArrayClass-JuanVuletich-2020Sep03-17h18m-jmv.001.cs.st
     1006  2020-10-05 17:30   Image/CoreUpdates/4388-RotateHandle-doNotScales-JuanVuletich-2020Sep29-11h08m-jmv.001.cs.st
      761  2020-04-01 13:48   Image/CoreUpdates/4092-notSameMethodsAfterCompilingAll-HernanWilkinson-2020Mar30-15h36m-HAW.001.cs.st
     2684  2021-05-20 16:16   Image/CoreUpdates/4603-BoundsUpdatesFixes-JuanVuletich-2021May16-10h30m-jmv.001.cs.st
     4660  2020-05-26 10:27   Image/CoreUpdates/4173-OrderedCollectionInspector-rename-AndresValloud-2020May22-19h53m-sqr.001.cs.st
    52341  2020-01-01 15:45   Image/CoreUpdates/3991-ExtractMethod-NahuelGarbezza-2019Dec20-20h38m-RNG.1.cs.st
     5678  2021-04-09 11:10   Image/CoreUpdates/4563-displayBounds-refactor-JuanVuletich-2021Apr08-16h06m-jmv.001.cs.st
     5233  2020-06-03 22:26   Image/CoreUpdates/4204-DrawingArtifactsFix-JuanVuletich-2020Jun03-14h21m-jmv.001.cs.st
      887  2020-02-03 17:49   Image/CoreUpdates/4022-BitBltCanvasCleanup5-JuanVuletich-2020Jan11-15h21m-jmv.1.cs.st
     1443  2020-04-01 13:48   Image/CoreUpdates/4078-ClassRenameChangeReification-HernanWilkinson-2020Mar24-11h26m-HAW.001.cs.st
      725  2020-01-01 15:45   Image/CoreUpdates/3976-ParseNotificationAccessing-HernanWilkinson-2019Dec17-10h46m-HAW.1.cs.st
      511  2020-08-06 18:20   Image/CoreUpdates/4266-HaloFix-JuanVuletich-2020Jul19-15h56m-jmv.001.cs.st
      270  2020-08-06 18:20   Image/CoreUpdates/4294-Morphic-VG-JuanVuletich-2020Jul23-16h05m-jmv.001.cs.st
      739  2021-05-30 17:05   Image/CoreUpdates/4609-HaloSmallRefactor-JuanVuletich-2021May24-09h42m-jmv.001.cs.st
     6832  2020-02-03 17:49   Image/CoreUpdates/4005-ExtractMethodFix-NahuelGarbezza-2020Jan02-21h40m-RNG.1.cs.st
     2822  2020-06-30 13:38   Image/CoreUpdates/4248-FindClassRefactoring-HernanWilkinson-2020Jun27-19h22m-HAW.001.cs.st
     1110  2020-08-06 18:20   Image/CoreUpdates/4325-Morph-copy-keepFlags-JuanVuletich-2020Jul31-16h59m-jmv.001.cs.st
      244  2020-11-12 10:20   Image/CoreUpdates/4449-ItsLabelMorphNotStringMorph-JuanVuletich-2020Nov11-11h58m-jmv.001.cs.st
     4634  2020-08-06 18:20   Image/CoreUpdates/4303-Morphic-VG-JuanVuletich-2020Jul26-19h35m-jmv.001.cs.st
      539  2021-05-30 17:05   Image/CoreUpdates/4610-SortSendersBySelector-JuanVuletich-2021May24-12h12m-jmv.001.cs.st
     3610  2020-01-01 15:45   Image/CoreUpdates/3988-CodeNodeRefactoring3-HernanWilkinson-2019Dec23-08h29m-HAW.1.cs.st
      823  2020-04-29 22:54   Image/CoreUpdates/4117-CascadeMessagesRanges2-NahuelGarbezza-2020Apr14-20h53m-RNG.001.cs.st
      319  2021-03-22 21:20   Image/CoreUpdates/4537-PluggableListMorphOfMany-fix-JuanVuletich-2021Mar17-09h53m-jmv.001.cs.st
    13437  2021-01-05 20:12   Image/CoreUpdates/4517-remove-dispatchWithlocalPosition-JuanVuletich-2021Jan05-12h08m-jmv.001.cs.st
      305  2020-05-24 16:39   Image/CoreUpdates/4166-Mark-FillInTheBlankMorph-asObsolete-JuanVuletich-2020May23-21h07m-jmv.001.cs.st
     5299  2020-06-30 13:38   Image/CoreUpdates/4241-tinyBenchmarks-update-JuanVuletich-2020Jun18-12h17m-jmv.001.cs.st
      702  2021-03-28 22:51   Image/CoreUpdates/4548-AddHaloFix-JuanVuletich-2021Mar26-16h06m-jmv.001.cs.st
     1565  2020-02-03 17:49   Image/CoreUpdates/4017-Semaphore-class-comment-PhilBellalouna-2020Jan10-00h40m-pb.1.cs.st
    25066  2020-02-03 17:49   Image/CoreUpdates/4003-RefactoringAndBugFixingOfChangeSelectorRefactoring-HernanWilkinson-2019Dec31-15h01m-HAW.1.cs.st
     1461  2020-02-03 17:49   Image/CoreUpdates/4010-Browser-cleanup-JuanVuletich-2020Jan09-17h51m-jmv.1.cs.st
     1033  2020-10-28 12:21   Image/CoreUpdates/4437-GrabMorphWithHandFix-JuanVuletich-2020Oct27-11h39m-jmv.001.cs.st
     1127  2020-08-06 18:20   Image/CoreUpdates/4332-Color-fromHex-enh-JuanVuletich-2020Aug03-17h30m-jmv.001.cs.st
    13801  2020-06-24 10:14   Image/CoreUpdates/4231-BacktickParseNode-HernanWilkinson-2020Jun18-09h33m-HAW.001.cs.st
     1646  2020-09-25 09:28   Image/CoreUpdates/4379-requestOrCancel-HernanWilkinson-2020Sep23-18h39m-HAW.001.cs.st
      367  2021-04-06 20:47   Image/CoreUpdates/4557-FixCollapseBug-JuanVuletich-2021Apr05-12h43m-jmv.001.cs.st
     5078  2020-01-01 15:45   Image/CoreUpdates/3999-RenameSelectorWithEmptyImplementors-HernanWilkinson-2019Dec30-12h36m-HAW.1.cs.st
     3040  2020-01-01 15:45   Image/CoreUpdates/3986-CodeNodeRefactoring-HernanWilkinson-2019Dec23-07h12m-HAW.1.cs.st
     1630  2020-10-16 10:27   Image/CoreUpdates/4398-MakeBorderedRectMorphSubclassesBeWidgets-JuanVuletich-2020Oct12-20h38m-jmv.001.cs.st
    16125  2020-04-01 13:48   Image/CoreUpdates/4099-use-morph-bounds-PhilBellalouna-2020Mar17-13h35m-pb.001.cs.st
     1484  2021-05-04 10:16   Image/CoreUpdates/4584-MorphGrabFix-retry-JuanVuletich-2021May03-17h36m-jmv.001.cs.st
    17234  2020-01-01 15:45   Image/CoreUpdates/3970-MoveMethodRefactoring-HernanWilkinson-2019Dec14-10h03m-HAW.1.cs.st
     7981  2020-01-01 15:45   Image/CoreUpdates/3965-MoveToInsClassSide-LeandroMartinYampolsky-2019Dec08-14h41m-LMY.1.cs.st
     1827  2021-04-06 20:47   Image/CoreUpdates/4556-MenusStayUpIfHalo-JuanVuletich-2021Apr05-12h40m-jmv.001.cs.st
     4138  2020-02-03 17:49   Image/CoreUpdates/4030-InspectorImprovement-NahuelGarbezza-2020Jan19-23h10m-RNG.1.cs.st
     1199  2020-01-01 15:45   Image/CoreUpdates/3968-ImprovementOnRemoveUnusedTemps-HernanWilkinson-2019Dec12-15h46m-HAW.1.cs.st
     2247  2020-08-06 18:20   Image/CoreUpdates/4257-MorphicRefactor-JuanVuletich-2020Jul10-23h15m-jmv.001.cs.st
      619  2020-05-26 10:27   Image/CoreUpdates/4183-loadOnlyLatin-releaseFontCachedData-JuanVuletich-2020May24-10h48m-jmv.001.cs.st
     1158  2020-12-28 21:00   Image/CoreUpdates/4497-GeometryTransformation-enh-JuanVuletich-2020Dec23-10h11m-jmv.001.cs.st
     1547  2020-10-16 10:27   Image/CoreUpdates/4411-KernelMorphsReorganization-JuanVuletich-2020Oct15-09h03m-jmv.001.cs.st
      787  2020-11-19 18:56   Image/CoreUpdates/4455-extentChangedCoda-JuanVuletich-2020Nov15-14h07m-jmv.001.cs.st
     4122  2020-11-19 18:56   Image/CoreUpdates/4461-ColorPalette-titleHackRemoval-JuanVuletich-2020Nov19-13h15m-jmv.001.cs.st
     1252  2020-08-06 18:20   Image/CoreUpdates/4300-Morphic-VG-JuanVuletich-2020Jul25-09h25m-jmv.001.cs.st
    14354  2020-04-01 13:48   Image/CoreUpdates/4085-TemporariesDefinitionASTNode-NahuelGarbezza-2020Mar07-22h12m-RNG.001.cs.st
      570  2020-09-07 19:22   Image/CoreUpdates/4373-MessageNames-fix-GeraldKlix-2020Sep07-13h08m-KLG.001.cs.st
     5230  2020-12-28 21:00   Image/CoreUpdates/4498-MorphicCanvas-additional-drawString-protocol-JuanVuletich-2020Dec23-10h12m-jmv.001.cs.st
     2903  2020-04-01 13:48   Image/CoreUpdates/4083-Canvas-clipRect-PhilBellalouna-2020Mar20-12h41m-pb.001.cs.st
     5665  2020-08-31 10:52   Image/CoreUpdates/4365-BetterClassCreationFeedback-HernanWilkinson-2020Aug29-18h09m-HAW.001.cs.st
     1107  2020-08-06 18:20   Image/CoreUpdates/4318-Morphic-VG-JuanVuletich-2020Jul28-12h16m-jmv.001.cs.st
     1103  2020-11-19 18:56   Image/CoreUpdates/4464-FormCreationCleanup-JuanVuletich-2020Nov19-13h37m-jmv.001.cs.st
     5230  2021-01-16 22:51   Image/CoreUpdates/4524-MorphicEventsCleanup-JuanVuletich-2021Jan15-16h08m-jmv.003.cs.st
     1997  2020-10-16 10:27   Image/CoreUpdates/4399-MakeRectangleLikeMorphSubclassesBeWidgets-JuanVuletich-2020Oct12-20h53m-jmv.001.cs.st
     6956  2020-08-06 18:20   Image/CoreUpdates/4339-DamageRecorder-redesign-JuanVuletich-2020Aug05-20h47m-jmv.001.cs.st
     1623  2020-04-17 21:31   Image/CoreUpdates/4114-CoupleOfClassComments-JuanVuletich-2020Apr15-17h22m-jmv.001.cs.st
      205  2021-01-21 11:34   Image/CoreUpdates/4527-CuisCore-NicolasPapagnaMaldonado-2021Jan20-17h23m-NPM.001.cs.st
     3578  2020-11-19 18:56   Image/CoreUpdates/4456-DisableWorkspaceShoutBoldItalic-JuanVuletich-2020Nov15-14h26m-jmv.001.cs.st
     2021  2020-08-06 18:20   Image/CoreUpdates/4267-fullContainsPoint-JuanVuletich-2020Jul19-17h15m-jmv.001.cs.st
     1449  2020-10-13 16:25   Image/CoreUpdates/4396-ResizeFromMenu-removal-JuanVuletich-2020Oct12-21h29m-jmv.001.cs.st
     3762  2020-03-28 20:54   Image/CoreUpdates/4071-Font-smallSimplification-JuanVuletich-2020Mar18-10h56m-jmv.001.cs.st
      688  2020-07-13 16:59   Image/CoreUpdates/4252-article-tweaks-LeandroCaniglia-2020Jul05-16h47m-LC.001.cs.st
     1860  2020-03-04 21:32   Image/CoreUpdates/4056-CodeFileBrowser-does-not-return-instance-PhilBellalouna-2020Mar03-19h45m-pb.001.cs.st
     1296  2020-03-12 14:35   Image/CoreUpdates/4066-AutoNumberUserChangesPrefernce-JuanVuletich-2020Mar11-14h32m-jmv.001.cs.st
    14562  2020-10-16 10:27   Image/CoreUpdates/4408-FixReferencesToBorderedRectMorph-JuanVuletich-2020Oct14-21h46m-jmv.001.cs.st
      736  2021-01-05 20:12   Image/CoreUpdates/4514-avoid-fullContainsPoint-JuanVuletich-2021Jan05-11h33m-jmv.001.cs.st
      706  2020-04-05 13:44   Image/CoreUpdates/4105-removeUnnededProgressBar-JuanVuletich-2020Apr04-12h47m-jmv.001.cs.st
      445  2020-05-26 10:27   Image/CoreUpdates/4177-RemoveExtraneousExceptionHandler-AndresValloud-2020May24-20h19m-sqr.001.cs.st
     3056  2020-04-17 21:31   Image/CoreUpdates/4111-AddIvarIdToMorph-p2-JuanVuletich-2020Apr06-10h53m-jmv.001.cs.st
      342  2021-04-29 08:43   Image/CoreUpdates/4575-valueEnsured-JuanVuletich-2021Apr13-13h50m-jmv.001.cs.st
     2691  2020-01-01 15:45   Image/CoreUpdates/3973-ParserUnusedVaraiblesRefactoring-HernanWilkinson-2019Dec17-09h12m-HAW.1.cs.st
     3654  2020-11-26 21:50   Image/CoreUpdates/4481-correctLocationWhenEmbeddingMorphs-JuanVuletich-2020Nov26-15h03m-jmv.001.cs.st
     2261  2020-06-12 18:50   Image/CoreUpdates/4216-Font-Cleanup-JuanVuletich-2020Jun11-10h21m-jmv.001.cs.st
      496  2020-02-03 17:49   Image/CoreUpdates/4033-FixBugIntroducedIn4011-JuanVuletich-2020Jan28-09h55m-jmv.1.cs.st
      895  2020-10-16 10:27   Image/CoreUpdates/4404-LayoutMorphBeWidget-02-JuanVuletich-2020Oct12-21h09m-jmv.001.cs.st
     1668  2021-05-11 00:40   Image/CoreUpdates/4591-PreferPointOrientedProtocol-JuanVuletich-2021May10-12h30m-jmv.001.cs.st
     1880  2020-06-19 18:52   Image/CoreUpdates/4226-FontMenuFix-JuanVuletich-2020Jun16-19h49m-jmv.001.cs.st
      564  2020-12-08 22:18   Image/CoreUpdates/4485-ColorForm-fix-JuanVuletich-2020Dec08-08h47m-jmv.001.cs.st
    17033  2020-08-06 18:20   Image/CoreUpdates/4272-Morphic-VG-JuanVuletich-2020Jul22-10h15m-jmv.001.cs.st
     2019  2020-11-19 18:56   Image/CoreUpdates/4453-AvoidUnnededRestyles-JuanVuletich-2020Nov15-10h26m-jmv.001.cs.st
    15245  2020-06-02 15:11   Image/CoreUpdates/4193-AnnotationsTweaks-LucianoEstebanNotarfrancesco-2020May27-10h45m-len.001.cs.st
     1050  2020-09-06 13:04   Image/CoreUpdates/4372-ifCurtailed-comment-JuanVuletich-2020Sep01-16h49m-jmv.001.cs.st
     8106  2020-11-20 22:21   Image/CoreUpdates/4474-ForbidInnerTextMorphDuplication-JuanVuletich-2020Nov20-15h38m-jmv.001.cs.st
      437  2020-09-25 09:28   Image/CoreUpdates/4380-MenuMorph-label-GeraldKlix-2020Sep24-11h19m-jmv.001.cs.st
      783  2020-02-03 17:49   Image/CoreUpdates/4007-InnerListMorph-cleanup-JuanVuletich-2020Jan09-16h37m-jmv.1.cs.st
     1154  2020-10-25 15:31   Image/CoreUpdates/4426-RemovePopUpAfterInstallUpdates-JuanVuletich-2020Oct24-23h01m-jmv.001.cs.st
     2330  2020-08-06 18:20   Image/CoreUpdates/4319-Morphic-VG-JuanVuletich-2020Jul28-12h23m-jmv.001.cs.st
     3492  2020-08-06 20:38   Image/CoreUpdates/4344-WorldDrawRefactor-JuanVuletich-2020Aug06-15h19m-jmv.001.cs.st
      417  2020-03-12 14:35   Image/CoreUpdates/4069-keepPaddingIfAtAllPossible-JuanVuletich-2020Mar11-15h30m-jmv.001.cs.st
     1924  2020-11-26 07:40   Image/CoreUpdates/4479-Morph-drawAsError-fixes-JuanVuletich-2020Nov25-15h57m-jmv.001.cs.st
     1126  2020-05-15 14:36   Image/CoreUpdates/4145-ThirtyTwoBitSlotsObject-tweaks-JuanVuletich-2020May14-17h16m-jmv.001.cs.st
     3073  2020-08-06 18:20   Image/CoreUpdates/4320-lastPosition-Hand-ivar-JuanVuletich-2020Jul31-15h24m-jmv.001.cs.st
     2505  2020-08-06 18:20   Image/CoreUpdates/4337-DamageRecorder-redesign-JuanVuletich-2020Aug05-00h27m-jmv.001.cs.st
      227  2020-10-31 14:06   Image/CoreUpdates/4438-WorkspaceInitializeBindings-GeraldKlix-2020Oct31-09h02m-KLG.001.cs.st
      860  2020-10-05 17:30   Image/CoreUpdates/4385-SmartRefStream-FloatArray-Float32Array-JuanVuletich-2020Sep29-10h39m-jmv.001.cs.st
      565  2020-01-01 15:45   Image/CoreUpdates/4001-TweakToTerminatedProcessDebugMessage-JuanVuletich-2019Dec31-17h31m-jmv.1.cs.st
     5403  2020-04-01 13:48   Image/CoreUpdates/4090-TemporariesDefinitionASTVisitor-NahuelGarbezza-2020Mar29-16h26m-RNG.1.cs.st
     4470  2020-02-03 17:49   Image/CoreUpdates/4006-Text-cleanup-JuanVuletich-2020Jan09-16h33m-jmv.1.cs.st
      610  2020-01-01 15:45   Image/CoreUpdates/4000-ProgressMorphOutOfScreenFix-HernanWilkinson-2019Dec30-18h32m-HAW.1.cs.st
     1237  2020-06-11 10:32   Image/CoreUpdates/4212-ProgressMorph-fix-JuanVuletich-2020Jun08-11h06m-jmv.001.cs.st
     1195  2020-11-26 21:50   Image/CoreUpdates/4482-grabWithHaloFix-JuanVuletich-2020Nov26-15h18m-jmv.001.cs.st
     1161  2020-11-12 10:20   Image/CoreUpdates/4445-HandMorphFix-JuanVuletich-2020Nov10-14h20m-jmv.001.cs.st
     4391  2020-01-01 15:45   Image/CoreUpdates/3989-TemporaryToInstanceVariableWithArgumentsFix-EricBrandwein-2019Dec22-17h06m-EB.1.cs.st
     1233  2020-04-17 21:31   Image/CoreUpdates/4112-UseOnly32BitCanvas-JuanVuletich-2020Apr05-21h18m-jmv.001.cs.st
     3769  2020-08-24 20:31   Image/CoreUpdates/4355-AutomaticallyScaleHalos-JuanVuletich-2020Aug21-10h36m-jmv.001.cs.st
     2573  2021-04-09 11:10   Image/CoreUpdates/4562-minorTweaks-JuanVuletich-2021Apr08-11h10m-jmv.001.cs.st
     1525  2020-08-24 20:31   Image/CoreUpdates/4358-Comments-JuanVuletich-2020Aug21-16h10m-jmv.001.cs.st
     1879  2020-05-26 10:27   Image/CoreUpdates/4179-InspectorFixes-JuanVuletich-2020May24-20h25m-jmv.001.cs.st
     1984  2020-08-06 18:20   Image/CoreUpdates/4309-Morphic-VG-JuanVuletich-2020Jul27-13h41m-jmv.001.cs.st
     4704  2020-08-06 18:20   Image/CoreUpdates/4285-Morphic-VG-JuanVuletich-2020Jul22-23h10m-jmv.001.cs.st
      820  2020-08-06 18:20   Image/CoreUpdates/4278-Morphic-VG-JuanVuletich-2020Jul22-14h57m-jmv.001.cs.st
     2253  2020-08-06 18:20   Image/CoreUpdates/4308-Morphic-VG-JuanVuletich-2020Jul27-10h31m-jmv.001.cs.st
     9166  2021-04-10 11:15   Image/CoreUpdates/4566-QueryVMplugins-JuanVuletich-2021Apr09-11h39m-jmv.001.cs.st
     6223  2021-03-22 21:20   Image/CoreUpdates/4535-Canvas-String-Protocol-Cleanup-JuanVuletich-2021Mar16-08h29m-jmv.001.cs.st
     1167  2020-08-24 20:31   Image/CoreUpdates/4357-TranscriptGlitchFix-JuanVuletich-2020Aug21-12h34m-jmv.001.cs.st
     2128  2020-08-06 18:20   Image/CoreUpdates/4274-Morphic-VG-JuanVuletich-2020Jul22-11h43m-jmv.001.cs.st
    11950  2020-08-06 18:20   Image/CoreUpdates/4334-DamageRecorder-redesign-JuanVuletich-2020Aug04-09h10m-jmv.002.cs.st
      424  2020-08-29 15:17   Image/CoreUpdates/4363-fixSelectWordAnnoyance-JuanVuletich-2020Aug28-20h35m-jmv.001.cs.st
     3979  2020-08-06 18:20   Image/CoreUpdates/4275-Morphic-VG-JuanVuletich-2020Jul22-12h16m-jmv.001.cs.st
     5470  2020-05-22 20:30   Image/CoreUpdates/4152-ParserClanup-JuanVuletich-2020May21-14h10m-jmv.001.cs.st
      959  2020-12-28 21:00   Image/CoreUpdates/4496-SequenceableCollection-withPreviousCyclicDo-JuanVuletich-2020Dec23-10h11m-jmv.001.cs.st
    10229  2020-04-29 22:54   Image/CoreUpdates/4121-String-plurals-indefiniteArticles-LeandroCaniglia-2020Apr25-10h24m-LC.001.cs.st
     2676  2021-04-29 08:43   Image/CoreUpdates/4574-AutoCompletebyParagraphsInWorkspaces-JuanVuletich-2021Apr26-19h11m-jmv.003.cs.st
      249  2020-08-19 17:48   Image/CoreUpdates/4353-enableBackLostChangesOnStartup-JuanVuletich-2020Aug18-16h33m-jmv.001.cs.st
     3582  2021-05-11 00:40   Image/CoreUpdates/4592-fixAFewTypos-JuanVuletich-2021May10-12h33m-jmv.001.cs.st
      643  2021-05-20 16:16   Image/CoreUpdates/4604-FastFloatRounded-JuanVuletich-2021May18-17h14m-jmv.001.cs.st
     5515  2020-06-02 15:11   Image/CoreUpdates/4194-RestoreDnDAndCategoryNamePromptTweak-LucianoEstebanNotarfrancesco-2020May28-11h08m-len.001.cs.st
     8286  2020-05-22 20:30   Image/CoreUpdates/4155-ProportionalLayoutEnh-JuanVuletich-2020May21-15h10m-jmv.001.cs.st
    10648  2020-10-25 15:31   Image/CoreUpdates/4421-RemoveOldPasteUpMorphAndWorldState-JuanVuletich-2020Oct21-17h35m-jmv.001.cs.st
      368  2020-08-06 18:20   Image/CoreUpdates/4329-MinimizedWindowPreviewFix-JuanVuletich-2020Aug03-10h29m-jmv.001.cs.st
    10023  2020-10-25 15:31   Image/CoreUpdates/4418-MorphTweaks-JuanVuletich-2020Oct21-14h49m-jmv.001.cs.st
      580  2020-08-06 18:20   Image/CoreUpdates/4284-Morphic-VG-JuanVuletich-2020Jul22-23h10m-jmv.001.cs.st
    18401  2020-03-10 19:20   Image/CoreUpdates/4061-HonorMinimumExtent-fix-JuanVuletich-2020Mar07-18h23m-jmv.001.cs.st
      971  2020-08-06 18:20   Image/CoreUpdates/4259-tweak-JuanVuletich-2020Jul11-20h55m-jmv.001.cs.st
    19470  2021-01-05 20:12   Image/CoreUpdates/4516-remove-sentTolocalPosition-JuanVuletich-2021Jan05-12h47m-jmv.001.cs.st
     1068  2020-08-06 18:20   Image/CoreUpdates/4315-Morphic-VG-JuanVuletich-2020Jul27-16h50m-jmv.001.cs.st
     1954  2020-11-20 22:21   Image/CoreUpdates/4468-HaloMorph-cleanup-JuanVuletich-2020Nov19-17h26m-jmv.001.cs.st
     3313  2020-01-01 15:45   Image/CoreUpdates/3972-RemoveUnusedTemporariesWithManyVariablesWithSameName-EricBrandwein-2019Dec12-17h56m-EB.1.cs.st
      385  2020-01-01 15:45   Image/CoreUpdates/3995-UIFreezeBugFixWhenSimulatingExecution-HernanWilkinson-2019Dec26-10h01m-HAW.1.cs.st
     7549  2020-09-28 20:02   Image/CoreUpdates/4383-CategoriesWithoutBlanks-HernanWilkinson-2020Sep24-16h22m-HAW.001.cs.st
     9405  2020-03-10 19:20   Image/CoreUpdates/4057-RemovingSendersInRefactoringFix-HernanWilkinson-2020Mar05-19h01m-HAW.002.cs.st
     4937  2020-06-02 15:11   Image/CoreUpdates/4191-ImageSaveTweaks-JuanVuletich-2020May26-17h00m-jmv.001.cs.st
     2148  2020-12-28 21:00   Image/CoreUpdates/4495-FixOccasionalSlowdown-JuanVuletich-2020Dec23-12h43m-jmv.001.cs.st
      586  2021-03-22 21:20   Image/CoreUpdates/4533-AvoidUnintendedTapAndHoldEvents-JuanVuletich-2021Mar13-09h50m-jmv.001.cs.st
     1492  2020-10-16 10:27   Image/CoreUpdates/4412-ChangePastUpMorphSuperclass-JuanVuletich-2020Oct15-19h03m-jmv.001.cs.st
     2589  2020-10-05 17:30   Image/CoreUpdates/4389-BitBltCanvas-roundLineWidth-JuanVuletich-2020Sep28-14h36m-jmv.001.cs.st
     5372  2021-01-05 20:12   Image/CoreUpdates/4513-avoid-morphContainsPoint-JuanVuletich-2021Jan05-11h12m-jmv.001.cs.st
      295  2020-08-06 18:20   Image/CoreUpdates/4312-Morphic-VG-JuanVuletich-2020Jul27-14h54m-jmv.001.cs.st
     2557  2020-10-25 15:31   Image/CoreUpdates/4425-MovableMorphShape-JuanVuletich-2020Oct23-23h01m-jmv.001.cs.st
      763  2020-08-06 18:20   Image/CoreUpdates/4296-Morphic-VG-JuanVuletich-2020Jul24-10h53m-jmv.001.cs.st
    16142  2020-11-19 18:56   Image/CoreUpdates/4463-CursorAndSmallFormsCreation-JuanVuletich-2020Nov19-13h17m-jmv.001.cs.st
     1283  2020-06-03 22:26   Image/CoreUpdates/4203-HaloFixes-LucianoEstebanNotarfrancesco-2020Jun03-13h36m-len.001.cs.st
     1360  2020-04-01 13:48   Image/CoreUpdates/4076-MethodOverrideChangeImprovements-HernanWilkinson-2020Mar24-11h15m-HAW.001.cs.st
    11098  2020-05-22 20:30   Image/CoreUpdates/4153-MathSymbolsUpdate-LucianoEstebanNotarfrancesco-2020May21-14h39m-len.001.cs.st
     3961  2020-03-04 21:32   Image/CoreUpdates/4045-DeclareUndeclaredWithBlockArgumentsFix-EricBrandwein-2020Feb19-12h55m-EB.1.cs.st
    41015  2020-07-20 12:04   Image/CoreUpdates/4254-CuisCore-NahuelGarbezza-2020Jul12-15h05m-RNG.001.cs.st
      558  2020-09-25 09:28   Image/CoreUpdates/4382-Dictionary-deterministic-storeOn-ifPossible-JuanVuletich-2020Sep24-15h49m-jmv.001.cs.st
     6852  2020-08-06 18:20   Image/CoreUpdates/4341-AddHilaireAndThiagoAsKnownUsers-JuanVuletich-2020Aug05-15h14m-jmv.001.cs.st
      857  2020-08-06 18:20   Image/CoreUpdates/4288-Morphic-VG-JuanVuletich-2020Jul23-11h39m-jmv.001.cs.st
     2259  2020-07-13 16:59   Image/CoreUpdates/4251-fixTyposInComments-DouglasBrebner-2020Jul01-17h10m-db.001.cs.st
      300  2020-10-28 12:21   Image/CoreUpdates/4436-NLSinExceptionsWarning-disableByDefault-JuanVuletich-2020Oct27-10h40m-jmv.001.cs.st
      218  2020-08-06 18:20   Image/CoreUpdates/4265-Morph-simplify-JuanVuletich-2020Jul17-17h58m-jmv.001.cs.st
      406  2020-08-06 18:20   Image/CoreUpdates/4340-allMethodsInCategory-fix-ThiagoLino-2020Jul31-14h28m-tsl.001.cs.st
      764  2020-08-06 18:20   Image/CoreUpdates/4333-DefaultTrueType-JuanVuletich-2020Aug03-19h00m-jmv.001.cs.st
      930  2020-04-01 13:48   Image/CoreUpdates/4084-Canvas-clipRect-cleanup-PhilBellalouna-2020Mar20-12h59m-pb.001.cs.st
      523  2020-05-26 10:27   Image/CoreUpdates/4178-FixSmalltalkCompleterInInspector-JuanVuletich-2020May24-20h20m-jmv.001.cs.st
    52251  2020-10-25 15:31   Image/CoreUpdates/4420-NewPasteUpMorphAndWorldMorph-JuanVuletich-2020Oct21-17h15m-jmv.001.cs.st
     2110  2021-04-06 20:47   Image/CoreUpdates/4560-AddHaloFix-JuanVuletich-2021Apr05-15h39m-jmv.001.cs.st
      336  2020-01-01 15:45   Image/CoreUpdates/3975-ParserUnusedVaraiblesRefactoring-HernanWilkinson-2019Dec17-09h21m-HAW.1.cs.st
      381  2020-03-04 21:32   Image/CoreUpdates/4049-CuisCore-NahuelGarbezza-2020Feb25-00h08m-RNG.001.cs.st
     7917  2020-02-03 17:49   Image/CoreUpdates/4021-BitBltCanvasCleanup4-JuanVuletich-2020Jan11-15h17m-jmv.1.cs.st
      850  2020-01-01 15:45   Image/CoreUpdates/3967-ReparseAfterRemovingEachUnusedTemp-EricBrandwein-2019Dec12-02h15m-EB.1.cs.st
      576  2021-05-11 00:40   Image/CoreUpdates/4594-Mutex-releaseIfOwnerNotReadyToRun-JuanVuletich-2021May10-15h28m-jmv.001.cs.st
      748  2021-03-22 21:20   Image/CoreUpdates/4540-InspectorFix-JosefPhilipBernhart-2021Feb14-09h30m-jpb.001.cs.st
     2519  2021-01-16 22:51   Image/CoreUpdates/4526-MorphicEventsCleanup-JuanVuletich-2021Jan14-21h23m-jmv.001.cs.st
     1245  2020-11-30 20:59   Image/CoreUpdates/4483-EmbeddingTargetsFix-JuanVuletich-2020Nov30-12h37m-jmv.001.cs.st
     1628  2020-10-16 10:27   Image/CoreUpdates/4402-MakeLabelMorphAWidget-JuanVuletich-2020Oct15-19h03m-jmv.001.cs.st
     4004  2021-05-30 17:05   Image/CoreUpdates/4619-AboutCuisCorrection-JuanVuletich-2021May29-17h24m-jmv.001.cs.st
     4844  2020-08-24 20:31   Image/CoreUpdates/4356-AutomaticallyScaleWindowResizers-JuanVuletich-2020Aug21-11h52m-jmv.002.cs.st
     2619  2020-10-13 16:25   Image/CoreUpdates/4393-StylerPreferenceInitialization-HernanWilkinson-2020Oct04-18h50m-HAW.001.cs.st
     3993  2020-02-03 17:49   Image/CoreUpdates/4002-UpdateCopyrightNoticeYear-JuanVuletich-2020Jan01-16h44m-jmv.1.cs.st
    48626  2020-06-02 15:11   Image/CoreUpdates/4196-BetterLayoutAlgorithms-KenDickey-2020May29-07h19m-KenD.005.cs.st
     1264  2020-04-29 22:54   Image/CoreUpdates/4126-AvoidRecentChangesMenuIfUseless-JuanVuletich-2020Apr28-12h20m-jmv.001.cs.st
      352  2021-03-28 22:51   Image/CoreUpdates/4546-RemoveSupportForRightArrowAssignment-JuanVuletich-2021Mar26-09h35m-jmv.001.cs.st
     7708  2020-08-06 18:20   Image/CoreUpdates/4270-Morphic-VG-JuanVuletich-2020Jul20-17h01m-jmv.001.cs.st
      419  2020-10-13 16:25   Image/CoreUpdates/4395-MenuFix-JuanVuletich-2020Oct12-19h11m-jmv.001.cs.st
      286  2021-01-03 12:32   Image/CoreUpdates/4510-assertEqualsDescriptionsDelayedUntilNeccesary-HernanWilkinson-2020Dec30-19h32m-HAW.001.cs.st
     4434  2021-03-03 11:00   Image/CoreUpdates/4532-CopyrightUpdate-JuanVuletich-2021Mar02-14h34m-jmv.001.cs.st
    13386  2020-03-04 21:32   Image/CoreUpdates/4043-browse-literal-references-PhilBellalouna-2020Feb19-10h49m-pb.1.cs.st
     3649  2020-05-22 20:30   Image/CoreUpdates/4154-MathSymbolsUpdate-coda-LucianoEstebanNotarfrancesco-2020May21-14h43m-len.001.cs.st
    11783  2020-04-10 17:59   Image/CoreUpdates/4107-CuisCore-NahuelGarbezza-2020Apr05-23h12m-RNG.001.cs.st
     1231  2021-03-22 21:20   Image/CoreUpdates/4534-BitBltCanvasTweaks-JuanVuletich-2021Mar15-16h33m-jmv.001.cs.st
    11935  2020-10-16 10:27   Image/CoreUpdates/4409-FixReferencesToRectangleLikeMorph-JuanVuletich-2020Oct14-21h50m-jmv.001.cs.st
      456  2020-05-26 17:05   Image/CoreUpdates/4189-StringRequestMorph-deltaToTextPane-KenDickey-2020May26-11h41m-KenD.001.cs.st
     8016  2020-01-01 15:45   Image/CoreUpdates/3982-wantsChangeSetLoggingFix-HernanWilkinson-2019Dec18-19h57m-HAW.1.cs.st
     5153  2020-01-01 15:45   Image/CoreUpdates/3996-DebuggerRefactorings-HernanWilkinson-2019Dec26-10h03m-HAW.1.cs.st
     1360  2020-08-19 17:48   Image/CoreUpdates/4352-WorldStateCleanup-JuanVuletich-2020Jul31-16h13m-jmv.001.cs.st
      512  2020-05-22 20:30   Image/CoreUpdates/4149-head-tail-AndresValloud-2020May18-17h28m-sqr.001.cs.st
     3266  2021-04-06 20:47   Image/CoreUpdates/4559-UserInterruptFix-JuanVuletich-2021Apr05-15h37m-jmv.001.cs.st
     1616  2021-04-06 20:47   Image/CoreUpdates/4553-RemoveUnnededReturns-JuanVuletich-2021Apr05-12h26m-jmv.001.cs.st
      392  2020-05-08 14:57   Image/CoreUpdates/4130-IntervalIncludes-HernanWilkinson-2020May02-11h21m-HAW.001.cs.st
      863  2020-08-06 18:20   Image/CoreUpdates/4326-WindowRedrawOnFocusChange-JuanVuletich-2020Aug01-18h07m-jmv.001.cs.st
     1931  2021-05-20 16:16   Image/CoreUpdates/4596-CommentsTweaks-JuanVuletich-2021May12-13h06m-jmv.001.cs.st
      492  2021-01-15 19:09   Image/CoreUpdates/4522-SmallCleanup-JuanVuletich-2021Jan13-10h30m-jmv.001.cs.st
     1770  2020-04-05 13:44   Image/CoreUpdates/4106-removeProgressBarLoggingToTranscript-JuanVuletich-2020Apr04-13h21m-jmv.001.cs.st
     8285  2020-02-03 17:49   Image/CoreUpdates/4018-BitBltCanvasCleanup1-JuanVuletich-2020Jan11-17h37m-jmv.1.cs.st
     1391  2020-05-24 16:39   Image/CoreUpdates/4170-ThemeCleanupAndRespectTaksbarThemeSetting-LucianoEstebanNotarfrancesco-2020May22-05h14m-len.001.cs.st
     6669  2020-05-22 20:30   Image/CoreUpdates/4161-YAlayoutFix-JuanVuletich-2020May21-18h53m-jmv.001.cs.st
     2561  2020-09-25 09:28   Image/CoreUpdates/4381-ProtocolClassMenu-KenDickey-2020Aug28-11h56m-KenD.002.cs.st
     2649  2020-06-19 18:52   Image/CoreUpdates/4225-TextAttributesFix-JuanVuletich-2020Jun16-19h33m-jmv.001.cs.st
    16400  2020-05-08 14:57   Image/CoreUpdates/4137-AutoCompleteImprovements-HernanWilkinson-2020May03-15h16m-HAW.001.cs.st
      415  2020-11-20 22:21   Image/CoreUpdates/4471-haltOrDNUselectedClassIsReceivers-JuanVuletich-2020Nov20-10h50m-jmv.001.cs.st
     2892  2020-04-01 13:48   Image/CoreUpdates/4087-TemporariesDefinitionASTNode-NahuelGarbezza-2020Mar13-00h27m-RNG.001.cs.st
     6670  2020-04-01 13:48   Image/CoreUpdates/4086-TemporariesDefinitionASTNode-NahuelGarbezza-2020Mar13-00h15m-RNG.001.cs.st
     1745  2021-01-05 20:12   Image/CoreUpdates/4518-AvoidConfusingSelector-JuanVuletich-2021Jan05-13h08m-jmv.001.cs.st
     1404  2020-03-04 21:32   Image/CoreUpdates/4050-Parser-variableRangeFix-HernanWilkinson-2020Feb29-18h10m-HAW.001.cs.st
      364  2020-10-05 17:30   Image/CoreUpdates/4390-HaloMorph-fix-JuanVuletich-2020Sep28-16h20m-jmv.001.cs.st
     1458  2020-12-08 22:18   Image/CoreUpdates/4487-ChangeList-scanSpecificChangeRecordType-GeraldKlix-2020Dec03-12h01m-KLG.001.cs.st
      881  2020-11-19 18:56   Image/CoreUpdates/4460-Transcript-fix-JuanVuletich-2020Nov17-16h03m-jmv.001.cs.st
     1092  2021-04-06 20:47   Image/CoreUpdates/4558-AddHaloRefactor-JuanVuletich-2021Apr05-12h47m-jmv.001.cs.st
     8907  2020-04-01 13:48   Image/CoreUpdates/4100-FontChanger-FontPicker-JuanVuletich-2020Mar31-15h53m-jmv.001.cs.st
      447  2020-10-26 15:00   Image/CoreUpdates/4427-BeMoreCarefulAboutCodePackageSubclasses-JuanVuletich-2020Oct25-20h29m-jmv.001.cs.st
     5846  2020-10-27 10:44   Image/CoreUpdates/4434-AddMorphInvalidationFix-JuanVuletich-2020Oct26-18h54m-jmv.001.cs.st
      257  2020-12-28 21:00   Image/CoreUpdates/4503-CompiledMethod-flattenTo-GeraldKlix-2020Dec28-15h49m-KLG.001.cs.st
     1558  2020-08-24 20:31   Image/CoreUpdates/4362-BitBltEngine-fix-JuanVuletich-2020Aug23-21h25m-jmv.001.cs.st
    21109  2020-05-22 20:30   Image/CoreUpdates/4156-SourceCodeRange-NahuelGarbezza-2020May04-19h23m-RNG.001.cs.st
     3377  2020-11-19 18:56   Image/CoreUpdates/4462-OneBPPsmallFormsCreation-JuanVuletich-2020Nov19-13h16m-jmv.001.cs.st
      523  2020-06-30 13:38   Image/CoreUpdates/4238-ivarAccessTool-fix-JuanVuletich-2020Jun24-16h08m-jmv.001.cs.st
     1762  2020-08-06 18:20   Image/CoreUpdates/4291-Morphic-VG-JuanVuletich-2020Jul23-15h34m-jmv.001.cs.st
     1261  2020-02-03 17:49   Image/CoreUpdates/4009-Cleanup-JuanVuletich-2020Jan09-17h28m-jmv.1.cs.st
      791  2021-03-22 21:20   Image/CoreUpdates/4536-MorphicTranslationAffineElements-CuisCore-JuanVuletich-2021Mar05-15h08m-jmv.001.cs.st
      385  2020-10-27 10:44   Image/CoreUpdates/4433-MoveExtentBorderToWidget-KenDickey-2020Oct26-16h47m-KenD.001.cs.st
    28720  2020-10-25 15:31   Image/CoreUpdates/4424-PushDownStuffToMovableMorph-JuanVuletich-2020Oct23-22h41m-jmv.002.cs.st
      330  2020-11-20 22:21   Image/CoreUpdates/4472-TextMorph-duplication-fix-JuanVuletich-2020Nov20-15h35m-jmv.001.cs.st
     1352  2020-11-23 22:08   Image/CoreUpdates/4475-InitialSystemCategoryAnswer-GeraldKlix-2020Oct31-20h05m-KLG.001.cs.st
     2755  2020-08-06 18:20   Image/CoreUpdates/4286-Morphic-VG-JuanVuletich-2020Jul23-10h02m-jmv.001.cs.st
     1017  2020-03-12 14:35   Image/CoreUpdates/4068-cheapWindowReframeIfTooSlow-JuanVuletich-2020Mar11-15h12m-jmv.001.cs.st
      664  2020-02-03 17:49   Image/CoreUpdates/4024-RecreateDefaultDesktop-fix-JuanVuletich-2020Jan11-15h49m-jmv.1.cs.st
     1280  2020-11-20 22:21   Image/CoreUpdates/4466-RotationHandleCleanup-JuanVuletich-2020Nov19-16h53m-jmv.001.cs.st
     5009  2020-08-06 18:20   Image/CoreUpdates/4301-Morphic-VG-JuanVuletich-2020Jul25-15h06m-jmv.001.cs.st
      746  2020-08-06 18:20   Image/CoreUpdates/4316-Morphic-VG-JuanVuletich-2020Jul27-17h13m-jmv.001.cs.st
     5161  2020-01-01 15:45   Image/CoreUpdates/3985-RenameTemporaryRefactors-HernanWilkinson-2019Dec22-20h17m-HAW.1.cs.st
      235  2020-12-20 19:59   Image/CoreUpdates/4491-StringRequestMorphFix-III-MauroJulianRizzi-2020Dec18-20h52m-MJR.001.cs.st
      185  2020-02-03 17:49   Image/CoreUpdates/4029-setGlyphs-removal-JuanVuletich-2020Jan19-09h22m-jmv.1.cs.st
     5359  2020-09-06 13:04   Image/CoreUpdates/4371-HistoricalPerformance-JuanVuletich-2020Sep02-21h46m-jmv.001.cs.st
     3020  2020-01-01 15:45   Image/CoreUpdates/3983-DeclareMoreThanOneUndeclaredInSameBlock-EricBrandwein-2019Dec20-20h02m-EB.1.cs.st
      623  2020-11-20 22:21   Image/CoreUpdates/4473-MorphDuplicationPositionFix-JuanVuletich-2020Nov20-15h47m-jmv.001.cs.st
     9403  2020-05-08 14:57   Image/CoreUpdates/4128-ExtractToTemporaryRefactoring-NahuelGarbezza-2020Apr24-20h33m-RNG.001.cs.st
      451  2020-10-27 10:44   Image/CoreUpdates/4429-LabelMorph-HonorPossibleBorderWidth-KenDickey-2020Oct26-11h27m-KenD.001.cs.st
     1719  2020-03-10 19:20   Image/CoreUpdates/4058-AvoidRefactoringOtherLanguageMethods-HernanWilkinson-2020Mar07-18h27m-HAW.001.cs.st
      726  2020-12-20 19:59   Image/CoreUpdates/4494-IndentingListItemMorph-icon-GeraldKlix-2020Dec18-11h10m-KLG.001.cs.st
     2652  2020-08-18 10:20   Image/CoreUpdates/4350-WorldStateFix-JuanVuletich-2020Aug17-13h44m-jmv.001.cs.st
     4156  2021-05-30 17:05   Image/CoreUpdates/4617-FixOccasionalCrashOnMainWindowResize-JuanVuletich-2021May28-13h11m-jmv.001.cs.st
     6598  2020-06-12 18:50   Image/CoreUpdates/4215-Font-Cleanup-JuanVuletich-2020Jun11-10h15m-jmv.001.cs.st
     6075  2020-04-29 22:54   Image/CoreUpdates/4119-Interval-cleanup-JuanVuletich-2020Apr21-12h58m-jmv.001.cs.st
     1243  2021-04-06 20:47   Image/CoreUpdates/4561-BitBltCanvas-CoordinateSystem-fix-JuanVuletich-2021Apr05-15h51m-jmv.001.cs.st
      872  2020-03-04 21:32   Image/CoreUpdates/4041-AvoidExcessiveProgressDialogs-JuanVuletich-2020Feb18-11h00m-jmv.1.cs.st
      186  2020-06-30 13:38   Image/CoreUpdates/4237-cleanup-JuanVuletich-2020Jun24-16h07m-jmv.001.cs.st
      436  2020-05-24 16:39   Image/CoreUpdates/4167-StringRequestMorph-new-morphParticipation-KenDickey-2020May24-09h38m-KenD.001.cs.st
     5492  2020-06-19 18:52   Image/CoreUpdates/4221-FontPicker-remove-JuanVuletich-2020Jun13-17h23m-jmv.002.cs.st
     1971  2020-11-12 10:20   Image/CoreUpdates/4447-MorphInvalidationFix-JuanVuletich-2020Nov10-15h42m-jmv.001.cs.st
     3152  2020-03-04 21:32   Image/CoreUpdates/4046-SequentialUserChangesFiles-JuanVuletich-2020Feb20-16h38m-jmv.008.cs.st
      979  2020-10-05 17:30   Image/CoreUpdates/4387-stepping-ErrorHandling-JuanVuletich-2020Sep28-12h05m-jmv.001.cs.st
     1515  2020-05-24 16:39   Image/CoreUpdates/4165-AvoidMorphRefsInObject-JuanVuletich-2020May23-20h59m-jmv.001.cs.st
    10394  2020-01-01 15:45   Image/CoreUpdates/3992-ExtractMethodRefactorings-HernanWilkinson-2019Dec23-09h51m-HAW.1.cs.st
    16295  2020-11-19 18:56   Image/CoreUpdates/4454-extentChanged-JuanVuletich-2020Nov15-14h03m-jmv.001.cs.st
      838  2020-03-04 21:32   Image/CoreUpdates/4036-Cleanup-JuanVuletich-2020Feb10-13h33m-jmv.1.cs.st
    20654  2020-10-25 15:31   Image/CoreUpdates/4419-RenamePasteUpMorphAsOldPasteUpMorph-JuanVuletich-2020Oct21-16h20m-jmv.001.cs.st
    13490  2021-05-30 17:05   Image/CoreUpdates/4611-CoordinateSystemsRefactor-JuanVuletich-2021May26-11h54m-jmv.001.cs.st
      723  2020-11-26 21:50   Image/CoreUpdates/4480-haloBoundsFix-JuanVuletich-2020Nov26-15h03m-jmv.001.cs.st
      332  2021-05-02 15:36   Image/CoreUpdates/4582-ProgressInitiationException-nice-2021May01-23h24m-nice.002.cs.st
     1646  2020-04-01 13:48   Image/CoreUpdates/4079-ChangeListMethodsRecategorization-HernanWilkinson-2020Mar24-12h16m-HAW.001.cs.st
      400  2020-08-29 15:17   Image/CoreUpdates/4364-fixMessageSetClickOnFirstItemToFocusAndSelectAnnoyance-JuanVuletich-2020Aug28-20h36m-jmv.001.cs.st
     1009  2020-03-04 21:32   Image/CoreUpdates/4039-noteCompilationOfmeta-removal-JuanVuletich-2020Jan29-09h03m-jmv.1.cs.st
     4771  2020-08-06 18:20   Image/CoreUpdates/4280-Morphic-VG-JuanVuletich-2020Jul22-19h47m-jmv.001.cs.st
      363  2020-05-08 14:57   Image/CoreUpdates/4131-NewInstanceVariablePreconditionFix-HernanWilkinson-2020May02-12h48m-HAW.001.cs.st
     5541  2020-02-03 17:49   Image/CoreUpdates/4004-SmalltalkEditorRefactoringMenu-HernanWilkinson-2020Jan02-07h21m-HAW.1.cs.st
     1633  2020-09-15 12:26   Image/CoreUpdates/4377-TextEditorFix-JuanVuletich-2020Sep14-11h19m-jmv.001.cs.st
     1152  2021-01-01 21:44   Image/CoreUpdates/4508-callPrimitive-HernanWilkinson-2020Dec29-19h19m-HAW.001.cs.st
     3903  2020-08-06 18:20   Image/CoreUpdates/4290-Morphic-VG-JuanVuletich-2020Jul23-15h33m-jmv.001.cs.st
     8171  2020-08-24 20:31   Image/CoreUpdates/4361-Morph-helper-methods-JuanVuletich-2020Aug22-16h35m-jmv.001.cs.st
     1120  2020-11-12 10:20   Image/CoreUpdates/4440-GrabMorphFix-JuanVuletich-2020Nov06-12h43m-jmv.001.cs.st
     1270  2020-05-22 20:30   Image/CoreUpdates/4147-FixMissingWebLink-JuanVuletich-2020May18-14h53m-jmv.001.cs.st
    24953  2019-12-06 21:00   Image/CoreUpdates/3963-RenameClassLogAndRefreshFix-HernanWilkinson-2019Dec03-16h25m-HAW.1.cs.st
     2821  2020-06-03 22:26   Image/CoreUpdates/4202-MessageCategoriesShortcuts-LucianoEstebanNotarfrancesco-2020Jun03-13h37m-len.001.cs.st
     1118  2019-12-06 21:00   Image/CoreUpdates/3961-SelectedInstVarRenameOnClassDefinitionFix-HernanWilkinson-2019Nov25-14h45m-HAW.1.cs.st
     1470  2021-03-28 22:51   Image/CoreUpdates/4549-halosShowCoordinateSystem-preference-JuanVuletich-2021Mar26-16h09m-jmv.001.cs.st
      958  2019-12-06 21:00   Image/CoreUpdates/3962-CuisCore-HernanWilkinson-2019Nov27-16h25m-HAW.1.cs.st
      187  2020-05-15 14:36   Image/CoreUpdates/4144-remove-Float32SlotsObject-JuanVuletich-2020May14-17h15m-jmv.001.cs.st
      590  2020-11-20 22:21   Image/CoreUpdates/4470-LargerDoubleClickTimeout-JuanVuletich-2020Nov20-10h48m-jmv.001.cs.st
      736  2020-02-03 17:49   Image/CoreUpdates/4023-BitBltCanvasCleanup6-JuanVuletich-2020Jan11-15h32m-jmv.1.cs.st
    10494  2020-09-06 13:04   Image/CoreUpdates/4368-FloatArrayHierarchyRefactor-JuanVuletich-2020Sep03-17h28m-jmv.001.cs.st
     3683  2020-04-29 22:54   Image/CoreUpdates/4122-Cleanup-JuanVuletich-2020Apr25-12h25m-jmv.001.cs.st
      638  2020-11-12 10:20   Image/CoreUpdates/4450-BitBltCanvasFix-JuanVuletich-2020Nov11-12h55m-jmv.001.cs.st
     1265  2021-05-06 08:02   Image/CoreUpdates/4585-containsGlobalPoint-fix-JuanVuletich-2021May01-19h39m-jmv.001.cs.st
     3131  2020-08-06 18:20   Image/CoreUpdates/4276-Morphic-VG-JuanVuletich-2020Jul22-14h03m-jmv.001.cs.st
    11578  2020-01-01 15:45   Image/CoreUpdates/3980-RemovingClassWarnsForReferencesToName-HernanWilkinson-2019Dec18-11h06m-HAW.1.cs.st
     2932  2020-08-06 18:20   Image/CoreUpdates/4338-DamageRecorder-redesign-JuanVuletich-2020Aug05-11h37m-jmv.001.cs.st
    12178  2020-09-06 13:04   Image/CoreUpdates/4366-RenameFloatArrayAsFloat32Array-JuanVuletich-2020Sep03-17h12m-jmv.001.cs.st
    10465  2020-05-08 14:57   Image/CoreUpdates/4132-AutoCompleterImprovement-HernanWilkinson-2020May02-18h09m-HAW.001.cs.st
     1367  2020-02-03 17:49   Image/CoreUpdates/4019-BitBltCanvasCleanup2-JuanVuletich-2020Jan11-17h38m-jmv.1.cs.st
     5457  2020-08-06 18:20   Image/CoreUpdates/4277-Morphic-VG-JuanVuletich-2020Jul22-14h05m-jmv.001.cs.st
     1480  2020-05-08 14:57   Image/CoreUpdates/4133-MessageTally-fix-JuanVuletich-2020May04-16h31m-jmv.001.cs.st
      669  2020-08-06 18:20   Image/CoreUpdates/4330-DragAndDropFix-JuanVuletich-2020Aug03-14h22m-jmv.001.cs.st
     5019  2021-01-29 21:44   Image/CoreUpdates/4528-CuisCore-NicolasPapagnaMaldonado-2021Jan29-16h51m-NPM.001.cs.st
     1019  2020-08-06 18:20   Image/CoreUpdates/4279-Morphic-VG-JuanVuletich-2020Jul22-15h51m-jmv.001.cs.st
      987  2020-06-02 15:11   Image/CoreUpdates/4197-BetterErrorMessage-NahuelGarbezza-2020May27-18h58m-RNG.001.cs.st
     2854  2020-06-19 18:52   Image/CoreUpdates/4223-NewFontMenu-JuanVuletich-2020Jun16-18h21m-jmv.003.cs.st
     1747  2020-05-08 14:57   Image/CoreUpdates/4134-FixInterruptKeyForFrenchKeyboard-ThierryGoubier-2020May01-13h21m-tg.1.cs.st
      715  2020-07-29 06:32   Image/CoreUpdates/4256-NewClassTemplate-styleFix-GeraldKlix-2020Jul28-17h11m-jmv.001.cs.st
     1447  2020-08-06 18:20   Image/CoreUpdates/4299-Morphic-VG-JuanVuletich-2020Jul24-15h00m-jmv.001.cs.st
    17772  2020-06-12 18:50   Image/CoreUpdates/4214-Font-Cleanup-JuanVuletich-2020Jun11-09h57m-jmv.001.cs.st
      401  2021-05-30 17:05   Image/CoreUpdates/4616-Cleanup-JuanVuletich-2021May28-13h11m-jmv.001.cs.st
     1115  2020-12-08 22:18   Image/CoreUpdates/4488-StringRequestMorphFix-MauroRizzi-2020Dec07-16h29m-MJR.001.cs.st
     1884  2020-06-19 18:52   Image/CoreUpdates/4229-asPlural-improvements-LeandroCaniglia-2020Jun19-12h52m-LC.001.cs.st
     6105  2020-11-20 22:21   Image/CoreUpdates/4467-ScaleHandle-JuanVuletich-2020Nov19-17h19m-jmv.002.cs.st
     1016  2020-11-19 18:56   Image/CoreUpdates/4459-clipCurrentMorph-JuanVuletich-2020Nov17-14h51m-jmv.001.cs.st
    29106  2020-02-03 17:49   Image/CoreUpdates/4013-CodeFileBrowser-flexible-case-and-base-PhilBellalouna-2020Jan09-15h14m-pb.1.cs.st
      414  2020-12-20 19:59   Image/CoreUpdates/4492-AllowTextInHoverHelp-GeraldKlix-2020Dec20-11h25m-KLG.001.cs.st
     3888  2020-05-22 20:30   Image/CoreUpdates/4160-ProportionalLayoutFix-JuanVuletich-2020May21-18h09m-jmv.001.cs.st
     1043  2021-05-22 13:13   Image/CoreUpdates/4608-AutoCompleterThemeSupport-GeraldKlix-2021May08-15h06m-KLG.001.cs.st
     7345  2020-08-06 18:20   Image/CoreUpdates/4273-Morphic-VG-JuanVuletich-2020Jul22-10h48m-jmv.004.cs.st
     1120  2021-04-30 15:07   Image/CoreUpdates/4578-FileRename-avoid-overwrite-JuanVuletich-2021Apr29-15h38m-jmv.001.cs.st
     1402  2020-06-11 10:32   Image/CoreUpdates/4210-Layouts-delete-deprecated-methods-JuanVuletich-2020Jun08-10h49m-jmv.001.cs.st
      356  2021-03-29 10:20   Image/CoreUpdates/4550-NewReleaseStartupFix-JuanVuletich-2021Mar29-03h26m-jmv.001.cs.st
      977  2020-08-06 18:20   Image/CoreUpdates/4328-StringRequestMorph-MoreRoom-JuanVuletich-2020Aug03-10h28m-jmv.001.cs.st
    21120  2020-04-10 17:59   Image/CoreUpdates/4109-ShowAccessInInstVarAccesorBrowser-HernanWilkinson-2020Apr05-20h06m-HAW.003.cs.st
      513  2020-10-05 17:30   Image/CoreUpdates/4392-MakeCuisRunAgainOnSqueakJSvm-JuanVuletich-2020Oct05-10h52m-jmv.001.cs.st
     3675  2020-02-03 17:49   Image/CoreUpdates/4032-Character-cleanup-JuanVuletich-2020Jan26-08h29m-jmv.1.cs.st
     1185  2020-03-28 20:54   Image/CoreUpdates/4074-LayoutFix-JuanVuletich-2020Mar24-10h23m-jmv.001.cs.st
     3557  2020-12-20 19:59   Image/CoreUpdates/4493-WindowResizeEnhancements-MauroJulianRizzi-2020Dec18-12h03m-MJR.001.cs.st
      972  2020-09-28 20:02   Image/CoreUpdates/4384-ParseNodeEnumerator-NahuelGarbezza-2020Sep27-22h11m-RNG.001.cs.st
     2152  2021-05-30 17:05   Image/CoreUpdates/4615-Cursor-makeInstancesLiteral-JuanVuletich-2021May28-13h10m-jmv.001.cs.st
    34263  2020-05-26 10:27   Image/CoreUpdates/4187-FixesAndImprovementsOnExtractMethodAndTemporary-NahuelGarbezza-2020May24-19h34m-RNG.001.cs.st
    16274  2020-05-26 10:27   Image/CoreUpdates/4172-InspectorRefactorAndFixes-AndresValloud-2020May22-19h44m-sqr.001.cs.st
      633  2021-04-10 11:15   Image/CoreUpdates/4565-displayBounds-fix-JuanVuletich-2021Apr09-14h10m-jmv.001.cs.st
     2036  2020-06-03 22:26   Image/CoreUpdates/4200-ColorForm-fix-JuanVuletich-2020Jun03-09h53m-jmv.001.cs.st
     3687  2021-01-15 19:09   Image/CoreUpdates/4521-HighlightEmbeddingTargetWhenHoveringMenu-JuanVuletich-2021Jan13-12h02m-jmv.001.cs.st
     3129  2020-12-28 21:00   Image/CoreUpdates/4500-HaloDrawsCoordinateSystem-JuanVuletich-2020Dec23-13h17m-jmv.001.cs.st
     4302  2020-01-01 15:45   Image/CoreUpdates/3981-RenameInstVarLogChange-HernanWilkinson-2019Dec18-17h51m-HAW.1.cs.st
     1038  2021-05-30 17:05   Image/CoreUpdates/4613-allSubmorphsDo-JuanVuletich-2021May26-14h44m-jmv.001.cs.st
      873  2020-02-03 17:49   Image/CoreUpdates/4031-StrikeFont-comments-JuanVuletich-2020Jan19-14h06m-jmv.1.cs.st
     8027  2020-05-26 10:27   Image/CoreUpdates/4174-Inspector-MirrorPrimitives-AndresValloud-2020May22-17h15m-sqr.001.cs.st
      693  2021-04-06 20:47   Image/CoreUpdates/4555-RemoveMiddleButtonDrag-JuanVuletich-2021Apr05-12h32m-jmv.001.cs.st
     3275  2020-06-02 15:11   Image/CoreUpdates/4198-GuardedAdjuster-KenDickey-2020Jun01-20h40m-KenD.001.cs.st
     5147  2020-05-22 20:30   Image/CoreUpdates/4148-FixBrokenExamplesInComments-JuanVuletich-2020May18-15h05m-jmv.001.cs.st
      716  2020-08-06 18:20   Image/CoreUpdates/4298-Morphic-VG-JuanVuletich-2020Jul24-11h21m-jmv.001.cs.st
     3291  2020-04-17 21:31   Image/CoreUpdates/4113-emptyTextDisplayMessage-fix-JuanVuletich-2020Apr14-17h51m-jmv.001.cs.st
     8268  2020-06-30 13:38   Image/CoreUpdates/4242-MakeDefaultWindowBoundsIntegers-JuanVuletich-2020Jun26-17h06m-jmv.001.cs.st
      238  2020-04-01 13:48   Image/CoreUpdates/4091-knownPreambles-HernanWilkinson-2020Mar30-15h09m-HAW.001.cs.st
      827  2020-04-01 13:48   Image/CoreUpdates/4093-ExtractMethodSpecialSelectors-NahuelGarbezza-2020Mar29-16h47m-RNG.001.cs.st
      222  2020-04-29 22:54   Image/CoreUpdates/4124-HandyMethodInUpdatingStringMorph-KenDickey-2020Apr27-17h31m-KenD.001.cs.st
     1964  2020-10-16 10:27   Image/CoreUpdates/4410-LayoutExampleFix-JuanVuletich-2020Oct14-22h12m-jmv.001.cs.st
     2051  2021-05-20 16:16   Image/CoreUpdates/4600-HandMorphCleanup-JuanVuletich-2021May15-20h25m-jmv.001.cs.st
      481  2020-05-15 14:36   Image/CoreUpdates/4141-RemoveSuperfluousMethods-JuanVuletich-2020May14-15h34m-jmv.001.cs.st
      760  2020-08-06 18:20   Image/CoreUpdates/4297-Morphic-VG-JuanVuletich-2020Jul24-10h57m-jmv.001.cs.st
      743  2020-06-24 10:14   Image/CoreUpdates/4234-BacktickParseNode-HernanWilkinson-2020Jun23-15h40m-HAW.001.cs.st
     1696  2020-04-01 13:48   Image/CoreUpdates/4088-TemporariesDefinitionASTVisitor-NahuelGarbezza-2020Mar29-15h59m-RNG.1.cs.st
     1094  2021-03-28 22:51   Image/CoreUpdates/4545-LessInvasiveCoordinateAxes-JuanVuletich-2021Mar25-19h23m-jmv.001.cs.st
     2251  2020-05-08 14:57   Image/CoreUpdates/4129-RefactoringCheckForCompilerClass-HernanWilkinson-2020Apr23-16h31m-HAW.001.cs.st
      279  2020-06-30 13:38   Image/CoreUpdates/4239-DebugAidsOnBreak-JuanVuletich-2020Jun23-12h28m-jmv.001.cs.st
     2392  2020-04-29 22:54   Image/CoreUpdates/4120-FileList-ImportPicures-JuanVuletich-2020Apr22-22h48m-jmv.001.cs.st
    16467  2020-01-01 15:45   Image/CoreUpdates/3971-AutoCompleteWhenEditingClass-HernanWilkinson-2019Dec14-11h53m-HAW.1.cs.st
     3473  2020-12-01 16:17   Image/CoreUpdates/4484-ClippingMorphsCantContainClippingMorphs-JuanVuletich-2020Dec01-10h44m-jmv.001.cs.st
    10179  2020-12-08 22:18   Image/CoreUpdates/4486-IndexedColors-firstEntryTransparent-JuanVuletich-2020Dec08-08h56m-jmv.001.cs.st
      699  2020-03-12 14:35   Image/CoreUpdates/4067-DontShoutLargeText-JuanVuletich-2020Mar11-14h48m-jmv.001.cs.st
     2211  2020-05-26 10:27   Image/CoreUpdates/4186-rightClickInTaskbar-JuanVuletich-2020May24-21h30m-jmv.001.cs.st
    11330  2020-06-24 15:55   Image/CoreUpdates/4235-ExcludeExtensionCategories-HernanWilkinson-2020Jun23-16h11m-HAW.003.cs.st
     1455  2020-08-07 09:30   Image/CoreUpdates/4348-DrawWorld-refactor-JuanVuletich-2020Aug06-22h07m-jmv.001.cs.st
     6395  2020-08-06 18:20   Image/CoreUpdates/4335-DamageRecorder-redesign-JuanVuletich-2020Aug04-19h27m-jmv.001.cs.st
      724  2020-05-22 20:30   Image/CoreUpdates/4163-InfinityAndNaN-truncated-fix-JuanVuletich-2020May21-22h30m-jmv.001.cs.st
      511  2020-08-06 18:20   Image/CoreUpdates/4304-Morphic-VG-JuanVuletich-2020Jul27-00h40m-jmv.001.cs.st
     6521  2020-08-24 20:31   Image/CoreUpdates/4360-TranscriptEnhancements-JuanVuletich-2020Aug21-20h58m-jmv.001.cs.st
    12316  2020-10-13 16:25   Image/CoreUpdates/4394-SyntaxHighlightImprovement-HernanWilkinson-2020Oct04-18h54m-HAW.002.cs.st
     1425  2020-05-26 10:27   Image/CoreUpdates/4176-AdditionalInspectorCleanup-AndresValloud-2020May23-17h04m-sqr.001.cs.st
     1289  2020-02-03 17:49   Image/CoreUpdates/4027-bench-fix-JuanVuletich-2020Jan17-10h14m-jmv.1.cs.st
     4063  2020-08-06 18:20   Image/CoreUpdates/4295-Morphic-VG-JuanVuletich-2020Jul23-16h08m-jmv.001.cs.st
      264  2020-05-22 20:30   Image/CoreUpdates/4151-microsecondsToRun-JuanVuletich-2020May17-09h08m-jmv.001.cs.st
      307  2020-12-30 13:52   Image/CoreUpdates/4505-contextStackCanBeNilFix-HernanWilkinson-2020Dec29-12h15m-HAW.001.cs.st
     2274  2020-03-04 21:32   Image/CoreUpdates/4035-FeatureRequirement-fixes-JuanVuletich-2020Feb17-15h11m-jmv.1.cs.st
      764  2020-05-26 10:27   Image/CoreUpdates/4184-sendQueryto-fix-LucianoEstebanNotarfrancesco-2020May25-10h31m-len.001.cs.st
     4374  2020-10-25 15:31   Image/CoreUpdates/4417-StringRequestMorph-Resizeable-JuanVuletich-2020Oct23-16h05m-jmv.001.cs.st
     2278  2020-04-01 13:48   Image/CoreUpdates/4077-ClassRenameChangeReification-MatiasDinota-2020Jan02-09h08m-MGD.1.cs.st
     6762  2020-03-04 21:32   Image/CoreUpdates/4038-remove-methodAdded-event-JuanVuletich-2020Jan29-08h46m-jmv.1.cs.st
     6326  2020-01-01 15:45   Image/CoreUpdates/3977-DeclareUndeclaredInBlockFix-EricBrandwein-2019Dec12-23h47m-EB.1.cs.st
     4347  2020-06-06 16:22   Image/CoreUpdates/4208-LayoutRemoveUnused-KenDickey-2020Jun04-18h22m-KenD.003.cs.st
     1796  2020-04-01 13:48   Image/CoreUpdates/4101-utf32-JuanVuletich-2020Mar31-18h29m-jmv.001.cs.st
     3508  2021-01-05 20:12   Image/CoreUpdates/4512-HandMorph-fixes-KenDickey-2021Jan05-10h58m-KenD.001.cs.st
    10842  2021-01-05 20:12   Image/CoreUpdates/4515-remove-fullContainsPoint-JuanVuletich-2021Jan05-11h35m-jmv.001.cs.st
      362  2020-08-06 20:38   Image/CoreUpdates/4343-Canvas-AlwaysHaveOne-JuanVuletich-2020Aug06-14h22m-jmv.002.cs.st
      513  2021-05-20 16:16   Image/CoreUpdates/4601-UpdateBoundsFix-JuanVuletich-2021May15-20h27m-jmv.001.cs.st
     1096  2020-03-28 20:54   Image/CoreUpdates/4072-AssignmentGlyphPrefRefacor-JuanVuletich-2020Mar21-10h29m-jmv.001.cs.st
     6450  2020-02-03 17:49   Image/CoreUpdates/4020-BitBltCanvasCleanup3-JuanVuletich-2020Jan11-15h08m-jmv.1.cs.st
     4264  2020-03-04 21:32   Image/CoreUpdates/4040-tracking-method-changes-globally-PhilBellalouna-2020Jan29-10h00m-pb.2.cs.st
      779  2020-01-01 15:45   Image/CoreUpdates/3994-ThroughHangFixWhenTestFail-HernanWilkinson-2019Dec26-08h20m-HAW.1.cs.st
     3632  2020-08-06 18:20   Image/CoreUpdates/4327-FixHandDamageRect-JuanVuletich-2020Aug01-18h17m-jmv.001.cs.st
     2057  2021-02-10 16:42   Image/CoreUpdates/4530-Float-exponent-nonPrimitive-Fix-JuanVuletich-2021Feb09-11h57m-jmv.001.cs.st
     2529  2020-11-12 10:20   Image/CoreUpdates/4444-MorphicCanvas-borderStyleTweaks-JuanVuletich-2020Nov09-15h03m-jmv.001.cs.st
     2607  2020-07-13 16:59   Image/CoreUpdates/4250-fixTypoInSelector-DouglasBrebner-2020Jul01-17h08m-db.001.cs.st
     1014  2021-05-06 17:36   Image/CoreUpdates/4588-AllowSubtitlesInMenus-GeraldKlix-2021May06-13h10m-KLG.001.cs.st
     1778  2020-03-04 21:32   Image/CoreUpdates/4051-enablePointCollectionSubclasses-JuanVuletich-2020Feb28-11h02m-jmv.001.cs.st
     1744  2021-03-31 16:15   Image/CoreUpdates/4552-RandomDoubleInitializationFix-LucianoEstebanNotarfrancesco-2021Mar30-06h22m-len.001.cs.st
      711  2020-10-25 15:31   Image/CoreUpdates/4423-MovableMorph-JuanVuletich-2020Oct23-19h51m-jmv.001.cs.st
      631  2021-04-18 21:52   Image/CoreUpdates/4569-ScrollbarFix-JuanVuletich-2021Apr17-19h46m-jmv.001.cs.st
     1134  2020-03-04 21:32   Image/CoreUpdates/4042-inspectKey-option-in-Dictionaries-NahuelGarbezza-2020Feb02-12h37m-RNG.1.cs.st
     1102  2020-06-02 15:11   Image/CoreUpdates/4199-translucent-imageForm-fix-JuanVuletich-2020Jun01-09h25m-jmv.001.cs.st
      348  2020-04-01 13:48   Image/CoreUpdates/4080-ClassRenameChangeReification-HernanWilkinson-2020Mar24-15h26m-HAW.001.cs.st
     6918  2021-04-29 08:43   Image/CoreUpdates/4576-AddJaromirAsKnownAuthor-JuanVuletich-2021Apr13-14h30m-jmv.001.cs.st
     1019  2020-04-10 17:59   Image/CoreUpdates/4108-CuisCore-NahuelGarbezza-2020Apr06-00h03m-RNG.001.cs.st
      341  2020-05-26 10:27   Image/CoreUpdates/4188-FixTaskbarEndDuringPreview-JuanVuletich-2020May25-22h50m-jmv.001.cs.st
      978  2021-01-06 21:14   Image/CoreUpdates/4520-Rename-String-asInteger-to-findPositiveInteger-JuanVuletich-2021Jan06-11h51m-jmv.001.cs.st
     7386  2020-03-04 21:32   Image/CoreUpdates/4047-UseAllBitsOfIdentityHash-JuanVuletich-2020Feb21-11h02m-jmv.009.cs.st
    16979  2020-06-30 13:38   Image/CoreUpdates/4240-TabHandling-JuanVuletich-2020Jun15-19h22m-jmv.001.cs.st
    10892  2020-09-06 13:04   Image/CoreUpdates/4369-FloatArrayHierarchyRefactor-JuanVuletich-2020Sep03-17h47m-jmv.001.cs.st
    10448  2020-05-15 14:36   Image/CoreUpdates/4142-ThirtyTwoBitSlotsObject-JuanVuletich-2020May14-16h58m-jmv.001.cs.st
     1146  2020-11-12 10:20   Image/CoreUpdates/4439-GrabMorphFix-JuanVuletich-2020Oct28-08h49m-jmv.003.cs.st
     1857  2021-05-20 16:16   Image/CoreUpdates/4605-DontErrorOnBatBitBltArg-JuanVuletich-2021May18-14h34m-jmv.001.cs.st
     7406  2021-03-28 22:51   Image/CoreUpdates/4543-CommentFixes-JuanVuletich-2021Mar23-13h02m-jmv.001.cs.st
     3505  2021-01-16 22:51   Image/CoreUpdates/4525-MorphicEventsCleanup-JuanVuletich-2021Jan15-17h35m-jmv.001.cs.st
     6442  2020-06-03 22:26   Image/CoreUpdates/4201-defaultForm-fixComment-JuanVuletich-2020Jun03-10h23m-jmv.001.cs.st
     1627  2020-08-18 10:20   Image/CoreUpdates/4351-WarnAboutUpdatedPackages-JuanVuletich-2020Aug16-08h45m-jmv.001.cs.st
      763  2021-05-20 16:16   Image/CoreUpdates/4597-FloatArray-comments-JuanVuletich-2021May13-18h23m-jmv.001.cs.st
     9016  2020-02-03 17:49   Image/CoreUpdates/4014-CodeFileBrowser-color-lists-PhilBellalouna-2020Jan09-21h17m-pb.1.cs.st
     1627  2021-05-30 17:05   Image/CoreUpdates/4612-BetterNaming-JuanVuletich-2021May26-12h26m-jmv.001.cs.st
     3642  2020-04-29 22:54   Image/CoreUpdates/4116-CascadeMessagesRanges-NahuelGarbezza-2020Apr14-20h09m-RNG.001.cs.st
      778  2020-11-25 17:24   Image/CoreUpdates/4477-find-scrollSelectionIntoView-JuanVuletich-2020Nov24-15h38m-jmv.001.cs.st
    17990  2020-03-04 21:32   Image/CoreUpdates/4055-fix-some-Point-literals-PhilBellalouna-2020Mar03-03h47m-pb.001.cs.st
     2037  2020-06-19 18:52   Image/CoreUpdates/4227-findClassCustomization-HernanWilkinson-2020Jun17-16h06m-HAW.001.cs.st
     6505  2020-11-20 22:21   Image/CoreUpdates/4469-HaloMorphScaleAndRotateNotForWidgets-JuanVuletich-2020Nov20-09h51m-jmv.003.cs.st
    19354  2020-10-25 15:31   Image/CoreUpdates/4422-PushDownStuffToWorldMorph-JuanVuletich-2020Oct22-12h20m-jmv.003.cs.st
    10173  2020-06-21 20:10   Image/CoreUpdates/4230-MethodReferenceInstantiationRefactoring-NahuelGarbezza-2020Jun08-23h50m-RNG.001.cs.st
     1884  2020-08-19 17:48   Image/CoreUpdates/4354-avoidUnlikelyDrawWorldBreakage-JuanVuletich-2020Aug19-09h17m-jmv.001.cs.st
     2112  2021-05-20 16:16   Image/CoreUpdates/4607-MorphicWorldDrawFix-JuanVuletich-2021May19-17h13m-jmv.001.cs.st
      531  2020-04-01 13:48   Image/CoreUpdates/4094-ExtractMethodClassesRemoval-NahuelGarbezza-2020Mar29-19h36m-RNG.001.cs.st
     1755  2020-05-09 20:43   Image/CoreUpdates/4140-AvoidExpensiveClearOnEveryImageSave-JuanVuletich-2020May08-11h57m-jmv.001.cs.st
     1772  2020-04-29 22:54   Image/CoreUpdates/4118-placesToLookForPackagesDo-KenDickey-2020Apr21-12h43m-jmv.001.cs.st
      255  2020-03-04 21:32   Image/CoreUpdates/4054-HonorFontPreferenceChange-KenD-2020Feb28-07h41m-KenD.001.cs.st
      629  2020-06-30 13:38   Image/CoreUpdates/4236-bitReverse-fix-JuanVuletich-2020Jun24-15h55m-jmv.001.cs.st
    20648  2020-01-01 15:45   Image/CoreUpdates/3979-RenameTemporaryOnSameVarNameFix-HernanWilkinson-2019Dec17-17h22m-HAW.1.cs.st
      665  2020-12-11 18:55   Image/CoreUpdates/4489-StringRequestMorphFix-II-MauroJulianRizzi-2020Dec09-21h23m-MJR.001.cs.st
    12721  2020-08-06 18:20   Image/CoreUpdates/4269-NewProtocolsAndComments-JuanVuletich-2020Jul18-20h52m-jmv.002.cs.st
      442  2020-10-16 10:27   Image/CoreUpdates/4407-ImageMorphBeWidget-JuanVuletich-2020Oct12-21h45m-jmv.001.cs.st
     1485  2020-02-03 17:49   Image/CoreUpdates/4008-removeUpToDate-doRemoveDeletionOfMissingMethods-JuanVuletich-2020Jan09-17h22m-jmv.1.cs.st
     1241  2020-05-24 16:39   Image/CoreUpdates/4168-StringRequestMorph-ClassComment-LucianoEstebanNotarfrancesco-2020May24-09h40m-len.001.cs.st
      381  2020-06-11 10:32   Image/CoreUpdates/4211-EmbossedTextFix-JuanVuletich-2020Jun08-11h02m-jmv.001.cs.st
    20307  2020-07-01 11:29   Image/CoreUpdates/4249-BehaviorHierarchyTypeErrorFixes-HernanWilkinson-JuanVuletich-2020Jun29-13h02m-jmv.001.cs.st
     6029  2020-04-01 13:48   Image/CoreUpdates/4075-MethodOverrideChange-MatiasDinota-2020Jan02-09h08m-MGD.1.cs.st
      401  2020-10-27 10:44   Image/CoreUpdates/4431-WorldMorphFix-GeraldKlix-2020Oct26-16h03m-KLG.001.cs.st
     5471  2020-06-24 10:14   Image/CoreUpdates/4232-BacktickParseNode-HernanWilkinson-2020Jun22-16h27m-HAW.001.cs.st
     1050  2020-06-24 10:14   Image/CoreUpdates/4233-BacktickParseNode-HernanWilkinson-2020Jun22-16h19m-HAW.001.cs.st
     1277  2020-05-24 16:39   Image/CoreUpdates/4169-DivisionDocumentationFixed-LucianoEstebanNotarfrancesco-2020May24-09h41m-len.001.cs.st
     4799  2020-09-15 12:26   Image/CoreUpdates/4374-cleanup-JuanVuletich-2020Sep11-17h28m-jmv.001.cs.st
      648  2021-05-20 16:16   Image/CoreUpdates/4595-AffineTransformationTweaks-JuanVuletich-2021May11-09h51m-jmv.001.cs.st
     3917  2020-08-06 18:20   Image/CoreUpdates/4263-MorphicRefactor-JuanVuletich-2020Jul17-17h38m-jmv.001.cs.st
      287  2020-10-28 12:21   Image/CoreUpdates/4435-BlockClosure-storeOn-JuanVuletich-2020Oct27-10h33m-jmv.001.cs.st
     2875  2020-12-30 13:52   Image/CoreUpdates/4504-AutoConvertSomeUnicode-JuanVuletich-2020Dec29-14h42m-jmv.001.cs.st
     2798  2020-11-19 18:56   Image/CoreUpdates/4452-WorkspacesWithScrollBar-JuanVuletich-2020Nov15-10h23m-jmv.001.cs.st
     2310  2020-03-28 20:54   Image/CoreUpdates/4073-RefactoringCharacter-JuanVuletich-2020Mar22-23h15m-jmv.001.cs.st
     2447  2020-02-03 17:49   Image/CoreUpdates/4026-CommentsTweaks-JuanVuletich-2020Jan14-09h19m-jmv.1.cs.st
     1843  2020-08-06 18:20   Image/CoreUpdates/4258-EmptyTextMessageReimplementation-JuanVuletich-2020Jul10-23h52m-jmv.001.cs.st
     2084  2020-06-30 13:38   Image/CoreUpdates/4247-ParserExpression-HernanWilkinson-2020Jun27-19h13m-HAW.001.cs.st
      285  2020-05-08 14:57   Image/CoreUpdates/4135-minimalWindows-fix-LucianoEstebanNotarfrancesco-2020May06-12h17m-len.001.cs.st
      197  2020-08-06 18:20   Image/CoreUpdates/4307-Morphic-VG-JuanVuletich-2020Jul27-10h25m-jmv.001.cs.st
     1065  2020-08-06 18:20   Image/CoreUpdates/4306-Morphic-VG-JuanVuletich-2020Jul27-10h19m-jmv.001.cs.st
      292  2020-10-19 21:23   Image/CoreUpdates/4414-CuisCore-FernandoGasperiJabalera-2020Oct15-10h19m-FGJ.001.cs.st
      182  2020-10-16 10:27   Image/CoreUpdates/4405-LayoutMorphBeWidget-03-JuanVuletich-2020Oct12-21h10m-jmv.001.cs.st
      389  2020-06-30 13:38   Image/CoreUpdates/4245-ParserRefactoring-HernanWilkinson-2020Jun27-19h07m-HAW.001.cs.st
     1503  2020-08-06 18:20   Image/CoreUpdates/4302-Morphic-VG-JuanVuletich-2020Jul27-01h31m-jmv.001.cs.st
      863  2020-11-12 10:20   Image/CoreUpdates/4446-Morphic-tweaks-JuanVuletich-2020Nov10-14h20m-jmv.001.cs.st
     1897  2020-01-01 15:45   Image/CoreUpdates/3987-CodeNodeRefactoring2-HernanWilkinson-2019Dec23-07h21m-HAW.1.cs.st
    12006  2020-03-04 21:32   Image/CoreUpdates/4053-fileReaderServices-use-FileEntry-PhilBellalouna-2020Feb26-12h37m-pb.001.cs.st
     1391  2020-03-10 19:20   Image/CoreUpdates/4059-ExtractMethodFix-NahuelGarbezza-2020Mar06-09h46m-RNG.001.cs.st
      411  2021-03-03 11:00   Image/CoreUpdates/4531-MenuFix-JuanVuletich-2021Feb09-15h15m-jmv.001.cs.st
      528  2020-11-12 10:20   Image/CoreUpdates/4443-ImageMorphFix-KenDickey-2020Nov09-12h11m-KenD.001.cs.st
     2463  2021-05-30 17:05   Image/CoreUpdates/4618-OptimizeInstanceCreation-JuanVuletich-2021May28-13h20m-jmv.001.cs.st
     1947  2020-08-06 18:20   Image/CoreUpdates/4317-Morphic-VG-JuanVuletich-2020Jul28-11h59m-jmv.001.cs.st
     2828  2020-01-01 15:45   Image/CoreUpdates/3990-TemporaryToInstanceVariableWithArgumentsRefactoring-HernanWilkinson-2019Dec23-08h47m-HAW.1.cs.st
    12662  2020-04-29 22:54   Image/CoreUpdates/4127-removeEmptyCategories-JuanVuletich-2020Apr28-15h39m-jmv.001.cs.st
      996  2020-03-10 19:20   Image/CoreUpdates/4062-HonorMinimumExtent-part2-JuanVuletich-2020Mar08-16h10m-jmv.001.cs.st
     7880  2020-08-06 18:20   Image/CoreUpdates/4293-Morphic-VG-JuanVuletich-2020Jul23-15h48m-jmv.001.cs.st
     5630  2020-11-20 22:21   Image/CoreUpdates/4465-ResizeNotGrowOrScale-JuanVuletich-2020Nov19-16h38m-jmv.001.cs.st
     1341  2021-04-30 15:07   Image/CoreUpdates/4579-AutocompleteByParagraphsONLYinWorkspaces-JuanVuletich-2021Apr29-16h06m-jmv.001.cs.st
     6215  2021-03-22 21:20   Image/CoreUpdates/4538-MorphicFrameworkTweaks-JuanVuletich-2021Mar21-16h57m-jmv.001.cs.st
      587  2021-05-20 16:16   Image/CoreUpdates/4598-InspectorLabelTweak-JuanVuletich-2021May16-10h07m-jmv.001.cs.st
      272  2020-01-01 15:45   Image/CoreUpdates/3974-ParserUnusedVaraiblesRefactoring-HernanWilkinson-2019Dec17-09h16m-HAW.1.cs.st
    13721  2020-06-06 16:22   Image/CoreUpdates/4206-LayoutCleanup-KenDickey-2020Jun04-13h11m-KenD.003.cs.st
    22644  2020-10-16 10:27   Image/CoreUpdates/4401-RenameStringMorphAsLabelMorph-JuanVuletich-2020Oct12-21h01m-jmv.001.cs.st
     1287  2021-05-20 16:16   Image/CoreUpdates/4602-Cleanup-JuanVuletich-2021May16-10h27m-jmv.001.cs.st
     1475  2020-06-30 13:38   Image/CoreUpdates/4244-ParserRefactoring-HernanWilkinson-2020Jun27-19h05m-HAW.001.cs.st
     2221  2020-09-15 12:26   Image/CoreUpdates/4375-WorldDrawFix-JuanVuletich-2020Sep11-17h35m-jmv.001.cs.st
     2282  2020-10-26 15:00   Image/CoreUpdates/4428-BeMoreCarefulAboutCodePackageSubclasses-part2-JuanVuletich-2020Oct26-10h05m-jmv.001.cs.st
    45309  2020-04-29 22:54   Image/CoreUpdates/4115-ExtractToTemporary-NahuelGarbezza-2020Apr04-12h34m-RNG.001.cs.st
     1316  2020-06-02 15:11   Image/CoreUpdates/4195-AllowWorkspaceSubclassesUseWholeContentsStyling-JuanVuletich-2020May29-16h29m-jmv.001.cs.st
     2964  2020-06-19 18:52   Image/CoreUpdates/4228-CanNotReferenceSelfSuperThisContextInsideBacktick-HernanWilkinson-2020Jun18-15h25m-HAW.001.cs.st
     2118  2021-04-29 08:43   Image/CoreUpdates/4573-NotificationPositionFixes-JuanVuletich-2021Apr26-15h41m-jmv.001.cs.st
     6888  2020-10-23 15:05   Image/CoreUpdates/4415-AddDouglasBrebnerAsKnownAuthor-DouglasBrebner-2020Oct22-15h49m-db.001.cs.st
      549  2020-11-12 10:20   Image/CoreUpdates/4442-CuisCore-EnsureMinExt-2020Oct26-13h02m-KenD.001.cs.st
      929  2020-08-06 18:20   Image/CoreUpdates/4311-Morphic-VG-JuanVuletich-2020Jul27-14h52m-jmv.001.cs.st
     2597  2020-09-15 12:26   Image/CoreUpdates/4376-Halo-fix-JuanVuletich-2020Sep14-11h19m-jmv.001.cs.st
     8816  2020-03-12 14:35   Image/CoreUpdates/4065-AvoidPotentialHugeFormAllocation-JuanVuletich-2020Mar11-14h17m-jmv.001.cs.st
     1076  2020-02-03 17:49   Image/CoreUpdates/4012-SmalltalkEditor-fix-JuanVuletich-2020Jan09-19h32m-jmv.1.cs.st
    11711  2020-04-29 22:54   Image/CoreUpdates/4125-UpdateInImageDocs-JuanVuletich-2020Apr28-09h56m-jmv.001.cs.st
     2573  2020-08-07 18:13   Image/CoreUpdates/4346-MorphId-fix-JuanVuletich-2020Aug06-17h47m-jmv.002.cs.st
      700  2020-05-26 10:27   Image/CoreUpdates/4181-SmalltalkEditorTolerance-AndresValloud-2020May24-21h02m-sqr.001.cs.st
    15474  2021-01-03 20:03   Image/CoreUpdates/4511-MultiListScroll-KenDickey-2020Dec31-11h39m-KenD.002.cs.st
     2532  2020-02-03 17:49   Image/CoreUpdates/4034-MessageNames-searchString-documentation-PhilBellalouna-2020Jan25-18h00m-pb.1.cs.st
     4947  2020-08-06 18:20   Image/CoreUpdates/4331-FailGracefullyIfNoVGSupport-JuanVuletich-2020Aug03-16h54m-jmv.001.cs.st
     1129  2020-12-28 21:00   Image/CoreUpdates/4502-AskToInstallComplexPackage-JuanVuletich-2020Dec28-14h57m-jmv.001.cs.st
     2000  2020-04-01 13:48   Image/CoreUpdates/4097-PoolDefinitionNotification-HernanWilkinson-2020Mar30-18h08m-HAW.1.cs.st
     5487  2020-08-06 18:20   Image/CoreUpdates/4271-Morphic-VG-JuanVuletich-2020Jul21-10h41m-jmv.001.cs.st
     4387  2020-09-06 13:04   Image/CoreUpdates/4370-FloatArrayCleanup-JuanVuletich-2020Sep03-18h37m-jmv.001.cs.st
     1375  2020-08-07 09:30   Image/CoreUpdates/4347-ActivateWindow-JuanVuletich-2020Aug06-21h33m-jmv.001.cs.st
      202  2020-05-08 14:57   Image/CoreUpdates/4139-PseudoClass-printHierarchy fix-HernanWilkinson-2020May07-13h01m-HAW.001.cs.st
     2261  2019-12-06 21:00   Image/CoreUpdates/3960-NewInstVarPreconditionForSuperclass-HernanWilkinson-2019Nov12-15h55m-HAW.1.cs.st
      438  2020-11-12 10:20   Image/CoreUpdates/4441-PseudoClass-removeSelector-fix-JuanVuletich-2020Nov06-09h57m-jmv.001.cs.st
     3002  2020-06-02 15:11   Image/CoreUpdates/4190-ShoutWorkspacesInParagraphs-JuanVuletich-2020May26-14h53m-jmv.001.cs.st
     2456  2020-11-25 17:24   Image/CoreUpdates/4478-MorphicRepairFix-JuanVuletich-2020Nov24-16h50m-jmv.002.cs.st
      456  2021-04-30 15:07   Image/CoreUpdates/4577-MorphicDrawingErrorFix-JuanVuletich-2021Apr29-14h52m-jmv.001.cs.st
     3153  2021-04-28 17:35   Image/CoreUpdates/4572-FontLoadFix-JuanVuletich-2021Apr28-11h50m-jmv.001.cs.st
     2966  2020-08-07 19:37   Image/CoreUpdates/4349-LayoutMorphNoVisibleSubMorphs-GeraldKlix-2020Aug07-KLG.002.cs.st
      500  2020-05-22 20:30   Image/CoreUpdates/4158-headTail-HernanWilkinson-2020May21-17h06m-HAW.001.cs.st
     3087  2020-01-01 15:45   Image/CoreUpdates/3969-RemoveUnusedTempsRefactoring-HernanWilkinson-2019Dec12-16h46m-HAW.1.cs.st
      698  2020-08-06 18:20   Image/CoreUpdates/4313-Morphic-VG-JuanVuletich-2020Jul27-16h05m-jmv.001.cs.st
    11466  2020-12-28 21:00   Image/CoreUpdates/4501-SyntheticEventsUseSameTimerAsVMevents-JuanVuletich-2020Dec23-15h21m-jmv.001.cs.st
     1134  2020-10-05 17:30   Image/CoreUpdates/4386-Morph-topLeftMightNotBeOrigin-JuanVuletich-2020Sep28-10h33m-jmv.001.cs.st
      964  2020-08-07 09:30   Image/CoreUpdates/4345-RemoveDragHandPointer-JuanVuletich-2020Aug06-17h10m-jmv.001.cs.st
     2175  2020-06-06 16:22   Image/CoreUpdates/4207-LayoutUpdate-KenDickey-2020Jun02-18h41m-KenD.001.cs.st
      716  2021-01-06 21:14   Image/CoreUpdates/4519-AvoidWalkback-JuanVuletich-2021Jan05-14h47m-jmv.001.cs.st
      654  2020-05-22 20:30   Image/CoreUpdates/4150-TrueTypeFix-JuanVuletich-2020May20-15h25m-jmv.001.cs.st
     1097  2021-05-06 17:36   Image/CoreUpdates/4589-NicerSubtitlesInMenus-GeraldKlix-2021May06-15h57m-KLG.001.cs.st
     2058  2020-06-12 18:50   Image/CoreUpdates/4219-Font-Cleanup-JuanVuletich-2020Jun12-11h28m-jmv.001.cs.st
      768  2021-05-11 00:40   Image/CoreUpdates/4590-BrowserCommentTextMorph-tweaks-JuanVuletich-2021May10-12h20m-jmv.001.cs.st
      531  2021-03-22 21:20   Image/CoreUpdates/4542-StylingWithEmphasisInWorkspacesPreference-JuanVuletich-2021Mar22-17h16m-jmv.001.cs.st
     7535  2020-11-19 18:56   Image/CoreUpdates/4458-ClipAllSubmorphsNotJustLast-JuanVuletich-2020Nov17-09h24m-jmv.001.cs.st
      330  2020-07-28 19:40   Image/CoreUpdates/4255-SmalltalkCompleterFixes-HernanWilkinson-2020Jul27-18h39m-HAW.001.cs.st
     5593  2020-01-01 15:45   Image/CoreUpdates/3984-RenameTemporaryWithOtherBlocksDeclaringNewVariable-EricBrandwein-2019Dec18-16h29m-EB.1.cs.st
     3264  2020-11-19 18:56   Image/CoreUpdates/4457-Workspace-fullPrintIt-option-JuanVuletich-2020Nov16-10h41m-jmv.001.cs.st
     9017  2021-04-14 07:49   Image/CoreUpdates/4568-MinimalWindowsCleanup-LucianoEstebanNotarfrancesco-2021Mar29-10h32m-len.001.cs.st
      428  2020-08-06 18:20   Image/CoreUpdates/4324-use-privateDisplayBounds-JuanVuletich-2020Jul31-16h52m-jmv.001.cs.st
     5419  2020-05-22 20:30   Image/CoreUpdates/4146-DivisionDocumentation-LucianoEstebanNotarfrancesco-2020May17-05h31m-len.001.cs.st
     4328  2020-04-01 13:48   Image/CoreUpdates/4102-FontPicker-fixes-JuanVuletich-2020Mar31-19h06m-jmv.001.cs.st
      502  2020-05-26 10:27   Image/CoreUpdates/4182-useAlwaysLeftArrow-LucianoEstebanNotarfrancesco-2020May24-10h18m-len.001.cs.st
     2479  2020-02-03 17:49   Image/CoreUpdates/4028-BitBltCommentFix-JuanVuletich-2020Jan18-14h15m-jmv.1.cs.st
     1188  2020-01-01 15:45   Image/CoreUpdates/3966-RemoveUnusedTempInsideBlock-EricBrandwein-2019Dec09-17h42m-EB.1.cs.st
     7581  2020-08-06 18:20   Image/CoreUpdates/4268-Morphic-Refactor-JuanVuletich-2020Jul20-16h20m-jmv.001.cs.st
     3411  2020-01-01 15:45   Image/CoreUpdates/3993-ExtractMethodRefactorings2-HernanWilkinson-2019Dec23-11h44m-HAW.1.cs.st
     1050  2020-08-06 18:20   Image/CoreUpdates/4264-Morphic-refactor-JuanVuletich-2020Jul17-17h58m-jmv.001.cs.st
      861  2020-10-24 17:59   Image/CoreUpdates/4416-LabelMorph-Tweaks-KenDickey-2020Oct23-12h42m-KenD.001.cs.st
      613  2020-10-05 17:30   Image/CoreUpdates/4391-Morph-rotation-JuanVuletich-2020Oct04-20h19m-jmv.001.cs.st
    16597  2020-07-13 16:59   Image/CoreUpdates/4253-AutoCompleterNotSmalltalkSpecific-JuanVuletich-2020Jul06-09h21m-jmv.001.cs.st
     1335  2020-08-06 18:20   Image/CoreUpdates/4260-MorphicRefactor-JuanVuletich-2020Jul12-12h18m-jmv.001.cs.st
     6424  2020-02-03 17:49   Image/CoreUpdates/4025-CuisCore-NahuelGarbezza-2020Jan12-21h12m-RNG.1.cs.st
    54913  2020-05-24 16:39   Image/CoreUpdates/4164-NonModalStringRequests-LucianoEstebanNotarfrancesco-2020May23-20h43m-len.001.cs.st
     1615  2020-08-18 10:20   Image/CoreUpdates/4342-RemoveUnusedIvarFromHandMorph-JuanVuletich-2020Jul31-16h13m-jmv.001.cs.st
     1450  2020-08-06 18:20   Image/CoreUpdates/4322-AddPrivateDisplayBoundsIvarToMorph-JuanVuletich-2020Jul31-16h13m-jmv.001.cs.st
      223  2020-08-06 18:20   Image/CoreUpdates/4282-Morphic-VG-JuanVuletich-2020Jul22-22h57m-jmv.001.cs.st
      686  2020-05-15 14:36   Image/CoreUpdates/4143-ColorIsThirtyTwoBitSlotsObject-JuanVuletich-2020May14-17h15m-jmv.001.cs.st
    16227  2020-08-06 18:20   Image/CoreUpdates/4321-Morph-flags-JuanVuletich-2020Jul31-15h42m-jmv.002.cs.st
     1438  2021-05-03 22:18   Image/CoreUpdates/4583-MorphGrabFix-JuanVuletich-2021May03-10h59m-jmv.001.cs.st
    11409  2020-08-06 18:20   Image/CoreUpdates/4262-Morphic-Refactor-JuanVuletich-2020Jul17-17h01m-jmv.001.cs.st
     1693  2020-01-01 15:45   Image/CoreUpdates/3997-UsePreDebugWindowForInternalErrors-HernanWilkinson-2019Dec26-11h11m-HAW.1.cs.st
     4664  2020-08-06 18:20   Image/CoreUpdates/4287-Morphic-VG-JuanVuletich-2020Jul23-11h31m-jmv.001.cs.st
     5309  2020-06-19 18:52   Image/CoreUpdates/4222-MenuFix-JuanVuletich-2020Jun16-18h17m-jmv.001.cs.st
      437  2020-04-01 13:48   Image/CoreUpdates/4082-MorphicTranslation-methods-behave-according-to-documentation-PhilBellalouna-2020Mar30-18h28m-pb.001.cs.st
     3190  2021-05-02 15:36   Image/CoreUpdates/4581-terminate-fix-JuanVuletich-2021Apr29-12h43m-jmv.001.cs.st
      387  2021-03-22 21:20   Image/CoreUpdates/4541-Cleanup-JuanVuletich-2021Mar22-17h10m-jmv.001.cs.st
     5208  2020-05-22 20:30   Image/CoreUpdates/4159-rollback-4152-JuanVuletich-2020May21-17h46m-jmv.001.cs.st
      530  2020-11-16 15:55   Image/CoreUpdates/4451-morphIdComment-JuanVuletich-2020Nov12-09h51m-jmv.001.cs.st
      249  2021-05-20 16:16   Image/CoreUpdates/4606-Random-next-JuanVuletich-2021May19-10h56m-jmv.001.cs.st
     1491  2020-03-10 19:20   Image/CoreUpdates/4064-MinExtent-furtherTweaks-JuanVuletich-2020Mar09-10h06m-jmv.001.cs.st
     3407  2020-02-03 17:49   Image/CoreUpdates/4015-Cleanup-JuanVuletich-2020Jan10-14h35m-jmv.1.cs.st
      935  2021-01-01 21:44   Image/CoreUpdates/4507-findSelectorFix-JuanVuletich-2020Dec30-14h38m-jmv.001.cs.st
     1743  2021-04-09 11:10   Image/CoreUpdates/4564-displayBounds-refactor-JuanVuletich-2021Apr08-16h15m-jmv.003.cs.st
     2708  2020-08-06 18:20   Image/CoreUpdates/4283-Morphic-VG-JuanVuletich-2020Jul22-22h57m-jmv.001.cs.st
      515  2021-01-03 12:32   Image/CoreUpdates/4509-contextTagMovedToSuper-HernanWilkinson-2020Dec30-19h30m-HAW.001.cs.st
     3719  2020-04-01 13:48   Image/CoreUpdates/4095-AutoCompleteRefactor-NicolasPapagnaMaldonado-2020Mar16-22h56m-NPM.5.cs.st
      775  2020-06-06 16:22   Image/CoreUpdates/4205-FormSerializationFix-JuanVuletich-2020Jun04-20h27m-jmv.001.cs.st
     7180  2020-08-06 18:20   Image/CoreUpdates/4314-Morphic-VG-JuanVuletich-2020Jul27-16h05m-jmv.001.cs.st
     1032  2020-08-06 18:20   Image/CoreUpdates/4292-Morphic-VG-JuanVuletich-2020Jul23-15h46m-jmv.001.cs.st
     1751  2020-10-27 10:44   Image/CoreUpdates/4432-MorphicDrawingErrorFixes-JuanVuletich-2020Oct26-16h41m-jmv.001.cs.st
     1256  2020-10-16 10:27   Image/CoreUpdates/4413-AdditionalMorphReorganization-JuanVuletich-2020Oct15-09h30m-jmv.001.cs.st
      218  2021-03-22 21:20   Image/CoreUpdates/4539-SetInspectorFix-JuanVuletich-2021Mar22-16h00m-jmv.001.cs.st
     3383  2020-08-06 18:20   Image/CoreUpdates/4281-Morphic-VG-JuanVuletich-2020Jul22-20h03m-jmv.004.cs.st
     3877  2020-02-03 17:49   Image/CoreUpdates/4016-CodeFileBrowser-color-lists-fixes-JuanVuletich-2020Jan10-15h35m-jmv.1.cs.st
     1016  2020-03-28 20:54   Image/CoreUpdates/4070-Duration-printString-tweak-JuanVuletich-2020Mar13-08h18m-jmv.001.cs.st
     9619  2020-06-19 18:52   Image/CoreUpdates/4220-CommentFixes-DouglasBrebner-2020Jun15-13h40m-db.001.cs.st
     1131  2020-02-03 17:49   Image/CoreUpdates/4011-AllowTextAsListItems-JuanVuletich-2020Jan09-19h31m-jmv.1.cs.st
      227  2020-12-20 14:08   Image/CoreUpdates/4490-CodePackage-packageDirectoryName-KenDickey-2020Dec18-15h53m-KenD.001.cs.st
     1036  2020-01-01 15:45   Image/CoreUpdates/3978-UndeclareVariabeRefactoring-HernanWilkinson-2019Dec17-12h05m-HAW.1.cs.st
      201  2020-03-10 19:20   Image/CoreUpdates/4063-CuisCoreScrollRsz-KenD-2020Mar08-13h37m-KenD.001.cs.st
     1332  2020-10-16 10:27   Image/CoreUpdates/4400-MakeRectangleLikeMorphSubclassesBeWidgets-JuanVuletich-2020Oct12-20h58m-jmv.001.cs.st
     3525  2020-06-12 18:50   Image/CoreUpdates/4217-Font-Cleanup-JuanVuletich-2020Jun11-10h25m-jmv.001.cs.st
     1070  2021-03-29 18:48   Image/CoreUpdates/4551-InvalidNumberOnSyntaxHL-HernanWilkinson-2021Mar29-10h16m-HAW.001.cs.st
     6291  2020-08-06 18:20   Image/CoreUpdates/4336-DamageRecorder-redesign-JuanVuletich-2020Aug05-00h08m-jmv.001.cs.st
      698  2020-08-06 18:20   Image/CoreUpdates/4323-set-privateDisplayBounds-JuanVuletich-2020Jul31-16h48m-jmv.001.cs.st
     3954  2021-02-10 16:42   Image/CoreUpdates/4529-ScrollbarFix-JuanVuletich-2021Feb08-17h50m-jmv.001.cs.st
    14218  2020-11-25 17:24   Image/CoreUpdates/4476-HaloFixes-JuanVuletich-2020Nov24-12h11m-jmv.001.cs.st
      753  2021-04-10 11:15   Image/CoreUpdates/4567-BetterAccessorToWorld-JuanVuletich-2021Apr09-14h41m-jmv.001.cs.st
    13538  2020-04-03 23:09   Image/CoreUpdates/4103-FixMethodPreambleAccess-JuanVuletich-2020Apr02-15h40m-jmv.001.cs.st
      276  2020-05-24 16:39   Image/CoreUpdates/4171-DontBeSoPedanticWithTheDefaultDesktop-JuanVuletich-2020May24-10h07m-jmv.001.cs.st
      202  2021-01-15 19:09   Image/CoreUpdates/4523-Cleanup-JuanVuletich-2021Jan14-18h07m-jmv.001.cs.st
     2201  2020-12-30 13:52   Image/CoreUpdates/4506-findSelectorFix-HernanWilkinson-2020Dec29-16h36m-jmv.001.cs.st
     3659  2020-08-06 18:20   Image/CoreUpdates/4305-Morphic-VG-JuanVuletich-2020Jul27-00h40m-jmv.002.cs.st
      809  2021-05-06 08:02   Image/CoreUpdates/4587-ReturnToDefaultCursor-JuanVuletich-2021May05-15h48m-jmv.001.cs.st
     1650  2021-05-30 17:05   Image/CoreUpdates/4614-MenuItemMorph-form-caching-JuanVuletich-2021May28-13h09m-jmv.001.cs.st
     1956  2020-03-04 21:32   Image/CoreUpdates/4037-LogProgressToTranscript-JuanVuletich-2020Feb16-20h54m-jmv.1.cs.st
     3711  2020-09-25 09:28   Image/CoreUpdates/4378-BetterWordingOfSaveAsNewVersion-JuanVuletich-2020Sep24-10h44m-jmv.001.cs.st
      295  2020-04-29 22:54   Image/CoreUpdates/4123-LayoutSpec-PrivateAccessors-JuanVuletich-2020Apr26-21h43m-jmv.001.cs.st
      284  2020-06-11 10:32   Image/CoreUpdates/4213-delete-deprecated-methods-JuanVuletich-2020Jun08-12h13m-jmv.001.cs.st
     1275  2020-04-17 21:31   Image/CoreUpdates/4110-AddIdIvarToMorph-JuanVuletich-2020Apr06-09h34m-jmv.003.cs.st
      973  2020-08-06 18:20   Image/CoreUpdates/4261-HaloFixes-JuanVuletich-2020Jul12-20h40m-jmv.001.cs.st
     3256  2020-06-12 18:50   Image/CoreUpdates/4218-Font-Cleanup-JuanVuletich-2020Jun11-10h27m-jmv.001.cs.st
     3368  2020-05-26 10:27   Image/CoreUpdates/4175-AvoidUnwantedMaterialization-JuanVuletich-2020May23-20h14m-jmv.001.cs.st
      505  2020-12-28 21:00   Image/CoreUpdates/4499-HaloMorph-tweak-JuanVuletich-2020Dec23-10h12m-jmv.001.cs.st
     4353  2021-05-02 15:36   Image/CoreUpdates/4580-terminate-fixes-JaromirMatas-2021Apr08-21h20m-jar.002.cs.st
     1762  2020-10-16 10:27   Image/CoreUpdates/4403-LayoutMorphBeWidget-01-JuanVuletich-2020Oct12-21h07m-jmv.001.cs.st
     1118  2020-06-19 18:52   Image/CoreUpdates/4224-EmbossedTextFix-JuanVuletich-2020Jun16-19h12m-jmv.001.cs.st
     6390  2020-06-11 10:32   Image/CoreUpdates/4209-Layouts-mark-deprecated-methods-JuanVuletich-2020Jun05-10h22m-jmv.002.cs.st
      289  2020-10-16 10:27   Image/CoreUpdates/4406-InnerPluggableMorphBeWidget-JuanVuletich-2020Jul31-16h13m-jmv.001.cs.st
     8262  2020-10-16 10:27   Image/CoreUpdates/4397-WidgetMorph-JuanVuletich-2020Oct12-19h11m-jmv.003.cs.st
     1544  2020-04-01 13:48   Image/CoreUpdates/4089-TemporariesDefinitionASTVisitor-NahuelGarbezza-2020Mar29-16h16m-RNG.1.cs.st
      803  2020-05-22 20:30   Image/CoreUpdates/4157-headToFirstAvailableRename-HernanWilkinson-2020May21-16h50m-HAW.001.cs.st
      812  2021-03-28 22:51   Image/CoreUpdates/4544-WordArrayForUtf32-JuanVuletich-2021Mar25-15h55m-jmv.001.cs.st
      429  2021-03-28 22:51   Image/CoreUpdates/4547-CheapWindowReframe-fix-JuanVuletich-2021Mar26-15h51m-jmv.001.cs.st
  9031208  2021-05-30 17:05   Image/Cuis5.0-4619.image
 13237728  2021-05-30 17:05   Image/Cuis5.0-4619.changes
   356088  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerif/DejaVuSerif-Bold.ttf
   347460  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerif/DejaVuSerif-BoldItalic.ttf
   345996  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerif/DejaVuSerif-Italic.ttf
   380132  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerif/DejaVuSerif.ttf
   705684  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSans/DejaVuSans-Bold.ttf
   757076  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSans/DejaVuSans.ttf
   635416  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSans/DejaVuSans-Oblique.ttf
   643292  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSans/DejaVuSans-BoldOblique.ttf
   340712  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansMono/DejaVuSansMono.ttf
   331992  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansMono/DejaVuSansMono-Bold.ttf
   253580  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansMono/DejaVuSansMono-BoldOblique.ttf
   251932  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansMono/DejaVuSansMono-Oblique.ttf
   680264  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansCondensed/DejaVuSansCondensed.ttf
   665028  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansCondensed/DejaVuSansCondensed-Bold.ttf
   599292  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansCondensed/DejaVuSansCondensed-Oblique.ttf
   611836  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSansCondensed/DejaVuSansCondensed-BoldOblique.ttf
   346508  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerifCondensed/DejaVuSerifCondensed-BoldItalic.ttf
   345324  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerifCondensed/DejaVuSerifCondensed-Italic.ttf
   331244  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerifCondensed/DejaVuSerifCondensed-Bold.ttf
   346664  2020-06-19 18:52   Image/TrueTypeFonts/DejaVu/DejaVuSerifCondensed/DejaVuSerifCondensed.ttf
   344236  2020-06-19 18:52   Image/TrueTypeFonts/LearningCurveDashed/learning_curve_dashed_ot_tt.ttf
   108336  2020-06-19 18:52   Image/TrueTypeFonts/LearningCurve/learning_curve_bold_ot_tt.ttf
   104920  2020-06-19 18:52   Image/TrueTypeFonts/LearningCurve/learning_curve_regular_ot_tt.ttf
   266840  2019-05-17 16:51   Image/TrueTypeFonts/Gentium/GenBasB.ttf
   264216  2019-05-17 16:51   Image/TrueTypeFonts/Gentium/GenBasR.ttf
   258680  2019-05-17 16:51   Image/TrueTypeFonts/Gentium/GenBasI.ttf
   245852  2019-05-17 16:51   Image/TrueTypeFonts/Gentium/GenBasBI.ttf
   272648  2020-06-19 18:52   Image/TrueTypeFonts/AndikaNewBasic/AndikaNewBasic-BI.ttf
   276424  2020-06-19 18:52   Image/TrueTypeFonts/AndikaNewBasic/AndikaNewBasic-B.ttf
   290024  2020-06-19 18:52   Image/TrueTypeFonts/AndikaNewBasic/AndikaNewBasic-I.ttf
   309724  2020-06-19 18:52   Image/TrueTypeFonts/AndikaNewBasic/AndikaNewBasic-R.ttf
   185780  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSansBright/cmunbmo.ttf
   152548  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSansBright/cmunbbx.ttf
   189888  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSansBright/cmunbxo.ttf
   145840  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSansBright/cmunbmr.ttf
   232632  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernTypewriterVariable/cmunvi.ttf
   193880  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernTypewriterVariable/cmunvt.ttf
   249680  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernTypewriter/cmunit.ttf
   214528  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernTypewriter/cmuntt.ttf
   227272  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernTypewriter/cmuntb.ttf
   256112  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernTypewriter/cmuntx.ttf
   200524  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSans/cmunsx.ttf
   185920  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSans/cmunsi.ttf
   234180  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSans/cmunso.ttf
   149416  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSans/cmunss.ttf
   210868  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernConcreteRoman/cmunorm.ttf
   275808  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernConcreteRoman/cmunoti.ttf
   205612  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernConcreteRoman/cmunobx.ttf
   276804  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernConcreteRoman/cmunobi.ttf
   199792  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSansDemiCondensed/cmunssdc.ttf
   285096  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSerif/cmunbi.ttf
   235656  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSerif/cmunrm.ttf
   289276  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSerif/cmunti.ttf
   221904  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/ComputerModernSerif/cmunbx.ttf
   362568  2020-06-19 18:52   Image/TrueTypeFonts/ComputerModern/NeoEuler/ams-euler.ttf
    49020  2019-05-12 13:46   Image/TrueTypeFonts/AlexBrush/AlexBrush-Regular.ttf
  1487109  2019-05-17 16:56   Documentation/StyledTextEditor/Documents/StyledTextEditor ESUG.pdf
  1304268  2019-05-17 16:54   Documentation/Calendars/Chalten/A Point Based Model of the Gregorian Calendar.pdf
   170323  2021-03-07 16:35   Documentation/Erudite/MorphicBook.pdf
   145737  2019-05-17 16:55   Documentation/Erudite/CuisManual.pdf
   159582  2019-05-17 16:55   Documentation/Erudite/PetitParserTutorial.pdf
   158655  2019-05-17 16:55   Documentation/Erudite/EruditeManual.pdf
   228238  2019-05-17 16:54   Documentation/Measures/Aconcagua/Arithmetic with Measurements on Dynamically Typed Object Oriented Languages.pdf
  4567181  2021-04-28 19:35   Documentation/TheCuisBook.pdf
  5451208  2021-05-30 21:59   Documentation/HaverOnCuis.pdf
    56087  2021-05-31 00:09   LICENSES.txt
       81  2021-05-31 00:09   haver
       80  2021-05-31 00:09   cuis
---------                     -------
128934713                     913 files


More information about the Cuis-dev mailing list