Yes, you need new binaries. xpc was here a few hours ago, he fixed an issue with the undo (Ctrl+Shift+Cursor was not working on brush faces)... hope he has time later to merge in my commits. I wanted to release my own binaries today, but it's better for xpc to consolidate everything first and release the binaries himself.Hipshot wrote:I need binaries to get this working right? Tried just using the .ini with my old bins, didn't really work...
As a side note looking through the code, this can be tested with any v1.6 version:
- I noted that the NextLeakSpot is bound to K and the PrevLeakSpot one to L... we all read from left to right, so the left key L should be the PrevLeakSpot and right key K the NextLeakSpot? Or am I not getting something? I am thinking of swapping the keys internally.
Code: Select all
{"NextLeakSpot", 'K', RAD_CONTROL|RAD_SHIFT, ID_MISC_NEXTLEAKSPOT, "menu_misc_nextleakspot"}, {"PrevLeakSpot", 'L', RAD_CONTROL|RAD_SHIFT, ID_MISC_PREVIOUSLEAKSPOT, "menu_misc_previousleakspot"},
- I noted that the More End Caps, Bevels - Square End Cap function actually calls ID_CURVE_MOREENDCAPSBEVELS_SQUAREBEVEL and that More End Caps, Bevels - Square Bevel uses ID_CURVE_MOREENDCAPSBEVELS_SQUAREENDCAP... IOW the exact opposit.
Alas I never could keep endcap and bevel apart... is Square End Cap presently creating an square endcap, and Square Bevel a square bevel?
If the editor menu does the right thing, then it's an internal naming issue, if not then the IDs were simply accidentally swapped.
Update: The editor was creating the correct content, was strictly an code internal variable naming issue. - Presently you can change the grid via 1-0 *or* KP1-KP0... alas this binds two keys to each SetGrid<x> command, this "hack" prohibits rebinding. So I am wondering:
- I could create command name aliases named SetGrid<x>Alt (10 more commands), that let you bind the grid setting commands via two different keys... so you could set the grid via 1-0 *or* KP1-KP0 or 20 totally different keys.
- Or would those folks that *want* (Hipshot
) the set grid to work on the key pad, be OK with rebinding the 1-0 keys to KP1-KP0 (via shortcuts.ini), thus deactivating the normal 1-0 keys?
- Several of the menu entries are dead, or have functions that never worked (unfinished). I was wondering if it would not be better to comment them out (remove them from the editor menu):
- File menu, Check for GtkRadiant Update (Web) - function unavailable.
- Edit menu, Brush Scripts... - function not implemented.
- Curve menu ,Sphere - was never implemented it seems.