Skip to content

Commit

Permalink
publish meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
SheffeyG committed Dec 11, 2023
1 parent 9e0be7d commit d1d1be2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
{
"name": "decky-plugin-template",
"version": "0.0.1",
"description": "A template to quickly create decky plugins from scratch, based on TypeScript and webpack",
"name": "cheatdeck",
"version": "0.1.0",
"description": "Lunch games with cheat in steamdeck",
"scripts": {
"build": "shx rm -rf dist && rollup -c",
"watch": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteamDeckHomebrew/decky-plugin-template.git"
"url": "git+https://github.com/SheffeyG/CheatDeck.git"
},
"keywords": [
"decky",
"plugin",
"plugin-template",
"steam-deck",
"deck"
],
"author": "Jonas Dellinger <[email protected]>",
"author": "sheffey",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/SteamDeckHomebrew/decky-plugin-template/issues"
"url": "https://github.com/SheffeyG/CheatDeck/issues"
},
"homepage": "https://github.com/SteamDeckHomebrew/decky-plugin-template#readme",
"homepage": "https://github.com/SheffeyG/CheatDeck#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
Expand Down
8 changes: 4 additions & 4 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "CheatDeck",
"author": "Sheffey",
"flags": ["debug", "_root"],
"flags": ["debug"],
"publish": {
"tags": ["cheats", "trainer"],
"description": "Lunch your cheats while gaming.",
"image": "https://opengraph.githubassets.com/1/SteamDeckHomebrew/PluginLoader"
"tags": ["cheat", "trainer"],
"description": "Lunch games with cheat in steamdeck",
"image": "https://opengraph.githubassets.com/1/sheffeyg/cheatdeck"
}
}
1 change: 1 addition & 0 deletions src/views/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const Content: VFC<{ serverAPI: ServerAPI }> = () => {
<PanelSection title="informatin">
<PanelSectionRow>
<DialogBodyText>
<p><b>CheatDeck is NOT for emulators</b>, please do Not use it on emulator games to avoid damage!</p>
<p>You can find the cheat settings in the game details menu.</p>
<li>Please enable developer mode in the steam system settings.</li>
<li>If you are unable to click on the selected cheat, please switch to windowed mode in the game settings.</li>
Expand Down
3 changes: 3 additions & 0 deletions src/views/Information.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ const Information = ({ appid }: { appid: number | string }) => {
return (
<DialogBodyText>
<p>App ID: {appid}</p>
<li>Please enable developer mode in the steam system settings.</li>
<li>If you are unable to click on the selected cheat, please switch to windowed mode in the game settings.</li>
<li>After entering the game, you can press the steam key to open settings to switch cheat and game interface.</li>
</DialogBodyText>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/views/PageRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const PageRouter: VFC = () => {
hideTitle: false
},
{
title: 'App Info',
title: 'Information',
content: <Information appid={appid}/>,
icon: <FaInfo />,
hideTitle: false
Expand Down

0 comments on commit d1d1be2

Please sign in to comment.