Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Merge pull request #77 from stromcon/feature/improvements
Browse files Browse the repository at this point in the history
Feature/improvements
  • Loading branch information
CapitaineJSparrow authored Jun 3, 2021
2 parents ec31804 + c889be6 commit e745d2a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "emusak",
"productName": "emusak",
"version": "1.0.70",
"version": "1.0.71",
"description": "Saves, shaders, firmwares and keys manager for switch emulators",
"main": ".webpack/main",
"repository": "https://github.com/stromcon/emusak-ui.git",
Expand All @@ -24,7 +24,10 @@
"config": {
"forge": {
"packagerConfig": {
"icon": "./icons/win/icon.ico"
"icon": "./icons/win/icon.ico",
"win32metadata": {
"requested-execution-level": "requireAdministrator"
}
},
"publishers": [
{
Expand Down
1 change: 1 addition & 0 deletions src/ui/changelog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const Changelog = () => {
<h1 style={{ textAlign: 'center' }}>What's new ? v{version}</h1>
<br />
<ul style={{ marginLeft: 20 }}>
<li>Network optimisations, add a "clear" to filter input. Fresh install of emusak now require admin privileges to prevent some issues</li>
<li>Added a progress indicator while downloading mods (some texture packs are heavy)</li>
<li>Fixed a bug preventing users sharing their shaders from mailine configuration if logs were disabled on mainline build while logs are disabled and using Ryujinx LDN without portable mode (thanks PHAT for reporting)</li>
<li>Uploaded tons of new mods</li>
Expand Down
7 changes: 6 additions & 1 deletion src/ui/page/ryujinx/RyuGameList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,12 @@ const RyuGameList = ({ config, onConfigDelete, threshold, customDatabase, emusak

<Grid container>
<Grid item xs={3}>
<TextField onChange={e => setFilter(e.target.value)} fullWidth placeholder="Filter games" />
<TextField
onChange={e => setFilter(e.target.value)}
fullWidth
placeholder="Filter games"
type="search"
/>
</Grid>
</Grid>
<br/>
Expand Down

0 comments on commit e745d2a

Please sign in to comment.