diff --git a/PublishRelease.md b/PublishRelease.md new file mode 100644 index 0000000..aaea389 --- /dev/null +++ b/PublishRelease.md @@ -0,0 +1,8 @@ +As for 06/06/2020 + +Vsix install does not work, see + +https://feedback.azure.com/forums/908035-sql-server/suggestions/37632271-enable-vsix-extensions-for-ssms-18-0-for-parity-wi + +# Publish workaround +Zip the extension folder in `C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Extensions\SSMSPlus` as SFX package \ No newline at end of file diff --git a/README.md b/README.md index 27eeb26..42fab92 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Extensions It should look like the following. ![SSMS Plus Extension dlls](docs/illustrations/install-folder-screen.png?raw=true "SSMS Plus Extension dlls") +**Note:** you might need to extract the SFX as admin, if you don't have write access to the ssms extensions folder ## Launch A new top menu "SSMS Plus" will be available. diff --git a/src/SSMSPlusHistory/UI/HistoryControlVM.cs b/src/SSMSPlusHistory/UI/HistoryControlVM.cs index d58a294..0e2fe3e 100644 --- a/src/SSMSPlusHistory/UI/HistoryControlVM.cs +++ b/src/SSMSPlusHistory/UI/HistoryControlVM.cs @@ -82,7 +82,7 @@ private void HandleError(Exception ex) private void InitDefaults() { _endDate = DateTime.Now.AddDays(1).Date; - _startDate = EndDate.AddDays(-15).Date; + _startDate = EndDate.AddDays(-60).Date; } private List _queryItemsVM;