File tree Expand file tree Collapse file tree 11 files changed +18
-15
lines changed
VisualStudioDiscordRPC.Dev16
VisualStudioDiscordRPC.Dev17
VisualStudioDiscordRPC.Dev18
VisualStudioDiscordRPC.Shared Expand file tree Collapse file tree 11 files changed +18
-15
lines changed Original file line number Diff line number Diff line change 1+ 1.7.7
2+ - The ability to select an entire folder for secret solutions (by RXDCODX);
3+ - Czech translation fixes (by Zdendaki).
4+
151.7.6
26- Support for Visual Studio 2026 (Insiders)
37
Original file line number Diff line number Diff line change 1212 "publisher" : " Ryavel" ,
1313 "private" : false ,
1414 "qna" : true ,
15- "repo" : " https://github.com/Ryavell /VisualStudioDiscordRPC"
15+ "repo" : " https://github.com/Reavert /VisualStudioDiscordRPC"
1616}
Original file line number Diff line number Diff line change 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" >
33 <Metadata >
4- <Identity Id =" VisualStudioDiscordRPC.Dev16.a715f0c1-87e1-4f52-8483-aebf95fd6eee" Version =" 1.7.6 " Language =" en-US" Publisher =" Reavert" />
5- <DisplayName >Discord RPC for Visual Studio 2019</DisplayName >
6- <Description xml : space =" preserve" >Discord Rich Presence client for your activity in the Visual Studio 2019 .</Description >
4+ <Identity Id =" VisualStudioDiscordRPC.Dev16.a715f0c1-87e1-4f52-8483-aebf95fd6eee" Version =" 1.7.7 " Language =" en-US" Publisher =" Reavert" />
5+ <DisplayName >Discord Rich Presence 2019</DisplayName >
6+ <Description xml : space =" preserve" >Discord Rich Presence client for your IDE activity .</Description >
77 <License >LICENSE.txt</License >
88 <Icon >icon.png</Icon >
99 <PreviewImage >icon.png</PreviewImage >
Original file line number Diff line number Diff line change 1212 "publisher" : " Ryavel" ,
1313 "private" : false ,
1414 "qna" : true ,
15- "repo" : " https://github.com/Ryavell /VisualStudioDiscordRPC"
15+ "repo" : " https://github.com/Reavert /VisualStudioDiscordRPC"
1616}
Original file line number Diff line number Diff line change 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" >
33 <Metadata >
4- <Identity Id =" VisualStudioDiscordRPC.Dev17.d4a3981d-7790-4946-b044-18e7c2f22af7" Version =" 1.7.6 " Language =" en-US" Publisher =" Reavert" />
5- <DisplayName >Discord RPC for Visual Studio 2022</DisplayName >
6- <Description xml : space =" preserve" >Discord Rich Presence client for your activity in the Visual Studio 2022 .</Description >
4+ <Identity Id =" VisualStudioDiscordRPC.Dev17.d4a3981d-7790-4946-b044-18e7c2f22af7" Version =" 1.7.7 " Language =" en-US" Publisher =" Reavert" />
5+ <DisplayName >Discord Rich Presence 2022</DisplayName >
6+ <Description xml : space =" preserve" >Discord Rich Presence client for your IDE activity .</Description >
77 <License >LICENSE.txt</License >
88 <Icon >icon.png</Icon >
99 <PreviewImage >icon.png</PreviewImage >
Original file line number Diff line number Diff line change 1212 "publisher" : " Ryavel" ,
1313 "private" : false ,
1414 "qna" : true ,
15- "repo" : " https://github.com/Ryavell /VisualStudioDiscordRPC"
15+ "repo" : " https://github.com/Reavert /VisualStudioDiscordRPC"
1616}
Original file line number Diff line number Diff line change 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" >
33 <Metadata >
4- <Identity Id =" VisualStudioDiscordRPC.Dev18.b74ae963-b471-4b6a-85f4-b2db1612fa52" Version =" 1.7.6 " Language =" en-US" Publisher =" Reavert" />
5- <DisplayName >Discord RPC for Visual Studio 2026</DisplayName >
6- <Description xml : space =" preserve" >Discord Rich Presence client for your activity in the Visual Studio 2026 .</Description >
4+ <Identity Id =" VisualStudioDiscordRPC.Dev18.b74ae963-b471-4b6a-85f4-b2db1612fa52" Version =" 1.7.7 " Language =" en-US" Publisher =" Reavert" />
5+ <DisplayName >Discord Rich Presence 2026</DisplayName >
6+ <Description xml : space =" preserve" >Discord Rich Presence client for your IDE activity .</Description >
77 <License >LICENSE.txt</License >
88 <Icon >icon.png</Icon >
99 <PreviewImage >icon.png</PreviewImage >
Original file line number Diff line number Diff line change 99using VisualStudioDiscordRPC . Shared . Plugs . TimerPlugs ;
1010using VisualStudioDiscordRPC . Shared . Nests ;
1111using VisualStudioDiscordRPC . Shared . Utils ;
12- using System . Windows . Input ;
1312using System . Windows . Forms ;
1413
1514namespace VisualStudioDiscordRPC . Shared . ViewModels
@@ -327,12 +326,12 @@ private void ShowCustomTextPlugsEditor(object parameter)
327326
328327 private void SelectSecretFolder ( object parameter )
329328 {
330- using ( var folderDialog = new System . Windows . Forms . FolderBrowserDialog ( ) )
329+ using ( var folderDialog = new FolderBrowserDialog ( ) )
331330 {
332331 folderDialog . Description = "Select folder to hide all solutions in it" ;
333332 folderDialog . ShowNewFolderButton = false ;
334333
335- if ( folderDialog . ShowDialog ( ) == System . Windows . Forms . DialogResult . OK )
334+ if ( folderDialog . ShowDialog ( ) == DialogResult . OK )
336335 {
337336 string selectedPath = folderDialog . SelectedPath ;
338337 if ( ! string . IsNullOrEmpty ( selectedPath ) )
You can’t perform that action at this time.
0 commit comments