Search found 5848 matches

by airsoftsoftwair
Sun Dec 14, 2025 5:47 pm
Forum: Showcase
Topic: SHA and HMAC functions ported to Hollywood
Replies: 11
Views: 11354

Re: SHA and HMAC functions ported to Hollywood

- New: Added SHA1() function to DOS library and SHA1Str() function to string library; these functions can be used to compute SHA1 checksums of files and strings; even though SHA1 is somewhat obsolete now, it's still widely used and can be useful in lots of cases; since SHA1 implementations have qui...
by airsoftsoftwair
Sun Dec 14, 2025 5:46 pm
Forum: General programming
Topic: CreateList Modifying Items.
Replies: 2
Views: 280

Re: CreateList Modifying Items.

But is this considered modifying the list (Referring to line Temp[40][1].a = 5): No, the doc clearly says that the only modification that is forbidden is adding or removing items without using functions from the table library. Just modifying the values of existing items is perfectly allowed. The on...
by airsoftsoftwair
Sun Dec 14, 2025 5:43 pm
Forum: GL Galore
Topic: Can't detect inactive fullscreen display
Replies: 3
Views: 3161

Re: Can't detect inactive fullscreen display

Ok, I'll try but the issue sounds very strange. Could also be related to MiniGL. I'll check.
by airsoftsoftwair
Fri Dec 05, 2025 7:51 pm
Forum: APK Compiler
Topic: Windows 86
Replies: 3
Views: 346

Re: Windows 86

It's rather unlikely. It's enough work already to keep APK Compiler working on Windows because with almost every new version of Android Studio for Windows the APK Compiler needs to be adapted as well. That's why I'm not too enthusiastic about adding support for another platform...
by airsoftsoftwair
Fri Dec 05, 2025 7:49 pm
Forum: APK Compiler
Topic: error compiling apk
Replies: 3
Views: 483

Re: error compiling apk

The most recent APK Compiler version is almost 3 years old. A lot has changed in Android Studio so make sure you use the Android Studio version APK Compiler was designed for. AFAICS this is Android Studio Electric Eel (2022.1.1).

Or wait for an APK Compiler update which will come soon ;)
by airsoftsoftwair
Fri Dec 05, 2025 7:47 pm
Forum: Hollywood bugs
Topic: GetVolumeName() and GetVolumeInfo() on Windows
Replies: 1
Views: 253

Re: GetVolumeName() and GetVolumeInfo() on Windows

I hope it's only a not initialized variable. Actually, this was because on Windows Hollywood wasn't checking if the drive name specified exists. Of course those functions should fail if the specified drive doesn't exist. Fixed this now, thanks for reporting! - Fix [Windows]: GetVolumeName() and Get...
by airsoftsoftwair
Fri Nov 28, 2025 8:58 pm
Forum: Hollywood bugs
Topic: ShowDisplay() problem
Replies: 1
Views: 759

Re: ShowDisplay() problem

Right, this is fixed now, thanks for reporting!

Code: Select all

- Fix [Linux]: Calling ShowDisplay() on a hidden display caused the program to freeze on newer Linux distributions
by airsoftsoftwair
Fri Nov 21, 2025 9:08 pm
Forum: Newbie questions
Topic: macOS Tahoe
Replies: 1
Views: 691

Re: macOS Tahoe

I don't have a Tahoe test system but I don't see any reason why it shouldn't work. Have you tested the main Hollywood distribution on Tahoe? The app you pointed to seems to use RapaGUI which could be the cause for the crash.
by airsoftsoftwair
Fri Nov 21, 2025 9:05 pm
Forum: General programming
Topic: String indexes, spaces, and WriteTable()
Replies: 2
Views: 782

Re: String indexes, spaces, and WriteTable()

I have a table with string indexes, and the strings come from outside the program and may also contain spaces. The space character is currently reserved as a special marker for the data type serialized into a JSON key in case the data is non-standard. It is mentioned here . This is necessary so tha...