Giter VIP home page Giter VIP logo

Comments (15)

Rosalie241 avatar Rosalie241 commented on August 24, 2024 2

I apologize for the issue, removing the ScreenshotPath line from the mupen64plus.cfg configuration file should resolve this issue.

I changed the default screenshot directory, which was already set when you've run a previous version of RMG, so it didnt change accordingly.

from rmg.

JakobDev avatar JakobDev commented on August 24, 2024 2

@Rosalie241 You can publish hot fixes directly without waiting.

  1. Go to the Buildserver
  2. Login with your GitHub Account
  3. Wait until the Build is finished
  4. Search your Build in "Unpublished builds" list
  5. Click on the number to get to the build information
  6. Click "Publish"

from rmg.

pizzadude avatar pizzadude commented on August 24, 2024 1

I had to show hidden files, and there was no username folder between /home and /.var

Odd, i'm not sure how the steam deck handles things (i'm on fedora kde)

Glad you got it working though.

from rmg.

pizzadude avatar pizzadude commented on August 24, 2024

the portable version works

from rmg.

JakobDev avatar JakobDev commented on August 24, 2024

This looks like a missing permission. Here is the code for the directory:

std::string CoreGetDefaultScreenshotDirectory(void)
{
std::string directory;
#ifdef PORTABLE_INSTALL
directory = "Screenshots";
#else // Not Portable
directory = get_command_output("xdg-user-dir PICTURES");
if (!directory.empty())
{
directory += "/RMG";
}
else
{
directory = get_var_directory("XDG_PICTURES_DIR", "/RMG", "HOME", "/Pictures/RMG");
}
#endif // PORTABLE_INSTALL
return directory;
}

This looks like permission for xdg-pictures, but grating this permission does not fix the Issue.

from rmg.

pizzadude avatar pizzadude commented on August 24, 2024

Removing the ScreenshotPath line didn't fix it, but changing it to something like:

ScreenshotPath = "/home/username/.var/app/com.github.Rosalie241.RMG/data/RMG/Screenshots"

fixed it. Thanks.

from rmg.

DSzero8 avatar DSzero8 commented on August 24, 2024

Hello,

I'm also running into this issue after the most recent update.
Would you happen to know what the directory path is for the mentioned config file?
I'm having trouble finding it on my steamdeck.

Thank you for your time.

from rmg.

pizzadude avatar pizzadude commented on August 24, 2024

Hello,

I'm also running into this issue after the most recent update.
Would you happen to know what the directory path is for the mentioned config file?
I'm having trouble finding it on my steamdeck.

Thank you for your time.

/home/INSERT_YOUR_USERNAME_HERE/.var/app/com.github.Rosalie241.RMG/config/RMG/mupen64plus.cfg

from rmg.

DSzero8 avatar DSzero8 commented on August 24, 2024

Hello,
I'm also running into this issue after the most recent update.
Would you happen to know what the directory path is for the mentioned config file?
I'm having trouble finding it on my steamdeck.
Thank you for your time.

/home/INSERT_YOUR_USERNAME_HERE/.var/app/com.github.Rosalie241.RMG/config/RMG/mupen64plus.cfg

Got it! Thank you.
I had to show hidden files, and there was no username folder between /home and /.var
Changed screenshots path and I can launch the app now. :)

from rmg.

bonzai1888 avatar bonzai1888 commented on August 24, 2024

Hello,
I'm also running into this issue after the most recent update.
Would you happen to know what the directory path is for the mentioned config file?
I'm having trouble finding it on my steamdeck.
Thank you for your time.

/home/INSERT_YOUR_USERNAME_HERE/.var/app/com.github.Rosalie241.RMG/config/RMG/mupen64plus.cfg

Got it! Thank you. I had to show hidden files, and there was no username folder between /home and /.var Changed screenshots path and I can launch the app now. :)
I tried to fix this, can you offer some guidance on how to do it?

from rmg.

DSzero8 avatar DSzero8 commented on August 24, 2024

Hello,
I'm also running into this issue after the most recent update.
Would you happen to know what the directory path is for the mentioned config file?
I'm having trouble finding it on my steamdeck.
Thank you for your time.

/home/INSERT_YOUR_USERNAME_HERE/.var/app/com.github.Rosalie241.RMG/config/RMG/mupen64plus.cfg

Got it! Thank you. I had to show hidden files, and there was no username folder between /home and /.var Changed screenshots path and I can launch the app now. :)

I tried to fix this, can you offer some guidance on how to do it?

This is how I fixed mine on SteamDeck:

  1. I created a "Screenshots" folder in the "Pictures" directory under "Places" when viewed in Dolphin while in desktop mode.
  2. Then, go to Home and click on the hamburger icon (Three lines in the top right of the Dolphin file browser)
  3. Select the "Show Hidden Files" option
  4. Go into: .var -> app -> com.github.Rosalie241.RMG -> config -> RMG -> open the "mupen64plus.cfg" file
  5. Find the "ScreenshotsPath =" section and add the dirctory path for the screenshots path, in my case it looks like this: ScreenshotsPath = "/home/deck/Pictures/Screenshots/"
  6. Then save and close the .cfg file
  7. Open Rosalie's Mupen GUI and play your games!

Thats how I got mine to work, hope that helps.
Obviously if you create your screenshots folder somewhere else, you'll need to use the correct path.

from rmg.

bonzai1888 avatar bonzai1888 commented on August 24, 2024

from rmg.

Rosalie241 avatar Rosalie241 commented on August 24, 2024

Ive made a bugfix release (v0.1.6), should be in the flathub repos in a few hours which should resolve this issue by changing the screenshots directory when it hasnt changed from the broken previous default one from v0.1.4.

from rmg.

Rosalie241 avatar Rosalie241 commented on August 24, 2024

Done, it should be published to the repo now ❀️

from rmg.

Rosalie241 avatar Rosalie241 commented on August 24, 2024

Considering this issue has been fixed, I'll close this issue πŸ’•

from rmg.

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.