Code Monkey home page Code Monkey logo

Auto Minecraft Server

Minecraftのサーバーを自動化するためのソフトです。
質問等はリンク先のフォーラムか[email protected]にお願いします。

使い方

http://xperd.net/auto-minecraft-server/で配布されているものをインストールして使ってください。

ビルド方法

electron-packagerを使用しています。

electron-packager . ams `
  --platform="linux,win32" `
  --arch="ia32,x64,armv7l" `
  --electron-version=1.8.2 `
  --overwrite `
  --asar `
  --icon=".\favicon.ico" `
  --win32metadata.CompanyName="Xperd" `
  --win32metadata.FileDescription="Auto Minecraft Server" `
  --win32metadata.OriginalFilename="ams.exe" `
  --win32metadata.ProductName="Auto Minecraft Server" `
  --app-copyright="Copyright 2018 Xperd. Rights Reserved"

Windows版はこれに加えGruntによるコンパイルをしています。

module.exports = function(grunt) {
    grunt.initConfig({
        'create-windows-installer': {
            x64: {
                appDirectory: 'ams-win32-x64',
                outputDirectory: 'build/ams-win32-x64',
                authors: 'Xperd',
                description: 'Auto Minecraft Server',
                exe: 'ams.exe',
                title: 'Auto Minecraft Server',
                iconUrl: 'https://raw.githubusercontent.com/AutoMinecraftServer/AutoMinecraftServer/master/favicon.ico',
                noMsi: true
            },
            ia32: {
                appDirectory: 'ams-win32-ia32',
                outputDirectory: 'build/ams-win32-ia32',
                authors: 'Xperd',
                description: 'Auto Minecraft Server',
                exe: 'ams.exe',
                title: 'Auto Minecraft Server',
                iconUrl: 'https://raw.githubusercontent.com/AutoMinecraftServer/AutoMinecraftServer/master/favicon.ico',
                noMsi: true,
            }
        }
    });
    grunt.loadNpmTasks('grunt-electron-installer');
}

作者

Xperd Twitter(@xperd00) サイト

ライセンス

MIT

autominecraftserver's Projects

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.