Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In Pharo 2.0 the SpyWizard does not take notice of newly added packages. Possible solution: use RPackageOrganizer #940

Closed
seandenigris opened this issue Aug 3, 2015 · 1 comment

Comments

@seandenigris
Copy link
Contributor

Originally reported on Google Code with ID 940

Describe the problem: what do you get? what do you expect?
In Pharo 2.0 the SpyWizard does not take notice of newly added packages.

How to reproduce the problem: step by step if necessary
- load Spy into Pharo 2.0
- open for example the HapaoWizard and have a look at the packages available. Close
the wizard.
- add a new package to your image
- open the HapaoWizard again: the new package does not appear in the list of available
packages.


Possible solution:
Change
SpyWizard>>packagesList
    ^ (PackageOrganizer default packageNames select: #isString) asSortedCollection: [
:a :b | a < b ]

to:
SpyWizard>>packagesList
    ^ (RPackageOrganizer default packageNames select: #isString) asSortedCollection: [
:a :b | a < b ]

or perhaps:
SpyWizard>>packagesList
    ^ (SystemNavigation default packageOrganizerClass default packageNames select: #isString)
asSortedCollection: [ :a :b | a < b ]

Reported by wm@fastmail.fm on 2013-05-23 16:43:29

@seandenigris
Copy link
Contributor Author

I think this won't be fixed.

Reported by tudor@tudorgirba.com on 2013-11-16 23:04:58

  • Status changed: WontFix

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant