Skip to content

Commit

Permalink
github issue1 fix - emacs bug, v1.1.47
Browse files Browse the repository at this point in the history
  • Loading branch information
GregTrevellick committed Sep 25, 2017
1 parent 871aa63 commit 089d9cd
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 24 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

These are the changes to each version that has been released in the Visual Studio Marketplace.

## 1.1.47
**2017-09-25**
- [x] Open In Emacs bug fix for [issue 1](https://github.com/GregTrevellick/OpenInApp.Launcher/issues/1)

## 1.1.46
**2017-08-21**
- [x] Addition of Open In Android Studio
Expand Down
6 changes: 5 additions & 1 deletion src/OpenInEmacs/Options/GeneralOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ protected override void OnApply(PageApplyEventArgs e)

if (actualPathToExeChanged)
{
if (!ArtefactsHelper.DoesActualPathToExeExist(ActualPathToExe))
if (ArtefactsHelper.DoesActualPathToExeExist(ActualPathToExe))
{
PersistVSToolOptions(ActualPathToExe);
}
else
{
e.ApplyBehavior = ApplyKind.Cancel;

Expand Down
2 changes: 1 addition & 1 deletion src/OpenInEmacs/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ static class Vsix
public const string Name = "Open in Emacs";
public const string Description = @"Open multiple files simultaneously in Emacs directly from Solution Explorer or Code Editor window.";
public const string Language = "en-US";
public const string Version = "1.1.41";
public const string Version = "1.1.47";
public const string Author = "GregTrevellick";
public const string Tags = "open, open in, emacs";
}
Expand Down
44 changes: 22 additions & 22 deletions src/OpenInEmacs/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="CF1D7CEE-7F85-44E5-A4E3-9213877B8EBF" Version="1.1.41" Language="en-US" Publisher="GregTrevellick" />
<DisplayName>Open in Emacs</DisplayName>
<Description xml:space="preserve">Open multiple files simultaneously in Emacs directly from Solution Explorer or Code Editor window.</Description>
<MoreInfo>https://github.com/GregTrevellick/OpenInApp.Launcher</MoreInfo>
<License>LICENSE.txt</License>
<ReleaseNotes>https://github.com/GregTrevellick/OpenInApp.Launcher/blob/master/CHANGELOG.md</ReleaseNotes>
<Icon>Resources\VsixExtensionIcon_90x90.png</Icon>
<PreviewImage>Resources\VsixExtensionPreview_175x175.png</PreviewImage>
<Tags>open, open in, emacs</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,16.0)" />
</Installation>
<Dependencies>
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26208.0,16.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
<Metadata>
<Identity Id="CF1D7CEE-7F85-44E5-A4E3-9213877B8EBF" Version="1.1.47" Language="en-US" Publisher="GregTrevellick" />
<DisplayName>Open in Emacs</DisplayName>
<Description xml:space="preserve">Open multiple files simultaneously in Emacs directly from Solution Explorer or Code Editor window.</Description>
<MoreInfo>https://github.com/GregTrevellick/OpenInApp.Launcher</MoreInfo>
<License>LICENSE.txt</License>
<ReleaseNotes>https://github.com/GregTrevellick/OpenInApp.Launcher/blob/master/CHANGELOG.md</ReleaseNotes>
<Icon>Resources\VsixExtensionIcon_90x90.png</Icon>
<PreviewImage>Resources\VsixExtensionPreview_175x175.png</PreviewImage>
<Tags>open, open in, emacs</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,16.0)" />
</Installation>
<Dependencies>
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26208.0,16.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
</PackageManifest>

0 comments on commit 089d9cd

Please sign in to comment.