GithubHelp home page GithubHelp logo

Comments (1)

tmedwards avatar tmedwards commented on August 10, 2024
1. The version of SugarCube used to produce the story

The version.long() method is likely what you want.

Console example:

/* Need to prefix it with the `SugarCube` namespace. */
console.log(SugarCube.version.long());

<<print>> example:

<<= version.long()>>

 

2. The version of tweego or Twine used to compile the story

When compiled against the Twine 2 release of SugarCube, then that information should be part of the <tw-storydata> element's content attributes—specifically, creator and creator-version.

Console example:

console.log($('tw-storydata').attr('creator') + " v" + $('tw-storydata').attr('creator-version'));

<<print>> example:

<<= $('tw-storydata').attr('creator') + " v" + $('tw-storydata').attr('creator-version')>>

 

When compiled against the Twine 1 release of SugarCube, that information may not exist—it depends on the compiler. No one should be using the Twine 1 release, though, so let's forget about it.

 

3. The version of OS where the story was compiled

That information is simply not available anywhere, nor should it be useful if it were.

 

4. The version of OS where the the story is being run
5. The version of browser being used to run the story

Your best bet here is likely to check the navigator.userAgent property, though you'll have to sift through the dross, or outright lies, to find the information you want—assuming it exists.

Console example:

console.log(navigator.userAgent);

<<print>> example:

<<= navigator.userAgent>>

from sugarcube-2.

Related Issues (20)

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.