GithubHelp home page GithubHelp logo

playonlinux_tools's People

Contributors

aplufr avatar qparis avatar superplumus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

playonlinux_tools's Issues

[Feature request] Public repository for currently available PlayOnLinux scripts

Recently I have played a lot with writing local PlayOnLinux scripts to install and run some closed-source homemade programs.
Thus I have some thoughts to share with @qparis and the Team:

So I would suggest to publish all known 1741 scripts to some specially created GitHub repository on PlayOnLinux account.
This will allow users to read and write PoL scripts more effectively using existing scripts as a correctly working basement.
I think this will allow PoL (and Phoenicis PoL) to "beat" modern Bottles or Lutris projects ;)

[Bug] Starcraft Brood War Disc Install does not work

note: The playonlinux forums do not work and I don't know where else to put this bug report.

This is using the original disk to install the game that were released.

The Starcraft: Brood War install does not work. I get an error message saying that it can't find the original Starcraft install even though that game is installed. I tried installing Brood War with Starcraft in the following states.

  1. Base install
  2. Base install with 1.15 patch
  3. Base install with 1.15.2 patch

edit:
I noticed when I inspected the Wine directories that there were two wine directories for Starcraft. This is a bug. Starcraft: Brood War is suppose to install in inside the same directory as Starcraft. It is not suppose to create its own directory. From using this in the past, it didn't use to do this. Someone must have modified the install file which is how this bug got introduced.

edit2: The only fix that needs to be done is for Starcraft BroodWar CD installation directory to be changed to the same directory that Starcraft CD installation uses. All the patches use the correct directory.

Checking possible to extract string using UTF8

When checking if strings can be extracted by xgettext it do it without --from-code option so it assume is ASCII.

Although string must be in English this don't mean that you can't have other non-ascii characters (for example in names) and I think is safer to call it assuming is encoded in UTF-8.

So this code:

check_xgettext_ok()
{
    if [ "$(which xgettext)" != "" ]
    then
        s_echo "Checking possible to extract string"

        if xgettext -L Shell "/tmp/script" &> /dev/null
        then
            s_ok 3
        else
            s_err 3
        fi
    fi
}

should be writted as:

check_xgettext_ok()
{
    if [ "$(which xgettext)" != "" ]
    then
        s_echo "Checking possible to extract string"

        if xgettext -L Shell --from-code=UTF-8 "/tmp/script" &> /dev/null
        then
            s_ok 3
        else
            s_err 3
        fi
    fi
}

Virtual Drive Creator select System Wine Version

In PlayOnLinux when you go to Configure->New and go through the virtual drive creator wizard and get to the Wine version section, you are unable to select the "System" Wine version and are forced to select a specific version of Wine. Please add an option to select the system version of Wine.

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.