Renamed from MasterKey to Keyzo

master
Guus van Meerveld 4 years ago
parent 28eaf3dc6f
commit fe3e6757fe

@ -1,12 +1,12 @@
# MasterKey
# Keyzo
MasterKey is a helpful desktop application for Windows, Linux and MacOS that allows you to set all kinds of different keybinds to specific actions.
Keyzo is a helpful desktop application for Windows, Linux and MacOS that allows you to set all kinds of different keybinds to specific actions.
## Built With
* [Bootstrap](https://getbootstrap.com) - CSS framework that was used
* [NodeJS](https://nodejs.org/) - Making it all work
* [Electron](https://electronjs.org/) - Turning MasterKey into a desktop application
* [Electron](https://electronjs.org/) - Turning Keyzo into a desktop application
## Authors

@ -1,10 +1,9 @@
const { app, BrowserWindow, globalShortcut, shell } = require('electron');
const { autoUpdater, dialog } = require('electron')
const { app, BrowserWindow, globalShortcut, shell, autoUpdater, dialog } = require('electron');
const AutoLaunch = require('auto-launch');
var autoLaunch = new AutoLaunch({
name: 'MasterKey',
path: '/Applications/MasterKey.app',
name: 'Keyzo',
path: '/Applications/Keyzo.app',
});
let loadingScreen;

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MasterKey</title>
<title>Keyzo</title>
<link rel="stylesheet" href="stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="stylesheets/index.css">
<link rel="stylesheet" href="stylesheets/main.css">

@ -1,4 +1,4 @@
fetch("https://accounts.masterkey.com")
fetch("https://accounts.keyzo.com")
.then(() => {
console.log("yeet");
})

@ -20,8 +20,8 @@
<path d="M10.706 3.294A12.545 12.545 0 0 0 8 3 12.44 12.44 0 0 0 .663 5.379a.485.485 0 0 0-.048.736.518.518 0 0 0 .668.05A11.448 11.448 0 0 1 8 4c.63 0 1.249.05 1.852.148l.854-.854zM8 6c-1.905 0-3.68.56-5.166 1.526a.48.48 0 0 0-.063.745.525.525 0 0 0 .652.065 8.448 8.448 0 0 1 3.51-1.27L8 6zm2.596 1.404l.785-.785c.63.24 1.228.545 1.785.907a.482.482 0 0 1 .063.745.525.525 0 0 1-.652.065 8.462 8.462 0 0 0-1.98-.932zM8 10l.934-.933a6.454 6.454 0 0 1 2.012.637c.285.145.326.524.1.75l-.015.015a.532.532 0 0 1-.611.09A5.478 5.478 0 0 0 8 10zm4.905-4.905l.747-.747c.59.3 1.153.645 1.685 1.03a.485.485 0 0 1 .048.737.518.518 0 0 1-.668.05 11.496 11.496 0 0 0-1.812-1.07zM9.02 11.78c.238.14.236.464.04.66l-.706.706a.5.5 0 0 1-.708 0l-.707-.707c-.195-.195-.197-.518.04-.66A1.99 1.99 0 0 1 8 11.5c.373 0 .722.102 1.02.28zm4.355-9.905a.53.53 0 1 1 .75.75l-10.75 10.75a.53.53 0 0 1-.75-.75l10.75-10.75z" />
</svg>
</h1>
<h3 class="display-4">Could not connect with the MasterKey service</h3>
<h5>Please check your internet connection or go to the <a href="https://status.masterkey.com" target="_blank">status page</a></h5>
<h3 class="display-4">Could not connect with the Keyzo service</h3>
<h5>Please check your internet connection or go to the <a href="https://status.keyzo.net" target="_blank">status page</a></h5>
</div>
</div>
<script src="../javascripts/account.js"></script>

@ -19,10 +19,19 @@
</head>
<body class="d-flex justify-content-center align-items-center text-center">
<div>
<p>MasterKey is starting...</p>
<p>Keyzo is starting...</p>
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<script>
const { autoUpdater, app} = require('electron');
const server = 'https://cdn.g-vm.nl'
const url = `${server}/update/${process.platform}/${app.getVersion()}`
autoUpdater.setFeedURL({ url })
autoUpdater.checkForUpdates()
</script>
</body>
</html>

@ -24,7 +24,7 @@
<label for="autostart" class="label-primary ml-3"></label>
</span>
</h4>
<span class="text-muted">MasterKey will start together with the rest of your system.</span>
<span class="text-muted">Keyzo will start together with the rest of your system.</span>
<br>
<br>
<h4>
@ -34,7 +34,7 @@
<label for="minimize" class="label-primary ml-3"></label>
</span>
</h4>
<span class="text-muted">Leave MasterKey running in the background when you press X.</span>
<span class="text-muted">Leave Keyzo running in the background when you press X.</span>
</div>
<script src="../javascripts/settings.js"></script>
</body>