mirror of https://github.com/bra1n/townsquare.git
commit
4eca3f15db
|
@ -1,5 +1,10 @@
|
|||
# Release Notes
|
||||
|
||||
### Version 2.16.0
|
||||
- Add ability to use json from clipboard to upload script (by @alexanderfletcher)
|
||||
|
||||
---
|
||||
|
||||
### Version 2.15.4
|
||||
- fixed flickering of add reminder token
|
||||
- added redirect to Chinese version
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "townsquare",
|
||||
"version": "2.15.4",
|
||||
"version": "2.16.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "townsquare",
|
||||
"version": "2.15.4",
|
||||
"version": "2.16.0",
|
||||
"description": "Blood on the Clocktower Town Square",
|
||||
"author": "Steffen Baumgart",
|
||||
"scripts": {
|
||||
|
|
|
@ -69,6 +69,9 @@
|
|||
<div class="button" @click="promptURL">
|
||||
<font-awesome-icon icon="link" /> Enter URL
|
||||
</div>
|
||||
<div class="button" @click="readFromClipboard">
|
||||
<font-awesome-icon icon="clipboard" /> Use JSON from Clipboard
|
||||
</div>
|
||||
<div class="button" @click="isCustom = false">
|
||||
<font-awesome-icon icon="undo" /> Back
|
||||
</div>
|
||||
|
@ -156,6 +159,15 @@ export default {
|
|||
}
|
||||
}
|
||||
},
|
||||
async readFromClipboard() {
|
||||
const text = await navigator.clipboard.readText();
|
||||
try {
|
||||
const roles = JSON.parse(text);
|
||||
this.parseRoles(roles);
|
||||
} catch (e) {
|
||||
alert("Error reading custom script: " + e.message);
|
||||
}
|
||||
},
|
||||
parseRoles(roles) {
|
||||
if (!roles || !roles.length) return;
|
||||
const metaIndex = roles.findIndex(({ id }) => id === "_meta");
|
||||
|
|
|
@ -16,6 +16,7 @@ const faIcons = [
|
|||
"CloudMoon",
|
||||
"Cog",
|
||||
"Copy",
|
||||
"Clipboard",
|
||||
"Dice",
|
||||
"Dragon",
|
||||
"ExchangeAlt",
|
||||
|
|
Loading…
Reference in New Issue