Re: Automatic Updater in Python

2020-04-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: Automatic Updater in Python @10I think you have to use the popen constructor directly; see the Python subprocess module docs for details. URL: https://forum.audiogames.net/post/516379/#p516379 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: Automatic Updater in Python

2020-04-05 Thread AudioGames . net Forum — Developers room : TJ . Breitenfeldt via Audiogames-reflector
Re: Automatic Updater in Python Thank you for the replies. I have almost finished implementing Hijackers method for handling this, and so far it is working great. However, I have been having problems finding the write code for creating a new process that is independent of the process

Re: Automatic Updater in Python

2020-04-04 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: Automatic Updater in Python yeah same here URL: https://forum.audiogames.net/post/515972/#p515972 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Automatic Updater in Python

2020-04-04 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector
Re: Automatic Updater in Python @NicklasMCHD. I can't read the docs of Just Update. It brings me to a not found error. URL: https://forum.audiogames.net/post/515954/#p515954 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: Automatic Updater in Python

2020-04-04 Thread AudioGames . net Forum — Developers room : NicklasMCHD via Audiogames-reflector
Re: Automatic Updater in Python @6 it does not have that out of the box (since that is UI specific) but it's very easy to implement, since the update process have a callback function, that you can use to get the status and update a progress bar URL: https://forum.audiogames.net/post

Re: Automatic Updater in Python

2020-04-04 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: Automatic Updater in Python @5 does your updater have progress bars that checks the download progress or do i need to do that with wx my self? URL: https://forum.audiogames.net/post/515904/#p515904 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: Automatic Updater in Python

2020-04-04 Thread AudioGames . net Forum — Developers room : NicklasMCHD via Audiogames-reflector
Re: Automatic Updater in Python If you want, you can also check out JustUpdate which is an updater framework I developed. I'm currently using it in all my projects, both on Windows and MacOS, and it's working amazing so far. URL: https://forum.audiogames.net/post/515891/#p515891

Re: Automatic Updater in Python

2020-04-03 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: Automatic Updater in Python Grab Rust, C++, or Go. Write your updater in that as a small executable.  Go is probably the easiest for someone who is going to learn a language and never touch it again. You won't even have a UI in the updater.  Here is what you need to do, modulo details

Re: Automatic Updater in Python

2020-04-03 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: Automatic Updater in Python What you could also do is have it not unzip the files and have the user do that, or you could have it extract to a subfolder. URL: https://forum.audiogames.net/post/515779/#p515779 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: Automatic Updater in Python

2020-04-03 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: Automatic Updater in Python First: yeah, only Windows knows the limitation to lock file access as long as its in use AFAIK, hence you can properly implement the easiest updating method on Linux/Mac: overwriting even the running executable. On Windows however, there will most likely

Automatic Updater in Python

2020-04-03 Thread AudioGames . net Forum — Developers room : TJ . Breitenfeldt via Audiogames-reflector
Automatic Updater in Python Hi, I am trying to create a platform independent automatic updater in python 3.7.6. I had it working successfully for a while, but only on windows. This is kind of a confusing thing I am trying to do, and perhaps someone can tell me if I am just nuts, and need