This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from ethanmsmith/master
Redesigned UI and small code refactoring
- Loading branch information
Showing
15 changed files
with
1,963 additions
and
1,029 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Page | ||
x:Class="AnneProKeyboard.AboutPage" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:local="using:AnneProKeyboard" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
mc:Ignorable="d" MinWidth="960" MinHeight="480"> | ||
|
||
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="*" /> | ||
</Grid.RowDefinitions> | ||
|
||
<WebView Name="aboutGitHub" Grid.Row="0" x:FieldModifier="public" Source="ms-appx-web:///Assets/README.html" /> | ||
</Grid> | ||
</Page> |
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,30 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Runtime.InteropServices.WindowsRuntime; | ||
using Windows.Foundation; | ||
using Windows.Foundation.Collections; | ||
using Windows.UI.Xaml; | ||
using Windows.UI.Xaml.Controls; | ||
using Windows.UI.Xaml.Controls.Primitives; | ||
using Windows.UI.Xaml.Data; | ||
using Windows.UI.Xaml.Input; | ||
using Windows.UI.Xaml.Media; | ||
using Windows.UI.Xaml.Navigation; | ||
|
||
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238 | ||
|
||
namespace AnneProKeyboard | ||
{ | ||
/// <summary> | ||
/// An empty page that can be used on its own or navigated to within a Frame. | ||
/// </summary> | ||
public sealed partial class AboutPage : Page | ||
{ | ||
public AboutPage() | ||
{ | ||
this.InitializeComponent(); | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
<body style="background:#36393e; color:whitesmoke;"> | ||
<h1 id="anne-keyboard-windows">Anne Keyboard Windows</h1> | ||
<p>A Universal Windows App for controlling the an Anne Pro keyboard over Bluetooth Low Energy.</p> | ||
<h2 id="requirements">Requirements</h2> | ||
<p>This app has been tested against Windows 10. Other version of Windows is not supported due to Universal Windows App (UWP) platform only supporting Windows 10. The keyboard has to be in L0 mode by: pressing <code>Fn+B, Fn+0, ESC, Fn+B, +</code></p> | ||
<h2 id="supported-features">Supported Features</h2> | ||
<ul> | ||
<li>Automatic keyboard pairing (launch the app, and it should start scanning for the keyboard)</li> | ||
<li>Create and manage profiles</li> | ||
<li>Set keyboard backlight colours</li> | ||
</ul> | ||
<h2 id="planned-features">Planned Features</h2> | ||
<ul> | ||
<li>Support for changing keyboard layouts</li> | ||
<li>Implement keyboard macros</li> | ||
<li>Improve changing multiple button keyboard light colours</li> | ||
</ul> | ||
<h2 id="known-bugs">Known Bugs</h2> | ||
<ul> | ||
<li>None so far. Please submit an issue to report any bugs.</li> | ||
</ul> | ||
<h2 id="license">License</h2> | ||
<p>The codebase and the project are released under the permissive MIT License. The images and icons are generated using the Font Awesome font released under the <a href="http://scripts.sil.org/OFL">OFIL license</a>, and the font can be found on <a href="http://scripts.sil.org/OFL">Github</a>.</p> | ||
</body> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.