-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display MDIX version in demo app #3734
Comments
Image doesn't look like it uploaded, but I think it would be a good idea to show the version inside of the demo apps. The key here will be linking it so that when the demo app is built on the pipeline it uses the version specified there (which should match the assembly version) |
I reuploaded the image, hopefully everyone can see it now. <Separator />
<StackPanel Margin="10">
<TextBlock Style="{StaticResource MaterialDesignHeadline6TextBlock}" Text="Version" />
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Grid.Column="0"
IsEnabled="False"
Text="MaterialDesignThemes " />
<TextBlock Grid.Row="0"
Grid.Column="1"
Text="5.1.0" />
<TextBlock Grid.Row="1"
Grid.Column="0"
IsEnabled="False"
Text="MaterialDesignColors " />
<TextBlock Grid.Row="1"
Grid.Column="1"
Text="3.1.0" />
</Grid>
</StackPanel> |
I think that looks great, happy to take a PR for it. |
implemented in #3770 |
Thoughts on displaying the versions of the libraries (
MaterialDesignThemes
&MaterialDesignColors
) used in the demo app?It could look something like this:
![image](https://private-user-images.githubusercontent.com/43533385/391289076-10ec33b2-b115-404a-9698-421a029f1f22.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg4NzIwMDAsIm5iZiI6MTczODg3MTcwMCwicGF0aCI6Ii80MzUzMzM4NS8zOTEyODkwNzYtMTBlYzMzYjItYjExNS00MDRhLTk2OTgtNDIxYTAyOWYxZjIyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA2VDE5NTUwMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTExNTg4ODQ4MjkwMzNlMGUzNzA2OTE0OGZmYzYyOTFkNDg1YmZjYTQ1ZjZlOWVhZjkyY2MxYWZlNDdkNzM2NjEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.B0Th4ReW7lNUt_RcArqHZl9YAQ2Sace3bUpy_vMRWeM)
A friend was checking something in the demo and later noticed he was still using an old version. Hence this change would be quite useful.
The text was updated successfully, but these errors were encountered: