Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/snorkell-auto-documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This workflow will improvise current file with AI genereated documentation and Create new PR

name: Penify - Revolutionizing Documentation on GitHub

on:
push:
branches: ["main"]
workflow_dispatch:

jobs:
Documentation:
runs-on: ubuntu-latest
steps:
- name: Penify DocGen Client
uses: Penify-dev/penifydocwf@v1.0.0
with:
client_id: ${{ secrets.SNORKELL_CLIENT_ID }}
api_key: ${{ secrets.SNORKELL_API_KEY }}
branch_name: "main"
44 changes: 44 additions & 0 deletions forge.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
const { FusesPlugin } = require('@electron-forge/plugin-fuses');
const { FuseV1Options, FuseVersion } = require('@electron/fuses');

module.exports = {
packagerConfig: {
asar: true,
},
rebuildConfig: {},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {},
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin'],
},
{
name: '@electron-forge/maker-deb',
config: {},
},
{
name: '@electron-forge/maker-rpm',
config: {},
},
],
plugins: [
{
name: '@electron-forge/plugin-auto-unpack-natives',
config: {},
},
// Fuses are used to enable/disable various Electron functionality
// at package time, before code signing the application
new FusesPlugin({
version: FuseVersion.V1,
[FuseV1Options.RunAsNode]: false,
[FuseV1Options.EnableCookieEncryption]: true,
[FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false,
[FuseV1Options.EnableNodeCliInspectArguments]: false,
[FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true,
[FuseV1Options.OnlyLoadAppFromAsar]: true,
}),
],
};
5 changes: 5 additions & 0 deletions license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# LocalMiner
### Host Minecraft Servers Locally
https://github.com/LocalMiner

###### Copyrights 2021 ~ LocalMiner Team
Binary file added logo.ico
Binary file not shown.
58 changes: 58 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"name": "LocalMiner",
"productName": "LocalMiner",
"version": "1.0.0",
"description": "LocalMiner",
"main": "src/index.js",
"author": "LENOVO",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"build": "electron-builder"
},
"build": {
"appId": "LocalMinerRun",
"win": {
"target": [
"nsis"
],
"icon": "logo.ico"
},
"nsis": {
"oneClick": true,
"installerIcon": "logo.ico",
"uninstallerIcon": "logo.ico",
"uninstallDisplayName": "LocalMinerRun-uninstaller",
"license": "license.md",
"allowToChangeInstallationDirectory": false
}
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron/fuses": "^1.8.0",
"electron": "30.0.9",
"electron-builder": "^25.0.0-alpha.9"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"discord-rpc": "^4.0.1",
"electron-dl": "^3.3.1",
"electron-localshortcut": "^3.2.1",
"electron-squirrel-startup": "^1.0.1",
"extract-zip": "^2.0.1",
"fs": "^0.0.1-security",
"jquery": "^3.7.1",
"node-fetch": "^2.6.7",
"yarn": "^1.22.19"
}
}
Loading