Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
266fdb9
WIP: implemented a static function to determine if pandoc is installe…
Apr 8, 2025
e578796
Included expressive Error Messages if pandoc is not installed or the …
Apr 8, 2025
62a4549
Removed patch level from version requirements and included more expre…
Apr 8, 2025
ca98c55
Added a success event to the message bus for better ux
Apr 10, 2025
f7771d9
added temporary buttons for debugging purposes TODO: Delete
Apr 10, 2025
8a890d2
WIP: included function to download pandoc' latest zip into our data dir
Apr 10, 2025
844e305
added warning messages to the message bus
Apr 14, 2025
b60d23a
Added functions to parse the current latest version from gh latest pa…
Apr 14, 2025
331c6ca
WIP: Change pandocs download function to account for different cpu ar…
Apr 14, 2025
09c9834
WIP: Included a pandoc dialog to check for the availability and to in…
Apr 15, 2025
08c1a54
WIP: Included expressive dialog for automatic and manual installation
Apr 15, 2025
d9fb0de
Introduced a flexible code block that enables to show code examples i…
nilskruthoff May 19, 2025
8031e1b
WIP: Extending dialog content to be very descriptive and beginner fri…
nilskruthoff May 19, 2025
49dc848
WIP: finished manual installation guide
May 26, 2025
cecf777
WIP: Adjusted styling for user experience and added installation with…
May 26, 2025
012b28d
Finished dialog and download of installers and archives
nilskruthoff May 26, 2025
81b276b
Finished dialog; installation and availability check logic
nilskruthoff May 27, 2025
b3108fd
finished pandoc logic; removed warnings
nilskruthoff May 27, 2025
647bc00
removed debugging from about page
nilskruthoff May 27, 2025
11ddaf7
Refactor message types for clarity and consistency
SommerEngineering May 29, 2025
175a3e0
Removed unused imports
SommerEngineering May 29, 2025
314a787
Applied optimizations
SommerEngineering May 29, 2025
18a00c6
Formatting
SommerEngineering May 29, 2025
4239243
Merge branch 'main' into pandoc-ui
SommerEngineering May 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
WIP: finished manual installation guide
  • Loading branch information
krut_ni committed May 26, 2025
commit 49dc84897b262f64b1c0664a58eeb3810785f3ad
21 changes: 14 additions & 7 deletions app/MindWork AI Studio/Dialogs/PandocDialog.razor
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,27 @@
</MudListItem>
<MudListItem T="string">
Extract the archive to a folder of your choice.
(ex. <code>C:\Users\%USERNAME%\pandoc</code>)
<CodeTabs>
<CodeBlock Title="Windows">C:\Users\%USERNAME%\pandoc</CodeBlock>
<CodeBlock Title="Mac OS">/usr/local/bin/pandoc</CodeBlock>
<CodeBlock Title="Linux">/usr/local/bin/pandoc</CodeBlock>
</CodeTabs>
</MudListItem>
<MudListItem T="string">
Open the folder and copy the path to the <code>pandoc.exe</code> file into you clipboard.
(ex. <code></code>)
<CodeBlock>C:\Users\%USERNAME%\pandoc</CodeBlock>

Open the folder and copy the full path to the <code>pandoc.exe</code> file into you clipboard.
<CodeTabs>
<CodeBlock Title="Windows">C:\Users\%USERNAME%\pandoc\pandoc-3.7.0-windows-x86_64\pandoc-3.7.0</CodeBlock>
<CodeBlock Title="Mac OS">/usr/local/bin/pandoc/pandoc-3.7.0-x86_64-macOS/pandoc-3.7.0</CodeBlock>
<CodeBlock Title="Linux">/usr/local/bin/pandoc/pandoc-3.7.0-linux-amd64/pandoc-3.7.0</CodeBlock>
</CodeTabs>
</MudListItem>
<MudListItem T="string">
Add the copied path to your systems environment variables and check the installation by typing
<CodeBlock IsInline="@true">pandoc --version</CodeBlock> into your command line interface.
<CodeTabs>
<CodeBlock Title="Windows">pandoc.exe --version<br/>Der Befehl "pandoc.exe" ist entweder falsch geschrieben oder<br/>konnte nicht gefunden werden.</CodeBlock>
<CodeBlock Title="Mac OS">pandoc --version</CodeBlock>
<CodeBlock Title="Windows">pandoc.exe --version<br/>pandoc.exe 3.7.0</CodeBlock>
<CodeBlock Title="Mac OS">pandoc --version<br/>pandoc.exe 3.7.0</CodeBlock>
<CodeBlock Title="Linux">pandoc --version<br/>pandoc.exe 3.7.0</CodeBlock>
</CodeTabs>
</MudListItem>
</MudList>
Expand Down