Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyrodan committed Jun 25, 2024
1 parent 0651943 commit d563e88
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

### New

- \#409 Remove old Auth2-Flow (integrated browser)
- \#409 Remove old Auth2-Flow (integrated browser) - was only used fpr Box.com

### Fixed

- \#301, \#347, \#365 [Windows <10 only?] System.Exception: No unused port found! - Thanks to @Jackabomb

### Improved

- Updated Dependencies (AWS, Box, Dropbox, Google Drive, Google Storage, OneDrive)
- Using .Net 4.8 now


## 2.1.0 (2024-06-17)

### New
Expand Down
16 changes: 9 additions & 7 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
set version=2.1.0
set zip="packages\7-Zip.CommandLine.9.20.0\tools\7za.exe"
set zip="packages\7-Zip.CommandLine.18.1.0\tools\7za.exe"
set msbuildcmd="C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\VsMSBuildCmd.bat"

if not exist %msbuildcmd% goto error
Expand All @@ -10,25 +10,27 @@ call %msbuildcmd%
if not exist build mkdir build
del /s /f /q build\*

if not exist build\bin mkdir build\bin
if not exist build\dist mkdir build\dist

:build
nuget.exe restore
msbuild KeeAnywhere.sln /p:Configuration=Release /t:Clean,Build /fl /flp:logfile=build\build.log
if %errorlevel% NEQ 0 goto error

:package
:package_plgx
copy KeeAnywhere\bin\Release\KeeAnywhere.plgx build\dist\KeeAnywhere-%version%.plgx

xcopy KeeAnywhere\bin\Release\*.* build\bin
del build\bin\*.plgx build\bin\*.pdb build\bin\*.xml build\bin\*.config build\bin\KeePass.*
%zip% a -tzip build\dist\KeeAnywhere-%version%.zip .\build\bin\*
:package_zip
cd KeeAnywhere\bin\Release
..\..\..\%zip% a -tzip ..\..\..\build\dist\KeeAnywhere-%version%.zip -x!*.plgx -x!*.pdb -x!*.xml -x!*.config -x!KeePass.*
cd ..\..\..
if %errorlevel% NEQ 0 goto error

:package_chocolatey
xcopy /s /i chocolatey build\chocolatey
xcopy KeeAnywhere\bin\Release\KeeAnywhere.plgx build\chocolatey\tools
choco pack build\chocolatey\keepass-plugin-keeanywhere.nuspec --version %version% --outputdirectory build\dist

if %errorlevel% NEQ 0 goto error

:final
goto end
Expand Down

0 comments on commit d563e88

Please sign in to comment.