Search found 5446 matches

by airsoftsoftwair
Mon Feb 11, 2019 9:11 pm
Forum: Announcements
Topic: Hollywood 8: Supremacy out now!
Replies: 65
Views: 76668

Re: Hollywood 8: Supremacy out now!

Sure, there's lots of stuff for Amiga users as well like the new network adapter plugin interfaces (will soon be used by a SSL/TLS plugin), serial port support, icon support, whole directories can be linked and monitored...
by airsoftsoftwair
Mon Feb 11, 2019 7:43 pm
Forum: Polybios
Topic: Polybios plugin embedded in executable but sometimes required
Replies: 6
Views: 7204

Re: Polybios plugin embedded in executable but sometimes required

Just doing a

Code: Select all

@REQUIRE "polybios"
won't embed the plugin in the executable. You need to do this instead:

Code: Select all

@REQUIRE "polybios", {Link = True}
by airsoftsoftwair
Mon Feb 11, 2019 7:41 pm
Forum: Announcements
Topic: Hollywood 8: Supremacy out now!
Replies: 65
Views: 76668

Re: Hollywood 8: Supremacy out now!

ilbarbax wrote: Mon Feb 11, 2019 4:28 pm What does it means Icon support. Can someone explain better. Does it means I can open icons like brushes in any system?
There's a new icon type now which can store several images in different sizes. This is very important for HiDPI support and it will also be very important for RapaGUI 2.0.
by airsoftsoftwair
Mon Feb 11, 2019 7:40 pm
Forum: Announcements
Topic: Hollywood 8: Supremacy out now!
Replies: 65
Views: 76668

Re: Hollywood 8: Supremacy out now!

The plugin-download page doesn't include RapaGUI for Android yet, but I'll give it a try when available. On Android RapaGUI is an integral part of Hollywood now. I've updated the downloads page to contain this information. "System notifications are now supported" Is this a Android only fe...
by airsoftsoftwair
Mon Feb 04, 2019 5:30 pm
Forum: General programming
Topic: Possibility to do SplitStr with more than one character?
Replies: 3
Views: 2693

Re: Possibility to do SplitStr with more than one character?

Code: Select all

- New: SplitStr() also supports strings longer than one character as the splitting token
by airsoftsoftwair
Mon Feb 04, 2019 5:30 pm
Forum: Hollywood bugs
Topic: SplitStr does not accept scandinavian special alphabets
Replies: 2
Views: 2477

Re: SplitStr does not accept scandinavian special alphabets

Code: Select all

- Fix: SplitStr() didn't work with UTF-8 characters that contained more than one byte
by airsoftsoftwair
Sat Feb 02, 2019 4:00 pm
Forum: Newbie questions
Topic: Append info to file
Replies: 2
Views: 2699

Re: Append info to file

#MODE_WRITE will always create a blank file. If you want to modify an existing file, you have to use #MODE_READWRITE, even if you don't want to read but just append.
by airsoftsoftwair
Sat Feb 02, 2019 4:00 pm
Forum: RebelSDL
Topic: SDL & Linux ARM
Replies: 31
Views: 38042

Re: SDL & Linux ARM

Code: Select all

- Fix [Linux/arm]: Memory access fault when trying to link Hollywood plugins to an executables 
by airsoftsoftwair
Sat Feb 02, 2019 12:36 pm
Forum: General programming
Topic: Possibility to do SplitStr with more than one character?
Replies: 3
Views: 2693

Re: Possibility to do SplitStr with more than one character?

Should be possible to add this functionality.
by airsoftsoftwair
Sat Feb 02, 2019 12:35 pm
Forum: Hollywood bugs
Topic: SplitStr does not accept scandinavian special alphabets
Replies: 2
Views: 2477

Re: SplitStr does not accept scandinavian special alphabets

Yes, this is a known limitation. SplitStr() currently needs a single byte as a separator and Scandinavian characters will be two bytes in UTF-8. As a workaround, you could switch to ISO 8859-1 mode. Then they should work.