bump version, disable image drag
This commit is contained in:
parent
4c26689f4e
commit
b85a3a8795
|
@ -1,4 +1,4 @@
|
||||||
const appName = "EZPPLauncher";
|
const appName = "EZPPLauncher";
|
||||||
const appVersion = "2.0.0";
|
const appVersion = "2.1.0";
|
||||||
|
|
||||||
module.exports = { appName, appVersion };
|
module.exports = { appName, appVersion };
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ezpplauncher-next",
|
"name": "ezpplauncher-next",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"description": "EZPPLauncher rewritten with Svelte.",
|
"description": "EZPPLauncher rewritten with Svelte.",
|
||||||
"private": false,
|
"private": false,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
@ -6,7 +6,15 @@
|
||||||
* {
|
* {
|
||||||
font-family: "Prompt";
|
font-family: "Prompt";
|
||||||
-webkit-user-select: none !important;
|
-webkit-user-select: none !important;
|
||||||
|
-khtml-user-select: none !important;
|
||||||
|
-moz-user-select: none !important;
|
||||||
|
-o-user-select: none !important;
|
||||||
user-select: none !important;
|
user-select: none !important;
|
||||||
|
-webkit-user-drag: none !important;
|
||||||
|
-khtml-user-drag: none !important;
|
||||||
|
-moz-user-drag: none !important;
|
||||||
|
-o-user-drag: none !important;
|
||||||
|
user-drag: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html .cet-titlebar {
|
html .cet-titlebar {
|
||||||
|
|
|
@ -170,6 +170,7 @@
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
size="md"
|
size="md"
|
||||||
|
class="animate-sideIn"
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
bind:value={username}
|
bind:value={username}
|
||||||
/>
|
/>
|
||||||
|
@ -177,6 +178,7 @@
|
||||||
type={showPassword ? "text" : "password"}
|
type={showPassword ? "text" : "password"}
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
size="md"
|
size="md"
|
||||||
|
class="animate-lsideIn"
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
bind:value={password}
|
bind:value={password}
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user