Releases: MrBrianGale/remoteapptool
Fixes File Lock errors
This release should fix the file locking issues reported in Issue kimmknight#3
The fix this time is to check both source and destination files for locks and if no locks are found, attempt the copy. If the copy was unsuccessful, catch the error, rename the destination to have _NEW in the file name before the extension, and try the copy again. As this is a temporary file, this shouldn't cause any issues.
I do not have Wix installed at this time, but it is on my todo list, so my change may result in the RDP file generated by wix to contain _NEW in the name,.
I do not think this should cause any big issues, but that is why it gets tested!
Fix advanced options
Advanced Options should not be clickable when MSI is selected.
This pre-release includes prior fixes and disables the Advanced button when MSI mode is selected.
Version number updated to indicate this is a BETA build.
EDIT - updated to hopefully fix issue number 3 or at least allow better error handling. Version number updated as well.
EDIT 2 - updated release files as they had a bug which I introduced while testing the MSI creation part without the MSI tool insalled.
Fix Create Icon bug
Fixes the bug in Issue kimmknight#18 - error message while creating icon.
This version fixes the error that popped up while making icons for the connection without setting up file type associations.
NOTE - This version does NOT have audio redirection features added in.
Add Advanced options
Adds advanced options to the RDP file creation to allow for Microphone and Speaker redirection.
This release is a WIP release as it is on my fork of the project and not on the official release.
This inherits the changes I made to help address issue kimmknight#3 due to me branching and forking improperly,but I want the changes from issue kimmknight#3 to be implemented in my future releases anyways.
This release is built using the DEBUG options so you may get unfriendly error messages (useful to me) and compiler optimizations are not applied.
RemoteAppTool with lock-file checks
Release adds more error checking in for file locks. In the event the file comes back as locked, it will now present to the user what is locking the file.
Reproducing issue kimmknight#3 is incredibly difficult so this release is to catch and present what is locking.
If you are using this release, PLEASE report back information in the main project (not my fork) under issue 3:
kimmknight#3
This build is built in DEBUG mode with DEBUG options turned on, so error messages will be unfriendly but more helpful for the developers.
Fixes Issue #3
This build should fix issue kimmknight#3 - intermittent errors when building an MSI.
The problem I think is caused by self-locking, so the lock check we built in does not actually catch the problem. The problem comes into play when we tell the system to copy a file overtop of itself. It creates a lock on the source file then errors as the destination file is locked.
Fix is to rename the temp files to ensure we are not overwriting them.
This is a debug build (hence the name) and as such does not have optimizations turned on and will present ugly error messages. These error messages are useful to developers, so please include them in any issues that come up.