mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
killing QOwnNotes.exe when updating in Windows
This commit is contained in:
parent
70db243aa0
commit
6cddd38a6c
2 changed files with 10 additions and 0 deletions
|
@ -3,6 +3,9 @@
|
|||
## 17.10.2
|
||||
- fixed that the automatic closing of brackets is only allowed if the cursor was
|
||||
at the end of a block (was removed by a pull request)
|
||||
- the `updater.bat` in Windows now kills the `QOwnNotes.exe` process when the
|
||||
application is updated because it doesn't seem to end in portable mode
|
||||
(for issue [Issue #376](https://github.com/pbek/QOwnNotes/issues/376))
|
||||
|
||||
## 17.10.1
|
||||
- the automatic update dialog will now also be disable per default for
|
||||
|
|
|
@ -10,6 +10,13 @@ set portable=%4
|
|||
set unzipCommand=%unzipExecutable% -o %source% -d %destination%
|
||||
set qownnotesCommand=%destination%\QOwnNotes.exe --after-update %0 %portable%
|
||||
|
||||
rem wait two seconds to kill QOwnNotes.exe
|
||||
timeout 2
|
||||
|
||||
rem killing the QOwnNotes process because it doesn't seem to be killed in
|
||||
rem portable mode
|
||||
taskkill /IM QOwnNotes.exe
|
||||
|
||||
echo %0 %*
|
||||
echo ======================================
|
||||
echo Updating QOwnNotes in folder:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue