Skip to content

Commit

Permalink
Merge pull request #148 from XanatosX/bugfix/fix-application-description
Browse files Browse the repository at this point in the history
[Bugfix] Fix about page
  • Loading branch information
XanatosX authored Aug 31, 2024
2 parents d68bee9 + 6fd97b6 commit ca3920d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/ModularToolManager/Resources/description.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
This application is based on the [MIT](https://github.com/XanatosX/ModularToolManager/blob/main/LICENSE) license.
The plugin is developed by [XanatosX](https://github.com/XanatosX) as a hobby project. It does target Windows and Linux as a platform of operation.
This application is based on the [MIT](https://github.com/XanatosX/ModularToolManager/blob/main/LICENSE) license.
The plugin is developed by [XanatosX](https://github.com/XanatosX) as a hobby project. It does target Windows and Linux as a platform of operation.

The application provides a simple interface to launch scripts and programs in combination with function plugins.
Those plugins allow you to define "Function buttons" which will trigger a user selected plugin.
The application provides a simple interface to launch scripts and programs in combination with function plugins.
Those plugins allow you to define "Function buttons" which will trigger a user selected plugin.
This plugin will run the path provided via the internal plugin logic.

Please check the manual linked above for more information how to use this application.
6 changes: 3 additions & 3 deletions src/ModularToolManager/Views/AboutView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<Button Classes="link" Grid.Column="2" Grid.Row="2" Content="{x:Static p:Resources.About_GitHubUserManual}" Command="{Binding OpenUrlCommand}" CommandParameter="{Binding GitHubUserManualUrl}" ToolTip.Tip="{Binding GitHubUserManualUrl}"/>
</Grid>
<Expander Margin="0,10,0,0" HorizontalAlignment="Stretch" Header="{x:Static p:Resources.About_Description}">
<md:MarkdownScrollViewer Markdown="{Binding Description}"/>
<md:MarkdownScrollViewer Markdown="{Binding Description}" MaxWidth="1000"/>
</Expander>
<Expander Margin="0,10,0,0" HorizontalAlignment="Stretch" Header="{x:Static p:Resources.About_Dependency}">
<Expander Margin="0,10,0,0" HorizontalAlignment="Stretch" Header="{x:Static p:Resources.About_Dependency}">
<ItemsControl ItemsSource="{Binding Dependencies}"/>
</Expander>
<Expander Margin="0,10,0,0" HorizontalAlignment="Stretch" Header="{x:Static p:Resources.About_License}">
<Expander Margin="0,10,0,0" HorizontalAlignment="Stretch" Header="{x:Static p:Resources.About_License}">
<TextBlock TextWrapping="Wrap" Text="{Binding License}"/>
</Expander>
<StackPanel Spacing="10" HorizontalAlignment="Center" Orientation="Horizontal" MaxHeight="75" Margin="0,20,0,10">
Expand Down

0 comments on commit ca3920d

Please sign in to comment.