Jump to content


Dutchdude

Member Since 30 Sep 2012
Offline Last Active 21 Nov 2024 13:48
*****

Posts I've Made

In Topic: RC 9.0 - Problems with Windows filenames that contain Umlauts

7 July 2024 - 13:42

For now i corrected all none ASCII file names on my shares to stop Enigma from crashing when browsing these folders.

And to find them more easily i used a small python script that scans its own and all sub folders and outputs all none ASCII filenames, so you know what to correct.

import os

def is_ascii(s):
    return all(ord(c) < 128 for c in s)

def check_filenames(directory):
    non_ascii_files = []
    for root, dirs, files in os.walk(directory):
        for filename in files:
            if not is_ascii(filename):
                non_ascii_files.append(os.path.join(root, filename))
    return non_ascii_files

# Get the current directory
current_directory = os.getcwd()

non_ascii_files = check_filenames(current_directory)
if non_ascii_files:
    print("Files with non-ASCII characters:")
    for file in non_ascii_files:
        print(file)
else:
    print("All filenames contain only ASCII characters.")

Still hope it can be fixed in the next release though  :)


In Topic: multiboot en vu+ ultimo4k

20 June 2024 - 13:07

Gelukt, met de eerste beschreven optie ;-)

En weer wat geleerd.

 

Multiboot optie is weer zichtbaar en Openpli 9 in slot 2 weer de dev versie.

 

Hartelijk bedankt voor je hulp.


In Topic: multiboot en vu+ ultimo4k

20 June 2024 - 12:22

Box is inderdaad een Duo 4K en via cli kan ik wel wat... 


In Topic: multiboot en vu+ ultimo4k

20 June 2024 - 10:43

Vraagje,

 

Ik had multiboot met Openpli 8 in slot 1 en een oude Openpli 9 beta in slot 2 op de Vu.

Gisteren weer eens naar slot 2 geboot en de updates gedraait. Hierdoor ging de beta naar de release versie 9.

maar nu zie ik dat de multiboot selector optie uit het menu van Openpli 9 is verdwenen.

 

Is er een mogelijkheid om deze optie terug te zetten zodat ik weer naar slot 1 kan booten? ;-)

 

Heb geprobeerd met een usb stick met alleen een lege file met de naam STARTUP_RECOVERY, maar hij boot gewoon weer naar slot 2.


In Topic: RC 9.0 - Problems with Windows filenames that contain Umlauts

19 June 2024 - 22:32

Although i don't know how to fix this, I was wondering if this is still on the backlog?