Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KyroFrCode authored Jun 29, 2023
1 parent db51bc3 commit 27fb9ee
Show file tree
Hide file tree
Showing 28 changed files with 6,424 additions and 1 deletion.
2 changes: 1 addition & 1 deletion wasm/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ MessageResult MoonlightInstance::StartStream(
m_StreamConfig.streamingRemotely = STREAM_CFG_AUTO;
m_StreamConfig.packetSize = 1392;
m_StreamConfig.supportsHevc = true;
m_StreamConfig.enableHdr = true;
//m_StreamConfig.enableHdr = true;

// Load the rikey and rikeyid into the stream configuration
HexStringToBytes(rikey.c_str(), m_StreamConfig.remoteInputAesKey);
Expand Down
6 changes: 6 additions & 0 deletions wasm/platform/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ const Views = {
right: function() {
this.view.next();
},
down: function() {
document.getElementById('continueAddHost').click();
},
accept: function() {
document.getElementById(this.view.current()).click();
},
Expand All @@ -164,6 +167,9 @@ const Views = {
right: function() {
this.view.next();
},
down: function() {
document.getElementById('continueDeleteHost').click();
},
accept: function() {
document.getElementById(this.view.current()).click();
},
Expand Down
33 changes: 33 additions & 0 deletions wasm/static/css/material-icons.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url(../fonts/MaterialIcons-Regular.woff2) format('woff2')
}

.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;

/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;

/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;

/* Support for IE. */
font-feature-settings: 'liga';
}
9 changes: 9 additions & 0 deletions wasm/static/css/material.min.css

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions wasm/static/css/roboto.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(../fonts/Roboto-Regular_latin.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(../fonts/Roboto-Regular_latin-ext.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
Loading

0 comments on commit 27fb9ee

Please sign in to comment.