Skip to content

Commit a13c5d4

Browse files
committed
publish new version.
1 parent ea5231a commit a13c5d4

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

src/Updates/Updates.xml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
<history>https://github.com/microsoft/XmlNotepad/blob/master/src/Updates/Updates.xml</history>
1010
<frequency>1.00:00:00</frequency>
1111
</application>
12+
<version number="2.8.0.46">
13+
<bug>Fix dynamic help bug introduced in the version 2.8.0.45.</bug>
14+
</version>
1215
<version number="2.8.0.45">
1316
<feature>
1417
Add support for &lt;?xsl-output default="path"?&gt; as a way to provide a default output

src/Version/Version.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
// Build Number
1616
// Revision
1717
//
18-
[assembly: AssemblyVersion("2.8.0.45")]
19-
[assembly: AssemblyFileVersion("2.8.0.45")]
18+
[assembly: AssemblyVersion("2.8.0.46")]
19+
[assembly: AssemblyFileVersion("2.8.0.46")]

src/Version/Version.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<ApplicationRevision>45</ApplicationRevision>
5-
<ApplicationVersion>2.8.0.45</ApplicationVersion>
4+
<ApplicationRevision>46</ApplicationRevision>
5+
<ApplicationVersion>2.8.0.46</ApplicationVersion>
66
</PropertyGroup>
77
</Project>

src/XmlNotepadPackage/Package.appxmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap">
3-
<Identity Name="5632ff08-aa93-439a-b09f-677eb3664250" Publisher="CN=Chris Lovett, O=Chris Lovett, STREET=18606 201st Ave NE, L=Woodinville, S=WA, PostalCode=98077, C=US" Version="2.8.0.45" />
3+
<Identity Name="5632ff08-aa93-439a-b09f-677eb3664250" Publisher="CN=Chris Lovett, O=Chris Lovett, STREET=18606 201st Ave NE, L=Woodinville, S=WA, PostalCode=98077, C=US" Version="2.8.0.46" />
44
<Properties>
55
<DisplayName>XML Notepad</DisplayName>
66
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>

src/XmlNotepadSetup/Product.wxs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="*" Name="XmlNotepad" Language="1033" Version="2.8.0.45" Manufacturer="Lovett Software" UpgradeCode="14C1B5E8-3198-4AF2-B4BC-351017A109D3">
3+
<Product Id="*" Name="XmlNotepad" Language="1033" Version="2.8.0.46" Manufacturer="Lovett Software" UpgradeCode="14C1B5E8-3198-4AF2-B4BC-351017A109D3">
44
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
55
<MajorUpgrade Schedule="afterInstallFinalize" DowngradeErrorMessage="A newer version of [ProductName] is already installed." AllowSameVersionUpgrades="yes" />
66
<MediaTemplate />
@@ -250,6 +250,12 @@
250250
<Component Id="willy.xsl" Guid="bece5b74-a8f2-4bfb-a146-6647170f014a">
251251
<File Id="willy.xsl" KeyPath="yes" />
252252
</Component>
253+
<Component Id="Hamlet.htm" Guid="97a71c46-ae8e-4a24-834e-40aebadc84af">
254+
<File Id="Hamlet.htm" KeyPath="yes" />
255+
</Component>
256+
<Component Id="rss.htm" Guid="cc58f7b0-7e8e-44fa-b29d-3884056223ba">
257+
<File Id="rss.htm" KeyPath="yes" />
258+
</Component>
253259
</DirectoryRef>
254260
<!-- shortcut in start menu -->
255261
<DirectoryRef Id="ApplicationProgramsFolder">
@@ -325,6 +331,8 @@
325331
<ComponentRef Id="rss.xml" />
326332
<ComponentRef Id="rsspretty.xsl" />
327333
<ComponentRef Id="willy.xsl" />
334+
<ComponentRef Id="Hamlet.htm" />
335+
<ComponentRef Id="rss.htm" />
328336
<ComponentRef Id="ApplicationShortcut" />
329337
</Feature>
330338
<WixVariable Id="WixUILicenseRtf" Value="$(var.Application.TargetDir)\license.rtf" />

0 commit comments

Comments
 (0)