Skip to content

Commit 3ccc0d1

Browse files
yotsudaclaude
andcommitted
Bump version to 0.10.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 971b327 commit 3ccc0d1

3 files changed

Lines changed: 17 additions & 7 deletions

File tree

MarkdownPointer.Mcp/MarkdownPointer.Mcp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<AssemblyName>mdp-mcp</AssemblyName>
9-
<Version>0.9.0</Version>
9+
<Version>0.10.0</Version>
1010

1111
<!-- NuGet Tool Package settings -->
1212
<PackAsTool>true</PackAsTool>

MarkdownPointer/MarkdownPointer.App.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<ImplicitUsings>enable</ImplicitUsings>
88
<UseWPF>true</UseWPF>
99
<AssemblyName>mdp</AssemblyName>
10-
<Version>0.9.0</Version>
10+
<Version>0.10.0</Version>
1111

1212
<!-- Single file publish settings -->
1313
<PublishSingleFile>true</PublishSingleFile>

Module/MarkdownPointer.psd1

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'MarkdownPointer.psm1'
3-
ModuleVersion = '0.9.0'
3+
ModuleVersion = '0.10.0'
44
GUID = '4c50c9c4-d155-457d-a3a3-e3952253b51d'
55
Author = 'Yoshifumi Tsuda'
66
Copyright = '(c) 2025-2026 Yoshifumi Tsuda. All rights reserved.'
@@ -11,6 +11,7 @@ Click any element in the rendered preview to copy a location reference:
1111
"Rewrite this: [C:\docs\notes.md:42] ## My Section"
1212
"Fix the grammar here [ref]"
1313
"Translate this section to Japanese [ref]"
14+
"Swap these two: [ref] [ref]"
1415
"Add a code example after this section [ref]"
1516
1617
Renders Markdown with Mermaid diagrams, KaTeX math, and SVG. Includes MCP server for Claude Code / Claude Desktop.
@@ -20,9 +21,10 @@ Requirements:
2021
Pandoc (optional, for .docx export) - https://pandoc.org
2122
2223
Quick start:
23-
mdp .\README.md # Open a file
24-
mdp .\docs\*.md # Open multiple files
25-
ConvertTo-Docx .\*.md # Convert to .docx via Pandoc
24+
mdp .\README.md # Open a file
25+
mdp .\docs\*.md # Open multiple files
26+
ConvertTo-Docx .\*.md # Convert to .docx via Pandoc
27+
ConvertTo-Pptx .\slides.md # Convert to .pptx via Pandoc
2628
2729
MCP setup for Claude Code:
2830
claude mcp add mdp -s user -- "$(Get-MarkdownPointerMCPPath)"
@@ -37,7 +39,7 @@ Example prompts for AI:
3739
"export report.md to docx"
3840
'@
3941
PowerShellVersion = '7.4'
40-
FunctionsToExport = @('Show-MarkdownPointer', 'Get-MarkdownPointerMCPPath', 'ConvertTo-Docx')
42+
FunctionsToExport = @('Show-MarkdownPointer', 'Get-MarkdownPointerMCPPath', 'ConvertTo-Docx', 'ConvertTo-Pptx')
4143
CmdletsToExport = @()
4244
VariablesToExport = @()
4345
AliasesToExport = @('mdp')
@@ -47,6 +49,14 @@ Example prompts for AI:
4749
LicenseUri = 'https://github.com/yotsuda/MarkdownPointer/blob/master/LICENSE'
4850
ProjectUri = 'https://github.com/yotsuda/MarkdownPointer'
4951
ReleaseNotes = @'
52+
0.10.0
53+
- Export SVG images as PNG in .docx/.pptx export (embedded fonts preserved)
54+
- Mermaid/SVG pre-processing now applies to .pptx export (previously .docx only)
55+
- Rename MCP tool export_docx → export_document, add .pptx support
56+
- MCP/PS export routes through mdp.exe for Mermaid/SVG conversion (Pandoc fallback)
57+
- ConvertTo-Pptx: new PowerShell function for .pptx export via Pandoc
58+
- Template parameter (-Template) for ConvertTo-Docx, ConvertTo-Pptx, and MCP tool
59+
5060
0.9.0
5161
- Redesign welcome screen: action-first layout with recent folders/files front and center
5262
- VS Code button opens at the current viewport line (code -g)

0 commit comments

Comments
 (0)