Kris

Results 78 issues of Kris

Cloning https://github.com/SeasideSt/Seaside-Legacy30 signals an IceGenericError, the message text is either ‘error reading from the zlib stream’ or ‘bad packet length’: ``` (MCGitHubRepository location: 'github://SeasideSt/Seaside-Legacy30/repository') getOrCreateIcebergRepository ``` I tried running the...

ZnUrl seems to go against RFC 3986, in that it replaces percent-encoded octets for some reserved characters by those characters. Take the following block: ``` [ :url | (ZnUrl fromString:...

In the following example, the `#decodeBytes:` message returns a String that cannot be encoded by `#encodeString:`: ```smalltalk string := ZnCharacterEncoder utf8 decodeBytes: #[16rF4 16r90 16r80 16r80]. "⇒ string is equal...

When using ‘Pharo64-9.0’ with option ‘--headful’, the image doesn’t stay open as expected: ``` ./bin/smalltalkci --headful --smalltalk Pharo64-9.0 ``` It does stay open when using ‘Pharo64-8.0’: ``` ./bin/smalltalkci --headful --smalltalk...

Pharo

**Bug description** `FileList` signals a `FileDoesNotExistException` when opened on a directory containing a ‘dangling’ symbolic link **To Reproduce** In the following example, the inspector is opened and shows the contents...

Bug

**Bug description** For a relative symbolic link, `DiskSymlinkDirectoryEntry>>#targetPath` returns an `AbsolutePath` which does not refer to the correct file **To Reproduce** Example: ```smalltalk command := 'mkdir /tmp/test && cd /tmp/test...

Bug

In the following example, the second `#get:` message signals a ConnectionTimedOut: ```smalltalk ZnServer startDefaultOn: 1701. ZnClient new get: 'http://localhost:1701'. LibC system: 'sleep 2 &'. Smalltalk snapshot: true andQuit: false. (Delay...

This pull request refactors MenuItemMorph to support use of a FormSet for the icon and applies that to the CmdCommand hierarchy. In the CmdCommand hierarchy, the overrides of `#defaultMenuIcon` are...

The ‘close’ icon on tabs in the System Browser gets clipped in Pharo 12 build 1258: Build 1236 seems to be the last build in which the icons don’t get...

Version: Pharo 12
To fix before release

After setting the canvas scale factor to 2 for a Retina display (see pull request #15647), it has to be set back manually to 1 when reopening the image on...