Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Changed from "don't convert scripts" to "convert scripts", changed "m…
Browse files Browse the repository at this point in the history
…ay break place file" to "may prevent place from opening", made browse button text bold, added "if you don't know what you're doing here don't change anything" text next to advanced settings, added checkboxes for new features
  • Loading branch information
BakonBot committed May 8, 2020
1 parent e158c90 commit b3cd485
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Roblox Legacy Place Convertor/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Roblox_Legacy_Place_Convertor"
mc:Ignorable="d"
Title="Roblox Legacy Place Converter" Height="227" Width="889" Icon="Assets/converterLogo.ico">
Title="Roblox Legacy Place Converter" Height="228" Width="890" Icon="Assets/converterLogo.ico" MinWidth="890" MinHeight="228">
<Window.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF0F2630" Offset="0"/>
Expand All @@ -16,7 +16,7 @@
<Label Content="Converts new places in a way that old clients can open them" Margin="10,10,0,0" VerticalAlignment="Top" FontSize="16" Height="35" HorizontalAlignment="Left" Width="440" Foreground="White"/>
<Label x:Name="PlaceSelectedLabel" Content="Place selected: None" HorizontalAlignment="Left" Margin="10,45,0,0" VerticalAlignment="Top" Foreground="White"/>
<Button x:Name="BrowseButton" Content="Browse" HorizontalAlignment="Left" Margin="15,71,0,0" VerticalAlignment="Top" Width="75" Height="24" Click="BrowseButton_Click"/>
<Button x:Name="ConvertButton" Content="CONVERT" HorizontalAlignment="Left" Margin="15,104,0,0" VerticalAlignment="Top" Width="125" Height="31" Click="ConvertButton_Click"/>
<Button x:Name="ConvertButton" Content="CONVERT" HorizontalAlignment="Left" Margin="15,104,0,0" VerticalAlignment="Top" Width="125" Height="31" Click="ConvertButton_Click" FontWeight="Bold"/>
<ProgressBar x:Name="ProgressBar" Height="15" Margin="150,104,0,0" VerticalAlignment="Top" Value="0" HorizontalAlignment="Left" Width="290"/>
<Label x:Name="ProgressLabel" Content="" HorizontalAlignment="Left" Margin="145,117,0,0" VerticalAlignment="Top" Height="28" Background="{x:Null}" Foreground="White"/>
<Label Content="Made by BakonBot" HorizontalContentAlignment="Left" HorizontalAlignment="Left" Margin="11,145,0,0" VerticalAlignment="Top" Foreground="White"/>
Expand All @@ -36,8 +36,11 @@
</Separator.RenderTransform>
</Separator>
<CheckBox x:Name="ColorCheckbox" Content="Include colors" HorizontalAlignment="Left" Margin="474,49,0,0" VerticalAlignment="Top" IsChecked="True" Height="15" FontStretch="SemiExpanded" Foreground="White"/>
<CheckBox x:Name="UnionCheckbox" Content="Include Union data (may break place file)" HorizontalAlignment="Left" Margin="474,69,0,0" VerticalAlignment="Top" Foreground="White"/>
<CheckBox x:Name="UnionCheckbox" Content="Include Union data (may prevent place from opening)" HorizontalAlignment="Left" Margin="474,69,0,0" VerticalAlignment="Top" Foreground="White"/>
<Label Content="Advanced Settings" Margin="474,10,0,0" VerticalAlignment="Top" FontSize="16" Height="35" HorizontalAlignment="Left" Width="397" Foreground="White"/>
<CheckBox x:Name="NoScriptConvertCheckbox" Content="Don't convert scripts (may break or sometimes fix place file)" HorizontalAlignment="Left" Margin="474,89,0,0" VerticalAlignment="Top" Foreground="White"/>
<CheckBox x:Name="ScriptConvertCheckbox" Content="Convert scripts to old format (fixes places from being unable to open)" HorizontalAlignment="Left" Margin="474,89,0,0" VerticalAlignment="Top" Foreground="White" IsChecked="True"/>
<CheckBox x:Name="ConvertFoldersCheckbox" Content="Convert folders into models (fixes missing objects)" HorizontalAlignment="Left" Margin="474,109,0,0" VerticalAlignment="Top" Foreground="White" IsChecked="True"/>
<TextBlock Text="If you don't know what you're doing, don't change anything here" Margin="620,15,0,0" VerticalAlignment="Top" FontSize="12" Height="35" HorizontalAlignment="Left" Width="237" Foreground="#FFCBCBCB" TextWrapping="WrapWithOverflow" FontWeight="SemiBold"/>
<CheckBox x:Name="ChangeRbxassetidCheckbox" Content="Change rbxassetid to longer variant (fixes assets not loading)" HorizontalAlignment="Left" Margin="474,129,0,0" VerticalAlignment="Top" Foreground="White" IsChecked="True"/>
</Grid>
</Window>

0 comments on commit b3cd485

Please # to comment.