Astares

Results 136 issues of Astares

![image](https://user-images.githubusercontent.com/5980033/177884632-bbb4ddc5-fe59-47da-9849-5c18dc58ede7.png)

Bug

When creating a new project with Pharo/Iceberg the git attributes should be set to Smalltalk by creating a file **.gitattributes** with the following contents ``` *.st linguist-language=Smalltalk ```` See https://github.com/ba-st/RenoirSt/blob/release-candidate/.gitattributes...

Enhancement

Tooltip shows that this command in Calypso method categories pane is **undescribed**. What does it do? ![image](https://user-images.githubusercontent.com/5980033/176728823-962ec685-e2e9-4c91-aacc-9bfdbc78b33e.png)

Cleanup

Pharo 11: AthensCairoCanvas>>#visitQuadSegment: sends an unknown message ![image](https://user-images.githubusercontent.com/5980033/176724014-df6fb35b-0523-4d74-9512-d188d32513a5.png)

Bug

see #10396 and fix it for all "Monticello" related packages: ```Smalltalk badCases := SystemNavigation default allMethodsSelect: [ :each | each sourceCode trimRight size ~= each sourceCode size ]. fixInPackage :=...

Cleanup

The code ```Smalltalk Smalltalk imageDirectory ``` returns a **FileReferences** so you could easily write ```Smalltalk Smalltalk imageDirectory openInOSFileBrowser ``` Unfortunately this is not possible when you write ```Smalltalk Smalltalk vmDirectory...

Cleanup

We have many implementors of #isNotEmpty: ![image](https://user-images.githubusercontent.com/5980033/171041319-66760ba6-2676-4c5f-b7c4-6e0add9eafdf.png) but we have also implementors of #notEmpty ![image](https://user-images.githubusercontent.com/5980033/171041378-89a34330-de1a-4582-bb23-9370c6f6d77a.png) The "isSomething" or "isNotSomething" is usually the better style within the method category "testing". So...

Cleanup

With the new capabilities of inspector extensions using Spec2 it would be nice to have more additional custom inspector extensions - for instance for Zinc.

New Feature

I guess we could substitute the marked part in the method RGMethodDefinition>>#isExtension ![image](https://user-images.githubusercontent.com/5980033/169890595-67d09276-32ba-4525-aff8-f5b4f3e57537.png) with ```Smalltalk self isExtensionMethod ``` as #isExtensionMethod is implemented as: ```Smalltalk isExtensionMethod ^ category beginsWith: '*' ```

Cleanup

I tried this in Pharo 10 release: - create a project in Github (with a README and MIT License) and then clone it locally using Iceberg this means there is...