Search found 4505 matches
- Thu Mar 04, 2021 9:29 pm
- Forum: Wishlist
- Topic: Windows IDE , Line numbering
- Replies: 1
- Views: 86
Re: Windows IDE , Line numbering
Sorry, but this is not likely to come. The RichEdit control used by the Windows IDE is a pain in the a** to program and a seemingly trivial thing like adding line numbers would actually be a huge amount of work which isn't worth the effort IMHO.
- Thu Mar 04, 2021 9:28 pm
- Forum: RapaGUI
- Topic: RapaGUI & macOS
- Replies: 9
- Views: 273
Re: RapaGUI & macOS
Sure, here you go, it's very similar to my screenshot above. I'm pretty sure you would've noticed... :lol: Yup, definitely fixed :) [-] "About..." wasn't moved the the mac's default menu but stayed in the help menu. Maybe this works with RapaGUI 2.0 using a more current version of wxWidgets. I've a...
- Tue Mar 02, 2021 7:55 pm
- Forum: RapaGUI
- Topic: RapaGUI & macOS
- Replies: 9
- Views: 273
Re: RapaGUI & macOS
[*]Run it on a mac with dark mode (I tested on latest Big Sur 11.2.2). [*]There you go, it looks similar to the screenshot I posted above: some widgets are drawn in dark mode, some not (incl. die application's background), some partially (buttons). Tested it and I think it looks correct with RapaGU...
- Tue Mar 02, 2021 7:40 pm
- Forum: Wishlist
- Topic: Make Eval() more flexible
- Replies: 2
- Views: 287
Re: Make Eval() more flexible
Code: Select all
- New: Added "NoDeclare" tag to Eval(); if this is set to TRUE, all undeclared variables in the expression will simply be treated as 0
- Tue Mar 02, 2021 7:39 pm
- Forum: Newbie questions
- Topic: SetTimeout / ClearTimeout troubles
- Replies: 1
- Views: 114
Re: SetTimeout / ClearTimeout troubles
Good spot! This only happens when a plugin replaces Hollywood's inbuilt timer adapter with a custom one. Currently, RapaGUI is the only plugin that does that (and only on Windows, macOS and Linux). Fixed now. - Fix: SetTimeout() didn't return a timeout handle when a timer adapter was installed and N...
- Sun Feb 28, 2021 11:20 am
- Forum: General plugin questions
- Topic: File attributes lost with Zip and CopyFile
- Replies: 1
- Views: 103
Re: File attributes lost with Zip and CopyFile
Right, this is fixed now. Thanks for reporting!
Code: Select all
- Fix: File attributes weren't set correctly when unpacking files via CopyFile()
- Sun Feb 28, 2021 12:04 am
- Forum: Hollywood bugs
- Topic: Problem with #ATTRTRANSPARENTCOLOR
- Replies: 6
- Views: 4115
Re: Problem with #ATTRTRANSPARENTCOLOR
- New: GetAttribute() now supports #ATTRPALETTE, #ATTRDEPTH, and #ATTRTRANSPARENTPEN for types #DISPLAY, #BRUSH, #BGPIC, #SPRITE, #ANIM, #TEXTOBJECT, and #LAYER; this is mainly useful if the source objects have a palette; note that when used with #ANIM or #SPRITE (or anim layers) you also need to p...
- Sat Feb 27, 2021 11:32 pm
- Forum: RapaGUI
- Topic: RapaGUI & macOS
- Replies: 9
- Views: 273
Re: RapaGUI & macOS
This didn't work out as expected, not all elements were drawn in dark mode, but maybe this is fixed in RapaGUI 2.0 as well? I didn't deliberately fix this but it might be fixed in wxWidgets. RapaGUI 2.0 of course uses the latest version of wxWidgets with lots of fixes. Remember that RapaGUI 1.2 is ...
- Sat Feb 27, 2021 11:23 pm
- Forum: General plugin questions
- Topic: CopyFile with Zip is horribly slow
- Replies: 1
- Views: 55
Re: CopyFile with Zip is horribly slow
Ironically, I did add some optimizations when I recently fixed the charset issues in the ZIP plugin reported by you so it should be faster now but CopyFile() will always be much slower than using zip.ExtractFile() because of limitations in the plugin API. The ZIP plugin faces pretty much the same re...
- Sat Feb 27, 2021 11:19 pm
- Forum: General plugin questions
- Topic: Memory consumption with XAD and CopyFile
- Replies: 1
- Views: 56
Re: Memory consumption with XAD and CopyFile
Yes, this is a known issue but I'm afraid there's no way easy way around this. Optimizing this would require designing a completely different plugin interface for CopyFile() for exactly this purpose. Currently, the XAD plugin just hooks into Hollywood's file handler and pretends files in the archive...