Search found 604 matches

by jPV
Sun Jun 12, 2022 5:04 pm
Forum: Hollywood bugs
Topic: ChangeDisplaySize options on AmigaOS3
Replies: 5
Views: 2780

ChangeDisplaySize options on AmigaOS3

If you use X/Y position options with the ChangeDisplaySize() function, window drawing bugs on OS3 with certain window dimensions. This doesn't seem to happen on MorphOS, OS4, or Windows versions, but on OS3 (68k/WOS compiled exes). Smaller window gets normal window borders: https://jpv.amigaaa.com/t...
by jPV
Sun Jun 12, 2022 4:29 pm
Forum: Showcase
Topic: RNOPDF
Replies: 33
Views: 31814

Re: RNOPDF

Well, at least simple "search next" and "search previous" options now :) Version 1.5 : - Added the JPEG support for exporting - Exporting can be aborted with the Esc key - More options when exporting via ARexx - Added "Search next" and "Search previous" option...
by jPV
Fri Jun 03, 2022 12:40 pm
Forum: Polybios
Topic: Polybios temp files
Replies: 1
Views: 2762

Polybios temp files

Polybios writes some temp files (tmp300000 etc), at least with big pdf files like this: link On MorphOS the temp files are written into T: (RAM), but on 68k setups it writes the files on HD instead of RAM. This probably is because it's assumed that 68k setups don't have much memory available, but it...
by jPV
Mon May 23, 2022 7:47 am
Forum: General plugin questions
Topic: hURL and newer SSL implementations
Replies: 8
Views: 3803

hURL and newer SSL implementations

OpenSSL 1.x is getting older and some issues are raising that are fixed in the latest OpenSSL 3.x versions, are there plans to update the underlying SSL engines on the hURL plugin now that we have native OpenSSL 3.x libraries for Amiga compatible platforms too? AmiSSL v5 was just released and it has...
by jPV
Sat May 07, 2022 9:43 am
Forum: Showcase
Topic: Real Amiga SWOS Total Pack
Replies: 6
Views: 4701

Re: Real Amiga SWOS Total Pack

An update released, it's available through the built-in updater function and in Grunch. A recording of the "release party stream" is available here . WHAT'S NEW: VER. 1.1 - Added full soundtrack: 25 different themes & remixed versions - Added 18 World Tournaments: |- WC: 1930, 1934, 19...
by jPV
Sun Apr 24, 2022 8:40 pm
Forum: Announcements
Topic: Hollywood 9.1 out now
Replies: 10
Views: 7677

Re: Hollywood 9.1 out now

Thanks, great stuff!
by jPV
Tue Apr 19, 2022 1:38 pm
Forum: General plugin questions
Topic: PostType in DownloadFile doesn't work with hURL
Replies: 1
Views: 2753

PostType in DownloadFile doesn't work with hURL

The PostType option in DownloadFile() doesn't work when using the hURL adapter, you get "Content-Type: application/x-www-form-urlencoded" always. This can be worked-around with the CustomHeaders though... @REQUIRE "hurl" ; PostType doesn't work with hurl (works with the "def...
by jPV
Mon Apr 18, 2022 11:37 am
Forum: General plugin questions
Topic: DownloadFile with hURL only works with escaped URLs
Replies: 1
Views: 2304

DownloadFile with hURL only works with escaped URLs

Should hURL's high-level interface work with DownloadFile()'s Encoded option? Or is it normal that it requires manual URL escaping always? Or is there a bug with certain characters like %? @REQUIRE "hurl" url$ = "http://jpv.amigaaa.com/test/url%20test/test%25file.txt" DownloadFil...
by jPV
Thu Apr 07, 2022 12:31 pm
Forum: General programming
Topic: Saving a file appends a blank line
Replies: 2
Views: 1395

Re: Saving a file appends a blank line

First, when you're using the FileToString() function, you don't need to open and close a file (notice that you don't give it the file ID (1), but you only give it a filename, so it's useless to open/close the file). So, you're mixing different kind of functions here and that can cause confusion. The...
by jPV
Sun Mar 13, 2022 1:29 pm
Forum: General plugin questions
Topic: Some AAC files play too slow with the avcodec plugin
Replies: 2
Views: 2835

Some AAC files play too slow with the avcodec plugin

Some AAC files (not all) seem to play around half the speed they should with the avcodec plugin. Would there be something that could be fixed in the plugin? Tested on MorphOS... and MPlayer on MorphOS plays the file at the correct speed. Here's an example file . @REQUIRE "avcodec" OpenMusi...