Playnite Forums
  • Playnite Web
  • Rules
  • Members
  • Team
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Playnite Forums Playnite News and Updates Playnite 9 release is available

Playnite 9 release is available
adhamgaber
Offline

#21
10-15-2021, 04:05 PM
(10-15-2021, 03:41 PM)Crow Wrote: Something is blocking Playnite from accessing its server: Unable to connect to the remote server. That's also why diag upload failed.
I was hoping you'd have suggestions on what might be causing the problem, I'm not really fluent in tech :/
Crow
Offline

Administrator
#22
10-15-2021, 04:09 PM
Firewall, Antivirus, VPN or some other network issue. The server that can't be reached is api.playnite.link
TobiAlex
Offline

#23
10-15-2021, 07:18 PM
  • Removed IronPython and Batch game script support
Guys, why?  Sad
icetoseeyoufr
Offline

#24
10-15-2021, 09:56 PM
I wanted to drop by to actually say: Thanks for the update, it's everything i was hyped for, and i'm NOT disapointed. I can't remember how it was before i was using playnite, but i now know i can't live without it.
darklinkpower
Offline

Super Moderator
#25
10-15-2021, 10:25 PM
(10-15-2021, 07:18 PM)TobiAlex Wrote:
  • Removed IronPython and Batch game script support
Guys, why?  Sad
No one was making any extensions using IronPython and it was time consuming to maintain support for it.

Batch support was removed because you can do everything you can do with it in Powershell and much more things.
TobiAlex
Offline

#26
10-15-2021, 10:54 PM (This post was last modified: 10-15-2021, 11:01 PM by TobiAlex.)
No, i can't. I'm use batch to switch steam account (launch before game start):

@echo off

taskkill /IM "steam.exe" /F /FI "STATUS eq RUNNING"
set username="myusername"
Goto end

:end

reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
start steam://open/main

exit

And its work fine.

Now is converted to:

# Batch support has been removed in Playnite 9

# This conversion was automatically generated
$scriptPath = (Join-Path $env:TEMP 'playniteScript.bat')
@"
@echo off

taskkill /IM "steam.exe" /F /FI "STATUS eq RUNNING"
set username="myusername"
Goto end

:end

reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
start steam://open/main

exit
"@ | Out-File $scriptPath -Encoding ascii
Start-Process "cmd.exe" "/c $scriptPath" -Wait

Yea, Steam start, but:

1. Game not lunch
2. Playnite waiting... for what?
deangelnet
Offline

#27
10-16-2021, 03:18 AM (This post was last modified: 10-16-2021, 03:21 AM by deangelnet.)
(09-30-2021, 09:40 AM)Crow Wrote:
  • Playnite's library data are now stored in less files and they are  locked while Playnite is running. This should fix data corruption issues  when syncing Playnite's files via could storage solutions.
Is it possible to let playnite's library data still unlocked?

(10-15-2021, 10:54 PM)TobiAlex Wrote: No, i can't. I'm use batch to switch steam account (launch before game start):

@echo off

taskkill /IM "steam.exe" /F /FI "STATUS eq RUNNING"
set username="myusername"
Goto end

:end

reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
start steam://open/main

exit

And its work fine.

Now is converted to:

# Batch support has been removed in Playnite 9

# This conversion was automatically generated
$scriptPath = (Join-Path $env:TEMP 'playniteScript.bat')
@"
@echo off

taskkill /IM "steam.exe" /F /FI "STATUS eq RUNNING"
set username="myusername"
Goto end

:end

reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
start steam://open/main

exit
"@ | Out-File $scriptPath -Encoding ascii
Start-Process "cmd.exe" "/c $scriptPath" -Wait

Yea, Steam start, but:

1. Game not lunch
2. Playnite waiting... for what?
Compile your batch to exe and put script on playnite to run your exe. That should work.
MaestroLiendre
Offline

#28
10-16-2021, 06:49 AM
First of all thank you so much for the update as it's an amazing work.

But I don't know if being dumb but I really can't find a way to save or customize the filter presets, could someone point me in the right direction?

Thanks!
Crow
Offline

Administrator
#29
10-16-2021, 07:15 AM
(10-16-2021, 06:49 AM)MaestroLiendre Wrote: First of all thank you so much for the update as it's an amazing work.

But I don't know if being dumb but I really can't find a way to save or customize the filter presets, could someone point me in the right direction?

Thanks!

You can do that from Filter panel.
Luka8989
Offline

#30
10-16-2021, 07:46 AM
(10-16-2021, 07:15 AM)Crow Wrote:
(10-16-2021, 06:49 AM)MaestroLiendre Wrote: First of all thank you so much for the update as it's an amazing work.

But I don't know if being dumb but I really can't find a way to save or customize the filter presets, could someone point me in the right direction?

Thanks!

You can do that from Filter panel.
It would be necessary to be able to arrange the filters at will and not in alphabetical order, for full screen themes it is essential
MaestroLiendre
Offline

#31
10-16-2021, 08:29 AM
(10-16-2021, 07:46 AM)Luka8989 Wrote:
(10-16-2021, 07:15 AM)Crow Wrote:
(10-16-2021, 06:49 AM)MaestroLiendre Wrote: First of all thank you so much for the update as it's an amazing work.

But I don't know if being dumb but I really can't find a way to save or customize the filter presets, could someone point me in the right direction?

Thanks!

You can do that from Filter panel.
It would be necessary to be able to arrange the filters at will and not in alphabetical order, for full screen themes it is essential
Literally I was coming to ask if this was possible, as so far I'll have to number them "01 - Library", etc.
Is there no option for now, is it?
Thanks for the great work
Crow
Offline

Administrator
#32
10-16-2021, 09:02 AM
There is no option but better preset management is planned, no ETA https://github.com/JosefNemec/Playnite/issues/2510
dabinn
Offline

#33
10-16-2021, 12:18 PM
Is MAME removed from Playnite 9.x? Could not find a way to add MAME ROMs.
Crow
Offline

Administrator
#34
10-16-2021, 12:29 PM
Arcade emulators are currently not natively supported. You have to set them up manually.

https://playnite.link/docs/master/manual/emulators.html
https://github.com/JosefNemec/Playnite/issues/2407
TobiAlex
Offline

#35
10-16-2021, 06:41 PM
(10-16-2021, 03:18 AM)deangelnet Wrote:
(09-30-2021, 09:40 AM)Crow Wrote:
  • Playnite's library data are now stored in less files and they are  locked while Playnite is running. This should fix data corruption issues  when syncing Playnite's files via could storage solutions.
Is it possible to let playnite's library data still unlocked?

(10-15-2021, 10:54 PM)TobiAlex Wrote: No, i can't. I'm use batch to switch steam account (launch before game start):

@echo off

taskkill /IM "steam.exe" /F /FI "STATUS eq RUNNING"
set username="myusername"
Goto end

:end

reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
start steam://open/main

exit

And its work fine.

Now is converted to:

# Batch support has been removed in Playnite 9

# This conversion was automatically generated
$scriptPath = (Join-Path $env:TEMP 'playniteScript.bat')
@"
@echo off

taskkill /IM "steam.exe" /F /FI "STATUS eq RUNNING"
set username="myusername"
Goto end

:end

reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
start steam://open/main

exit
"@ | Out-File $scriptPath -Encoding ascii
Start-Process "cmd.exe" "/c $scriptPath" -Wait

Yea, Steam start, but:

1. Game not lunch
2. Playnite waiting... for what?
Compile your batch to exe and put script on playnite to run your exe. That should work.

Ok, but where to put this complied .exe?
deangelnet
Offline

#36
10-17-2021, 01:48 AM (This post was last modified: 10-17-2021, 01:48 AM by deangelnet.)
(10-16-2021, 06:41 PM)TobiAlex Wrote: Ok, but where to put this complied .exe?

1. Just put on your game folder
2. Put on windows/system32 (if administrator).
3. put on steam folder and create url command on your register ex. resetsteam so the cmd will be like start resetsteam://
ownedbycats
Offline

#37
10-17-2021, 11:45 PM
Thanks for the update and all the work done. Smile
adhamgaber
Offline

#38
10-18-2021, 09:56 PM
Hello, Was wondering about the possibility of adding an integrated web viewer with fullscreen theme support? is that possible?
Solitair
Offline

#39
10-20-2021, 10:21 PM (This post was last modified: 10-21-2021, 08:33 PM by Solitair.)
how do i update my theme to version 9 Sad

ok i did it like the first time from a default copy that worked
poyomg
Offline

#40
10-25-2021, 10:00 PM
G R E A T work guys, it's amazing!

Just some questions/suggestions:

- I guess some changes are heavy on the processor? Because fullscreen mode is a little bit laggy now. Or is it something in my configuration?
- Is grouping in fullscreen mode planned for sometime in the future?
- It would be great to have the possibility to close the app in fullscreen from controller button (PS-X / XBox-B), since it's not very natural to navigate all the UI to the Playnite Icon.

Other than those, I an truly happy with this software, I will definitely contribute, you guys deserve it!
« Next Oldest | Next Newest »
Pages (3): « Previous 1 2 3 Next »



  • View a Printable Version
  • Subscribe to this thread

© Designed by D&D - Powered by MyBB

Linear Mode
Threaded Mode