Skip to content

Commit 1f8a45d

Browse files
committed
Update built plugins
1 parent 4467a20 commit 1f8a45d

File tree

5 files changed

+117
-0
lines changed

5 files changed

+117
-0
lines changed

dist/adamraichu.auto-accept-custom-launch-args/.millennium/.millennium/Dist/index.js

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
const pluginName = "steam-db";
2+
function InitializePlugins() {
3+
/**
4+
* This function is called n times depending on n plugin count,
5+
* Create the plugin list if it wasn't already created
6+
*/
7+
!window.PLUGIN_LIST && (window.PLUGIN_LIST = {});
8+
// initialize a container for the plugin
9+
if (!window.PLUGIN_LIST[pluginName]) {
10+
window.PLUGIN_LIST[pluginName] = {};
11+
}
12+
}
13+
InitializePlugins()
14+
const __call_server_method__ = (methodName, kwargs) => Millennium.callServerMethod(pluginName, methodName, kwargs)
15+
const __wrapped_callable__ = (route) => MILLENNIUM_API.callable(__call_server_method__, route)
16+
var millennium_main=function(e){"use strict";return e.default=async function(){},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
17+
18+
function ExecutePluginModule() {
19+
// Assign the plugin on plugin list.
20+
Object.assign(window.PLUGIN_LIST[pluginName], millennium_main);
21+
// Run the rolled up plugins default exported function
22+
millennium_main["default"]();
23+
MILLENNIUM_BACKEND_IPC.postMessage(1, { pluginName: pluginName });
24+
}
25+
ExecutePluginModule()

dist/steamdb/README.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# SteamDB Plugin for Millennium
2+
3+
This plugin ports the functionality of the popular [SteamDB Browser Extension](https://github.com/SteamDatabase/BrowserExtension) to the Steam client using Millennium.
4+
5+
## Features
6+
>Pretty much all of the SteamDB extension's features are included in this plugin.
7+
8+
See the [SteamDB Browser Extension](https://github.com/SteamDatabase/BrowserExtension) for more details about each feature or SteamDB's [extension page](https://steamdb.info/extension/).
9+
10+
## Installation
11+
12+
1. Ensure you have at least version 2.16.0 of [Millennium](https://github.com/shdwmtr/millennium) installed on your Steam client
13+
2. Download the [latest release](https://github.com/tddebart/Steam-SteamDB-addon/releases) of this plugin
14+
3. Place the plugin files in your Millennium plugins directory (should be a plugins folder in your Steam client directory)
15+
4. Restart your Steam client
16+
5. Enable the SteamDB plugin in the Millennium plugin menu
17+
18+
## Usage
19+
20+
Once installed it should just work out of the box.
21+
<br>
22+
Make sure the the plugin folder is called exactly "SteamDB-plugin". Otherwise things like the styling or options page will break.
23+
<br>
24+
To see if the plugin is working you can go to any store app page and look for these icons
25+
![SteamDB icons](Images/steam_store.png)
26+
27+
## Configuration
28+
29+
To configure the plugin:
30+
31+
1. Open Steam and navigate to the main store page
32+
2. Click on "Your Store" in the top menu, then select "Preferences"
33+
3. Look for the "SteamDB Options" button and click it
34+
35+
Alternatively, you can access the options page directly by entering this URL in your Steam client:
36+
https://store.steampowered.com/account/?steamdb=true
37+
38+
Here you can customize various features and behaviors of the SteamDB plugin to suit your preferences. Just like in the SteamDB extension.
39+
40+
## Contributing
41+
42+
Contributions are welcome! Please feel free to submit a Pull Request.
43+
44+
## Credits
45+
46+
- Original SteamDB Browser Extension: [SteamDatabase](https://github.com/SteamDatabase)
47+
- [Millennium](https://github.com/shdwmtr/millennium)
48+
49+
## License
50+
51+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

dist/steamdb/plugin.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/SteamClientHomebrew/Millennium/main/src/sys/plugin-schema.json",
3+
"name": "steam-db",
4+
"common_name": "SteamDB extension",
5+
"description": "SteamDB browser extension for your Steam client",
6+
"version": "1.0.2"
7+
}

dist/steamdb/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests

0 commit comments

Comments
 (0)