-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shortcuts to create a personal meeting and copy invite text
Includes: * Persistent Settings with a Settings SettingsWindow * Start Meeting shortcut in meetings list popup as well as in the tray context menu * Tray menu items to copy short and long invite Chime meeting invite strings
- Loading branch information
Showing
9 changed files
with
365 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)"> | ||
<Profiles> | ||
<Profile Name="(Default)" /> | ||
</Profiles> | ||
<Settings /> | ||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="ChimeHelper.Properties" GeneratedClassName="Settings"> | ||
<Profiles /> | ||
<Settings> | ||
<Setting Name="ChimeBridgePersonalizedID" Type="System.String" Scope="User"> | ||
<Value Profile="(Default)" /> | ||
</Setting> | ||
<Setting Name="ChimeBridgePersonalID" Type="System.String" Scope="User"> | ||
<Value Profile="(Default)" /> | ||
</Setting> | ||
<Setting Name="UpgradeRequired" Type="System.Boolean" Scope="User"> | ||
<Value Profile="(Default)">True</Value> | ||
</Setting> | ||
</Settings> | ||
</SettingsFile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<Window x:Class="ChimeHelper.SettingsWindow" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:local="clr-namespace:ChimeHelper" | ||
mc:Ignorable="d" | ||
Icon="/Icons/fan.ico" | ||
Title="Chime Helper Settings" Height="230" Width="400"> | ||
<StackPanel> | ||
<Border Background="#192A38" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="42" VerticalAlignment="Top" Width="574"> | ||
<StackPanel Orientation="Horizontal"> | ||
<Image Height="28" Width="28" Source="/Icons/fan.ico" Margin="10,0,0,0"></Image> | ||
<TextBlock VerticalAlignment="Center" FontSize="25" Foreground="White" FontWeight="Light" Margin="5,0,0,0">Settings</TextBlock> | ||
</StackPanel> | ||
</Border> | ||
<TextBlock Margin="10,10,10,0" TextWrapping="Wrap">You can configure your Personalized ID and Personal ID to enable shortcuts to start a meeting as well as copy meeting details.</TextBlock> | ||
|
||
<Grid Margin="10,20,20,0"> | ||
|
||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="248"/> | ||
<ColumnDefinition/> | ||
</Grid.ColumnDefinitions> | ||
|
||
<Grid.RowDefinitions> | ||
<RowDefinition/> | ||
<RowDefinition/> | ||
<RowDefinition/> | ||
<RowDefinition/> | ||
</Grid.RowDefinitions> | ||
|
||
<TextBlock Grid.Row="0" Grid.Column="0">Personalized ID (eg: "my_awesome_bridge"):</TextBlock> | ||
<TextBox Grid.Row="0" Grid.Column="1" MaxLength="50" Text="{Binding PersonalizedId, Mode=TwoWay}"></TextBox> | ||
|
||
<TextBlock Grid.Row="1" Grid.Column="0">Personal ID (eg: "123456789"):</TextBlock> | ||
<TextBox Grid.Row="1" Grid.Column="1" MaxLength="20" Text="{Binding PersonalId, Mode=TwoWay}"></TextBox> | ||
</Grid> | ||
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> | ||
<Button Name="btnSave" Click="btnSave_Click" Margin="0,20, 20, 0" Padding="5,0,5,0">Save</Button> | ||
<Button Name="btnCancel" Click="btnCancel_Click" Margin="0,20,0,0" Padding="5,0,5,0">Cancel</Button> | ||
</StackPanel> | ||
|
||
|
||
|
||
</StackPanel> | ||
</Window> |
Oops, something went wrong.