summaryrefslogtreecommitdiff
path: root/frontends/riscos
Commit message (Collapse)AuthorAgeFilesLines
* Revert "RISC OS: add SocketWatch module to distribution"HEADmasterJohn-Mark Bell10 days7-1088/+0
| | | | This reverts commit 98b3d3c191fe9097cd4b8d67060aebcea095a85d.
* Revert "RISC OS: use SocketWatch for socket activity"John-Mark Bell10 days2-177/+30
| | | | This reverts commit 9e4f598b7b2f6f92304f5f9e4ed359e7905b37a9.
* RISC OS: use SocketWatch for socket activityJohn-Mark Bell2024-03-142-30/+177
| | | | | | | | | | Use SocketWatch to monitor our sockets and convert activity into a pollword update. This allows us to ditch the schedule-based fetch path and take the same one as we do on other platforms. This also allows us to refactor the main poll loop such that we need only poll idle while waiting for things to happen (once something has happened, we poll aggressively until there are no non-pollword events left).
* RISC OS: add SocketWatch module to distributionJohn-Mark Bell2024-03-147-0/+1088
|
* RISC OS: optimisations for UTF-8<->local encodingJohn-Mark Bell2024-03-131-96/+123
|
* RISC OS: use modern fallthrough mechanismJohn-Mark Bell2024-03-133-3/+5
|
* RISC OS: update Acorn universal boot URLsJohn-Mark Bell2023-12-202-3/+3
| | | | | | | riscos.com reorganised years ago. Follow this reorganisation (although it may be more sensible to stop pointing at this abandonware and suggest using the RISC OS Open universal boot, instead).
* RISC OS: use https in distribution ReadMeJohn-Mark Bell2023-12-202-2/+2
|
* RISC OS: use https in Obey filesJohn-Mark Bell2023-12-192-4/+2
| | | | | Also remove dead link to iyonix.com: the relevant information is apparently now in Issue 3 of the Style Guide.
* RISC OS: use https in help linksJohn-Mark Bell2023-12-192-6/+6
|
* RISC OS: s/Freenode/libera.chat/ in Help filesJohn-Mark Bell2023-12-192-2/+2
|
* RISC OS: update Iconv licensing informationJohn-Mark Bell2023-12-194-19/+825
|
* RISC OS: switch to AcornURI from ROOLJohn-Mark Bell2023-12-195-539/+225
| | | | | | | This is the version of the module provided by ROOL in their universal HardDisc images. It is long past time to retire the cleanroom reimplementation we used to provide (which is no longer actively maintained).
* RISC OS: expose !Cache licensing more obviouslyJohn-Mark Bell2023-12-192-0/+21
| | | | Also, point at the appropriate origin for this component.
* RISC OS: resync !Unicode resource with ROOLJohn-Mark Bell2023-12-1985-3/+14292
| | | | | | This resyncs the !Unicode resource with the latest version provided by ROOL. Additionally, we place the full copyright information into the 3rdParty tree.
* RISC OS: update distribution ReadMeJohn-Mark Bell2023-12-198-27/+12
| | | | | | | | | | | * Point at ROOL Universal HardDisc4 * Shuffle origin information into 3rdParty tree Note that the origin for ARMEABISupport is approximate: at the time of writing, the pre-built version available there is 1.03, but we require 1.04 or later (sources for which are part of GCCSDK in the usual way). We expect that an updated release binary will eventually be published there, so this will do.
* RISC OS: Add "Disable CSS" option to content choices UIMichael Drake2023-11-265-15/+15
|
* RISC OS: Remove last vestiges of plugin supportMichael Drake2023-11-264-78/+0
|
* arm-riscos-gnueabi: require SharedULib 1.16John-Mark Bell2023-03-061-1/+1
|
* RISC OS: add ARMEABISupport 1.05John-Mark Bell2023-03-062-0/+20
|
* RISC OS: update SharedULib to 1.16John-Mark Bell2023-03-062-8/+7
|
* RISC OS: conditionally demand ARMEABISupport in !RunJohn-Mark Bell2022-11-033-0/+9
| | | | | | | Will only be enabled if an EABI-aware compiler is used to build the code. At some point, a suitable copy of ARMEABISupport needs adding to the supplied !System.400.Modules along with licensing information in the 3rdParty directory.
* RISC OS: generate unwind tables for EABI buildsJohn-Mark Bell2022-11-031-0/+3
|
* BuildSystem: make package step depend on POSTEXESJohn-Mark Bell2022-11-031-1/+1
| | | | | The POSTEXE stages might add more stuff to the package contents, so ensure they have completed before starting to package things up.
* Buildsystem: support arm-riscos-gnueabiJohn-Mark Bell2022-11-031-14/+26
|
* RISC OS: Image: Don't override sprite mode for opaque plot typeMichael Drake2022-10-051-5/+8
| | | | | | This fixes local history thumbnails, which are opaque, when plotted on a version of RISC OS that supports alpha sprites, and Tinct is being avoided.
* RISC OS: Allow text selection in URL bar (RO5.28 onwards)John-Mark Bell2022-09-041-1/+4
|
* RISC OS: Dragging favicon drag-saves URLMichael Drake2022-08-281-0/+1
|
* RISC OS: Image: Fix EX0 EY0 plot when avoiding TinctMichael Drake2022-08-251-6/+20
|
* RISC OS: fix awrender glue for EABIJohn-Mark Bell2022-06-051-22/+60
| | | | | | | | | | | | | | The only hand-written asm is the glue to Artworks Render. Update it to be ABI compliant when building for EABI and force the alignment of the data in the .bss section (as unaligned rotated loads are really not a thing). No functional change for non-EABI builds but, as the stack framing differs depending on the ABI in use, we can no longer reliably use fp as the base pointer for on-stack function arguments to awrender_render. Thus, this has been reworked to use ip as the pointer instead and to also use r8/r9 to relieve excess register pressure.
* RISC OS: fix type in awrender_init definition.John-Mark Bell2022-06-031-1/+1
|
* RISC OS: fix snprintf usageJohn-Mark Bell2022-06-032-2/+4
| | | | | | | | | When computing throbber sprite names, ensure the current frame is in range before using it. Similarly ensure the buffer size for the temporary URL bar sprite name is sized such that snprintf has space for the trailing NUL when formatting it to the output buffer.
* RISC OS: fix up use of strncpyJohn-Mark Bell2022-06-034-13/+20
| | | | | | | | Ensure that strings copied using strncpy are NUL terminated. Additionally, replace use of strncpy entirely where we are writing into non-indirected OS icon blocks (where an unterminated 12 character long string is perfectly valid).
* RISC OS: GCC 10 approved fall-through markersJohn-Mark Bell2022-06-032-1/+2
|
* Buildsystem: update for new RISC OS toolchainJohn-Mark Bell2022-06-032-10/+44
| | | | | | | | | | | | | The new toolchain has a different machine triplet, so update the things that care about it to work either way. Remove the expectation that ro-pkg-config exists (it's trivial and the core buildsystem never used it, so let's have some consistency). Determine the location of the zip binary in Makefile.tools, just like for all the other tooling and stop assuming where it's installed in the netsurf.zip target.
* RISC OS: use OS CertData resource, if presentJohn-Mark Bell2022-05-272-1/+4
|
* Fix up size of download URI field in Dutch templatesJohn-Mark Bell2022-05-271-1/+1
|
* s/http/https/ in user-facing URIsJohn-Mark Bell2022-05-277-31/+30
|
* RISC OS: initialise font subsystem after Wimp_InitialiseJohn-Mark Bell2022-05-271-8/+10
| | | | | | | | | | | If RUfl detects it is running in a Wimp task it will display a progress meter while scanning fonts. We had this behaviour until ~2017, when it became broken due to the font initialisation being moved before the call to Wimp_Initialise (because the hotlist display logic got moved to the treeview, which needs fonts set up) Move both the font and hotlist initialisation after the call to Wimp_Initialise to restore the desired behaviour.
* RISC OS: fix up following RUfl API changeJohn-Mark Bell2022-05-271-3/+3
|
* Bitmap: Implement test_opaque in core instead of in every frontend.Michael Drake2022-03-291-50/+0
|
* RISC OS: Include core bitmap header from RO bitmap header.Michael Drake2022-03-242-1/+2
| | | | Squash warnings about enum declared inside parameter list.
* RISC OS: Squash unused variable warning.Michael Drake2022-03-241-1/+1
|
* Bitmap API: Clean up creation flags.Michael Drake2022-03-244-14/+13
|
* RISC OS: Drop bitmap save callback entry; core doesn't use it.Michael Drake2022-03-241-1/+0
|
* RISC OS: Bitmap modified flag is not used.Michael Drake2022-03-241-1/+0
|
* RISC OS: Drop bitmap get bpp function.Michael Drake2022-03-241-15/+0
|
* RISC OS: GUI: Clean up alpha sprite support test.Michael Drake2021-06-251-12/+10
|
* RISC OS: Image: Tinct workaround: Use OS alpha sprite rendering.Michael Drake2021-06-252-6/+67
| | | | | | | | | If NetSurf is configured to use OS for image rendering, and the OS supports Alpha sprites, avoid going via Tinct completely. Going via Tinct loses the alpha channel. However, with this workaround, we lose Tinct's pretiling optimisation for tiling tiny sprites.
* RISC OS: GUI: Add check for sprite alpha channel OS support.Michael Drake2021-06-252-0/+31
|