Skip to content

Commit

Permalink
Update changelog, version & suffix.
Browse files Browse the repository at this point in the history
Also, remove UTF-8 signature from .bat file for DOS sessions. Update
the change log for new release.
  • Loading branch information
walterpg committed Dec 30, 2021
1 parent 6b8a6ef commit f6f9676
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
10 changes: 7 additions & 3 deletions BuildMe.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
::
::
:: Google Sync Plugin for KeePass Password Safe
:: Copyright © 2012-2016 DesignsInnovate
:: Copyright © 2014-2016 Paul Voegler
Expand All @@ -24,7 +24,7 @@

set archname=KPSyncForDrive
set kp_version_manifest_name=kpsync_final
set versionPrefix=4.0.7
set versionPrefix=4.1.0
set versionSuffix=unstable
set netsdkver=net45

Expand Down Expand Up @@ -52,7 +52,11 @@ if %errorlevel% NEQ 0 goto error

xcopy src\bin\Release\%netsdkver%\*.* build\bin /e /h
copy build\bin\*.plgx build\dist\
%sevenzip% a -tzip -r build\dist\%archname%-%versionPrefix%-%versionSuffix%.zip .\build\bin\*.dll .\build\bin\*.pdb .\build\bin\es\*
set zipFileName=%archname%-%versionPrefix%-%versionSuffix%.zip
if [%versionSuffix%]==[] (
set zipFileName=%archname%-%versionPrefix%.zip
)
%sevenzip% a -tzip -r build\dist\%zipFileName% .\build\bin\*.dll .\build\bin\*.pdb .\build\bin\es\*
.\lib\src\GenVerInfo\bin\Release\%netsdkver%\GenVerInfo.exe .\build\bin\%archname%.dll .\%kp_version_manifest_name%.txt

if not exist %pandoc% goto end
Expand Down
14 changes: 14 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 4.1.0

There are only a few bugfixes and enhancements in this release:

* Several modifications to address issues related to the [Auto Sync](https://www.kpsync.org/usage/autosync) feature, as mentioned in #49 and #50. If you continue to experience these problems in this release, do let us know.
* The [configuration](https://www.kpsync.org/install/config) UI has undergone a minor makeover. This includes improvements in visual performance for higher pixel density displays.

#### Release Notes

Though unresolved [issues](https://github.com/walterpg/google-drive-sync/issues) and many reasonable enhancement requests remain, it appears that most who have used and commented on the operation of the plugin are generally satisfied with its day-to-day performance. Google reports that in the last 30 days the plugin successfully exercised Drive transactions at an average rate of 2-3 per minute. We are therefore pleased to announce this first "General Availability" release.

Apologies again for the delay, and not yet addressing the concerns of all users. Life has a curious habit of distracting us from our favorite endeavors. It is our *intention* to pick up the pace with new features in the new year. As always your involvement and support are most welcome.

---
## 4.0.7-beta

#### [Important: do not use KeePass 2.48 with this or the prior two plugin releases.](https://www.kpsync.org/notices/kp2-48-save) The [2.48.1](https://sourceforge.net/projects/keepass/files/KeePass%202.x/2.48.1/KeePass-2.48.1-Setup.exe/download) release fixes a blocking issue, and earlier KeePass releases do not appear to exhibit the problem.
Expand Down

0 comments on commit f6f9676

Please sign in to comment.