Jump to content

karu

Web Development Lead [WDL]
  • Posts

    1117
  • Joined

  • Donations

    0.00 USD 

Posts posted by karu

  1. 21 hours ago, Codemonkeyx said:

    It seems there is still a slight difference between how this value is being calculated/rounded in the two different places?

    Yes. Should be same in both now.

     

    21 hours ago, Codemonkeyx said:

    One other minor thing I noticed is that the "Energy" value on the Item pages is being shown to 2 decimal places,

    Should be fixed.

     

    Thanks,

    • Like 1
  2. On 3/9/2024 at 4:35 AM, Doctor said:

    Why can't all the systems just have a symmetrical size? It makes the math to convert coordinate systems so much more annoying. :(

     

    How so? If you use sector size or calculate own bbox around visible navs the math is same. Translate absolute ingame coords to  relative coords (0..1 inside bbox), then relative coords to pixel coords on screen.

  3. 8 hours ago, Codemonkeyx said:

    I think you might be confusing the config with the Character & Starship Creator?  e&b/net7 config are just basic windows applications with a single panel.

     

    e&b/net7 config will run short benchmark (vidtest) which switches to selected mode to find out polygons/sec metrics, and the default happened to be fullscreen.

     

    --


    I used clean test container for testing and there some issues.

     

    Because wine is not in PATH, winetricks can't find it. Adding "export PATH=$(dirname $WINE_EXEC):$PATH" after "WINE_EXEC=$(install_wine)" will fix it. Worst case, it adds /usr/bin there twice.

    There's also missing cabextract as it might of been installed by winetricks. Winetricks does suggest installing cabextract when it fails to install fonts (i think).

     

    You also cant do "WINE_EXEC=$(install_wine)" because if wine-staging is not installed, then WINE_EXEC will contain all the text displayed at install time.

    You could do something like this

    WINE_EXEC=$(find_wine)

    if [ -z "$WINE_EXEC" ]; then install_wine ; WINE_EXEC=$(find_wine) ; ... if still not found, error out; fi

     

    apt install command should probably be "sudo DEBIAN_FRONTEND=noninteractive apt --assume-yes install --install-recommends " as I was getting hidden dialog options that required me to press enter blindly.

×
×
  • Create New...