Lukas Renggli wrote: > > In the context menu of each item there is the option to load the change. > > Lukas > > -- > Lukas Renggli > www.lukas-renggli.ch >
Hi Lukas Ah, you must mean the "Install incoming version" item on the right-click menu! Thanks. There is a limitation with this approach that I discovered but it can be easily overcome. Let me document it here in case other people stumbled upon this thread in the future. http://forum.world.st/file/n3509764/install_incoming.png Let's say that you have defined a new class and new methods for it. In the screenshot above, I right-click on the change to the method. Then I select "Install incoming version". However, this will throw a DNU error since the class i.e. LanguageDesigner is new (notice the green tick by it). If you try to install a class by right-clicking, you notice that none of the menu items are available. So you have the following situation: you want to install a new method but you can't because the new class has not been defined yet. You can't install the new class using the right-click menu because that option is not available. The (simple) solution I have found is to copy the code to define a new class i.e. "Object subclass: #..." and then DoIt. Now you have your new class defined and you can do "Install incoming version" on the new method(s). -- Nick -- View this message in context: http://forum.world.st/Monticello-How-to-select-unselect-changes-to-be-committed-tp3507981p3509764.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
