Skip to content

Commit

Permalink
2.4 Set default timeframe to 60 days back in history
Browse files Browse the repository at this point in the history
  • Loading branch information
akarzazi committed Jun 19, 2020
1 parent 828d625 commit d1dfd90
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions PublishRelease.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion src/SSMSPlusHistory/UI/HistoryControlVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<SearchFilterResultVM> _queryItemsVM;
Expand Down

0 comments on commit d1dfd90

Please sign in to comment.