Giter Site home page Giter Site logo

elitedangerouscore's Introduction

elitedangerouscore's People

Contributors

daniloraisi avatar eahlstan avatar jnorthrup avatar keathmilligan avatar klightspeed avatar merovech avatar mortalfool avatar mysmario avatar nonnemilia avatar robbyxp1 avatar spadino avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

elitedangerouscore's Issues

powerf,basef scope tuck

return (basev + FSDGuardianBoosterRange) * boost;

tiny tweak, means almost nothing.. found this while reading the code:

before

                double powerf = Math.Pow(MaxFuelPerJump / fuelmultiplier, 1 / PowerConstant);
                double basev = powerf * massf;
                if (fuel >= MaxFuelPerJump)
                {
                    return (basev + FSDGuardianBoosterRange) * boost;
                }

after

                if (fuel >= MaxFuelPerJump)
                {
                double powerf = Math.Pow(MaxFuelPerJump / fuelmultiplier, 1 / PowerConstant);
                double basev = powerf * massf;
               return (basev + FSDGuardianBoosterRange) * boost;
                }

Small log issue when converting+deleting screenshots

If the screenshot conversion settings are set to delete the original .bmp file after converting it, the program log entry for the conversion will have an empty space where the deleted file name should be:

Capture
(This should instead be 'Converted X to Y')


Based on a quick look at the code, the problem seems to be line 248 at the end of the Convert() method here:

System.Diagnostics.Debug.WriteLine("Convert " + inputfilename + " at " + systemname + " to " + outputfilename);
logit(string.Format("Converted {0} to {1}".T(EDCTx.ScreenShotImageConverter_CNV), Path.GetFileName(inputfilename) , outputfilename));
return new Tuple<string, string, Size>(inputfilename, outputfilename, finalsize);

Path.GetFileName(inputfilename) is returning null, presumably because the file at inputfilename's location has been deleted, so the log entry gets an empty space added to it rather than a file path.

This seems like an easy "bug" to fix, but I don't know anything about the codebase so I figured I'd post an issue about it rather than messing something up myself.

Engineering info is missing for 5 engineers

Engineering info is missing for 5 different engineers:

  • Chloe Sedesi
  • Etienne Dorn
  • Mel Brandon
  • Marsha Hicks
  • Petra Olmanova

I've looked at their definitions, but they explicitly mention this to be automatically generated by a "netlogentry frontierdata scanner", although I was not able to find any reference to it. Any guidance on this, that I can use to submit a PR?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.