Skip to content

Commit 2f49e35

Browse files
author
Justin Clareburt
committed
Packages for release v1.1
1 parent d9f20f8 commit 2f49e35

File tree

4 files changed

+78
-21
lines changed

4 files changed

+78
-21
lines changed

Description.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<h1>Hot Settings</h1>
2+
<p>Menus and Toolbars that expose Visual Studio settings.</p>
3+
<p><strong><span style="color: #ff0000;">Note: Work in progress!! Not all functions are working. This is being uploaded in a Beta state so that users can take advantage of the features that do work, and others can start contributing to the project.</span></strong></p>
4+
<p><strong><span style="color: #ff0000;">Please visit the <a href="http://github.com/justcla/HotSettings"> open source repo on GitHub</a> to raise issues or contribute fixes. Thanks!</span></strong></p>
5+
<p><a href="https://raw.githubusercontent.com/justcla/HotSettings/master/HotSettings/Resources/Screenshot.PNG" target="_blank"><img src="https://raw.githubusercontent.com/justcla/HotSettings/master/HotSettings/Resources/Screenshot.PNG" alt="Hot Settings screenshot" /></a></p>
6+
<h2>Intended to expose the following settings:</h2>
7+
<h3>Editor Margin Settings (Editor margin context menu)</h3>
8+
<ul>
9+
<li>Indicator margin (glyph margin) (Text editor setting)<br>
10+
- Contains breakpoints<br>
11+
- Contains bookmarks<br>
12+
- Also used by 3rd party extensions like Inherit Margin
13+
</li>
14+
<li>Line numbers (Language specific setting)</li>
15+
<li>Quick Actions / Lightbulb Margin (future ?)</li>
16+
<li>Selection margin (Text editor setting)
17+
? Track changes (separate item)</li>
18+
<li>Git Diff Margin (need 3rd party extension)</li>
19+
<li>Outlining (Edit-&gt;Outlining Cmd, C#-&gt;Advanced (default))</li>
20+
<li>Live Unit Testing (VS2017)</li>
21+
<li>Annotate (Blame)</li>
22+
</ul>
23+
<h3><a id="user-content-general-settings-editor-window-context-menu" class="anchor" href="https://github.com/justcla/HotSettings#general-settings-editor-window-context-menu"></a>General Settings (Editor window context menu)</h3>
24+
<ul>
25+
<li>Navigation Bar (language specific)</li>
26+
<li>Code Lens [Enterprise only] (Language specific)</li>
27+
<li>Indent guides [PPT/VS2017]</li>
28+
<li>White space (Edit Advanced Cmd)</li>
29+
<li>Word wrap (Edit Advanced Cmd)
30+
? Virtual glyphs</li>
31+
<li>Highlight current line (Text editor setting)</li>
32+
<li>Automatic delimiter highlighting (Text editor setting)</li>
33+
<li>Show procedure line separator (C#/Basic-&gt;Advanced)</li>
34+
<li>Show completion list [with keywords / code snippets] (C#-&gt;IntelliSense)</li>
35+
<li>Show line endings (need 3rd party extension)</li>
36+
<li>Highlight references to [symbol/keyword] under cursor (C#-&gt;Advanced)</li>
37+
<li>IntelliSense squiggles (Basic)</li>
38+
</ul>
39+
<h3><a id="user-content-scrollbar-vertical-scrollbar-context-menu" class="anchor" href="https://github.com/justcla/HotSettings#scrollbar-vertical-scrollbar-context-menu"></a>Scrollbar (Vertical scrollbar context menu)</h3>
40+
<ul>
41+
<li>Show changes</li>
42+
<li>Show marks</li>
43+
<li>Show errors</li>
44+
<li>Show caret position</li>
45+
</ul>
46+
<h3><a id="user-content-settings-toolbar" class="anchor" href="https://github.com/justcla/HotSettings#settings-toolbar"></a>Settings Toolbar</h3>
47+
<ul><li>Contain a mix of settings from all groups above</li></ul>

HotSettings/HotSettings.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@
7474
</None>
7575
</ItemGroup>
7676
<ItemGroup>
77+
<Content Include="ReleaseNotes.txt">
78+
<IncludeInVSIX>true</IncludeInVSIX>
79+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
80+
</Content>
7781
<Content Include="Resources\Screenshot - Full.png" />
7882
<Content Include="Resources\Screenshot.PNG">
7983
<CopyToOutputDirectory>Always</CopyToOutputDirectory>

HotSettings/ReleaseNotes.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Hot Settings
2+
3+
26-Dec-2017 v1.1: Added support for Outling and Navigation Bar
4+
20-Jun-2017 v1.0: Initial release (very beta!)
Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
3-
<Metadata>
4-
<Identity Id="HotSettings.Justin Clareburt.9d7d4a40-2b7c-4177-82bf-1876951e6b24" Version="1.0" Language="en-US" Publisher="Justin Clareburt" />
5-
<DisplayName>HotSettings</DisplayName>
6-
<Description xml:space="preserve">Menus and Toolbars that expose Visual Studio settings</Description>
7-
<Icon>Resources\HotSettings_90x.png</Icon>
8-
<PreviewImage>Resources\Screenshot.PNG</PreviewImage>
9-
</Metadata>
10-
<Installation>
11-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[14.0, 15.0]" />
12-
</Installation>
13-
<Dependencies>
14-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
15-
<Dependency Id="Microsoft.VisualStudio.MPF.14.0" DisplayName="Visual Studio MPF 14.0" d:Source="Installed" Version="[14.0]" />
16-
</Dependencies>
17-
<Assets>
18-
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
19-
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
20-
</Assets>
21-
<Prerequisites>
22-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26004.1,16.0)" DisplayName="Visual Studio core editor" />
23-
</Prerequisites>
3+
<Metadata>
4+
<Identity Id="HotSettings.Justin Clareburt.9d7d4a40-2b7c-4177-82bf-1876951e6b24" Version="1.1" Language="en-US" Publisher="Justin Clareburt" />
5+
<DisplayName> Hot Settings</DisplayName>
6+
<Description xml:space="preserve">Menus and Toolbars that expose Visual Studio settings</Description>
7+
<MoreInfo>https://marketplace.visualstudio.com/items?itemName=JustinClareburtMSFT.HotSettings</MoreInfo>
8+
<ReleaseNotes>ReleaseNotes.txt</ReleaseNotes>
9+
<Icon>Resources\HotSettings_90x.png</Icon>
10+
<PreviewImage>Resources\Screenshot.PNG</PreviewImage>
11+
</Metadata>
12+
<Installation>
13+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[14.0, 15.0]" />
14+
</Installation>
15+
<Dependencies>
16+
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
17+
<Dependency Id="Microsoft.VisualStudio.MPF.14.0" DisplayName="Visual Studio MPF 14.0" d:Source="Installed" Version="[14.0]" />
18+
</Dependencies>
19+
<Assets>
20+
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
21+
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
22+
</Assets>
23+
<Prerequisites>
24+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26004.1,16.0)" DisplayName="Visual Studio core editor" />
25+
</Prerequisites>
2426
</PackageManifest>

0 commit comments

Comments
 (0)