mirror of
https://github.com/Stone-Red-Code/Markdowser.git
synced 2026-09-04 17:16:16 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e27a195781 | ||
|
|
15a46f392e | ||
|
|
839d9402e8 | ||
|
|
6ebf525b6f | ||
|
|
3de441a3de |
+12
-5
@@ -33,7 +33,7 @@ enclosed in quotation marks, you should use an editor that supports UTF-8, not t
|
|||||||
.template -->
|
.template -->
|
||||||
<!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s)
|
<!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s)
|
||||||
if possible. -->
|
if possible. -->
|
||||||
<id>Markdowser</id>
|
<id>markdowser</id>
|
||||||
<!-- version should MATCH as closely as possible with the underlying software -->
|
<!-- version should MATCH as closely as possible with the underlying software -->
|
||||||
<!-- Is the version a prerelease of a version?
|
<!-- Is the version a prerelease of a version?
|
||||||
https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
|
https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
|
||||||
@@ -58,7 +58,7 @@ enclosed in quotation marks, you should use an editor that supports UTF-8, not t
|
|||||||
More information can be found here:
|
More information can be found here:
|
||||||
https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines -->
|
https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines -->
|
||||||
<!-- Here is an example using Githack -->
|
<!-- Here is an example using Githack -->
|
||||||
<!--<iconUrl>http://rawcdn.githack.com/__REPLACE_YOUR_REPO__/master/icons/Markdowser.png</iconUrl>-->
|
<iconUrl>https://content.stone-red.net/Markdowser-1-1.png</iconUrl>
|
||||||
<!-- <copyright>Year Software Vendor</copyright> -->
|
<!-- <copyright>Year Software Vendor</copyright> -->
|
||||||
<!-- If there is a license Url available, it is required for the community feed -->
|
<!-- If there is a license Url available, it is required for the community feed -->
|
||||||
<licenseUrl>https://github.com/Stone-Red-Code/Markdowser/blob/main/LICENSE</licenseUrl>
|
<licenseUrl>https://github.com/Stone-Red-Code/Markdowser/blob/main/LICENSE</licenseUrl>
|
||||||
@@ -67,10 +67,17 @@ enclosed in quotation marks, you should use an editor that supports UTF-8, not t
|
|||||||
<!--<docsUrl>At
|
<!--<docsUrl>At
|
||||||
what url are the software docs located?</docsUrl>-->
|
what url are the software docs located?</docsUrl>-->
|
||||||
<!--<mailingListUrl></mailingListUrl>-->
|
<!--<mailingListUrl></mailingListUrl>-->
|
||||||
<!--<bugTrackerUrl></bugTrackerUrl>-->
|
<bugTrackerUrl>https://github.com/Stone-Red-Code/Markdowser/issues</bugTrackerUrl>
|
||||||
<tags>Markdowser arp</tags>
|
<tags>markdowser</tags>
|
||||||
<summary>A lightweight cross-platform IP scanner</summary>
|
<summary>A web browser that renders markdown instead of HTML</summary>
|
||||||
<description>
|
<description>
|
||||||
|
A web browser that renders markdown instead of HTML
|
||||||
|
|
||||||
|
**What is it?**
|
||||||
|
|
||||||
|
Markdowser is a web browser that renders Markdown instead of HTML.
|
||||||
|
It uses the ReverseMarkdown library to convert HTML websites to Markdown. This gets rid of all the clutter and is supposed to make the content more readable and consistent across different websites.
|
||||||
|
|
||||||
**Setup**
|
**Setup**
|
||||||
|
|
||||||
1. Download the latest release
|
1. Download the latest release
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
name: markdowser # you probably want to 'snapcraft register <name>'
|
name: markdowser # you probably want to 'snapcraft register <name>'
|
||||||
version: "0.2.0.0" # just for humans, typically '1.2+git' or '1.3.2'
|
version: "0.2.0.0" # just for humans, typically '1.2+git' or '1.3.2'
|
||||||
grade: stable # must be 'stable' to release into candidate/stable channels
|
grade: stable # must be 'stable' to release into candidate/stable channels
|
||||||
summary: A lightweight cross-platform IP scanner # 79 char long summary
|
summary: A web browser that renders markdown instead of HTML # 79 char long summary
|
||||||
description: |
|
description: |
|
||||||
**Setup**
|
**Setup**
|
||||||
|
|
||||||
@@ -42,4 +42,4 @@ parts:
|
|||||||
|
|
||||||
apps:
|
apps:
|
||||||
markdowser:
|
markdowser:
|
||||||
command: markdowser
|
command: Markdowser
|
||||||
|
|||||||
@@ -24,21 +24,22 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Avalonia" Version="11.0.10" />
|
<PackageReference Include="Avalonia" Version="11.0.11" />
|
||||||
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.11" />
|
||||||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.11" />
|
||||||
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" />
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.11" />
|
||||||
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
||||||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.11" />
|
||||||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.10" />
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.11" />
|
||||||
<PackageReference Include="CuteUtils" Version="1.0.0" />
|
<PackageReference Include="CuteUtils" Version="1.0.0" />
|
||||||
<PackageReference Include="Markdown.Avalonia" Version="11.0.2" />
|
<PackageReference Include="Markdown.Avalonia" Version="11.0.2" />
|
||||||
<PackageReference Include="Projektanker.Icons.Avalonia" Version="9.1.2" />
|
<PackageReference Include="Projektanker.Icons.Avalonia" Version="9.3.0" />
|
||||||
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="9.1.2" />
|
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="9.3.0" />
|
||||||
<PackageReference Include="Projektanker.Icons.Avalonia.MaterialDesign" Version="9.1.2" />
|
<PackageReference Include="Projektanker.Icons.Avalonia.MaterialDesign" Version="9.3.0" />
|
||||||
<PackageReference Include="ReverseMarkdown" Version="4.3.0" />
|
<PackageReference Include="ReverseMarkdown" Version="4.5.0" />
|
||||||
<PackageReference Include="Semi.Avalonia" Version="11.0.7.1" />
|
<PackageReference Include="Semi.Avalonia" Version="11.0.7.3" />
|
||||||
<PackageReference Include="Syroot.Windows.IO.KnownFolders" Version="1.3.0" />
|
<PackageReference Include="Syroot.Windows.IO.KnownFolders" Version="1.3.0" />
|
||||||
|
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user