forked from public/bol
Allow configurable logo
This commit is contained in:
parent
cf7d76fdba
commit
d3ae59f70d
@ -769,7 +769,7 @@ body.system-bol img#logo {
|
|||||||
min-height: 700px;
|
min-height: 700px;
|
||||||
height: 700px;
|
height: 700px;
|
||||||
}
|
}
|
||||||
.bol.sheet.actor .window-content form {
|
.bol.sheet.actor .window-content .bol-actor-form {
|
||||||
background-image: url("/systems/bol/ui/logo.webp");
|
background-image: url("/systems/bol/ui/logo.webp");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 190px 115px;
|
background-size: 190px 115px;
|
||||||
|
4
images/.directory
Normal file
4
images/.directory
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
[Dolphin]
|
||||||
|
Timestamp=2022,7,17,14,58,4.757
|
||||||
|
Version=4
|
||||||
|
VisibleRoles=Details_text,Details_size,Details_modificationtime,Details_creationtime,CustomizedDetails
|
@ -25,6 +25,13 @@ export class BoLActorSheet extends ActorSheet {
|
|||||||
activateListeners(html) {
|
activateListeners(html) {
|
||||||
super.activateListeners(html);
|
super.activateListeners(html);
|
||||||
|
|
||||||
|
function onLoad() {
|
||||||
|
let logoSheet = BoLUtility.getLogoActorSheet()
|
||||||
|
$(".bol-actor-form").css("backgroundImage",`url(${logoSheet})`)
|
||||||
|
}
|
||||||
|
// Setup everything onload
|
||||||
|
$(function () { onLoad(); });
|
||||||
|
|
||||||
// Everything below here is only needed if the sheet is editable
|
// Everything below here is only needed if the sheet is editable
|
||||||
if (!this.options.editable) return;
|
if (!this.options.editable) return;
|
||||||
|
|
||||||
|
@ -109,8 +109,10 @@ function welcomeMessage() {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
Hooks.once('ready', async function () {
|
Hooks.once('ready', async function () {
|
||||||
|
BoLUtility.ready()
|
||||||
registerUsageCount('bol')
|
registerUsageCount('bol')
|
||||||
|
|
||||||
|
|
||||||
welcomeMessage()
|
welcomeMessage()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ export class BoLUtility {
|
|||||||
default: true,
|
default: true,
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
onChange: lang => window.location.reload()
|
onChange: lang => window.location.reload()
|
||||||
});
|
})
|
||||||
game.settings.register("bol", "useBougette", {
|
game.settings.register("bol", "useBougette", {
|
||||||
name: "Utiliser la Bougette (règle fan-made)",
|
name: "Utiliser la Bougette (règle fan-made)",
|
||||||
hint: "Utilise un indicateur de Bougette, comme décrit dans l'aide de jeu Gold&Glory du RatierBretonnien (https://www.lahiette.com/leratierbretonnien/)",
|
hint: "Utilise un indicateur de Bougette, comme décrit dans l'aide de jeu Gold&Glory du RatierBretonnien (https://www.lahiette.com/leratierbretonnien/)",
|
||||||
@ -27,14 +27,32 @@ export class BoLUtility {
|
|||||||
default: false,
|
default: false,
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
onChange: lang => window.location.reload()
|
onChange: lang => window.location.reload()
|
||||||
});
|
})
|
||||||
|
game.settings.register("bol", "logoActorSheet", {
|
||||||
|
name: "Chemin du logo des fiches de perso",
|
||||||
|
hint: "Vous pouvez changer le logo BoL des fiches de perso, pour jouer dans un autre univers (idéalement 346 x 200, défaut : /systems/bol/ui/logo.webp)",
|
||||||
|
scope: "world",
|
||||||
|
config: true,
|
||||||
|
default: "/systems/bol/ui/logo.webp",
|
||||||
|
type: String,
|
||||||
|
onChange: lang => window.location.reload()
|
||||||
|
})
|
||||||
|
game.settings.register("bol", "logoTopLeft", {
|
||||||
|
name: "Chemin du logo haut gauche",
|
||||||
|
hint: "Vous pouvez changer le logo BoL en haut à gauche de chaque écran (idéalement 718 x 416, défaut : /systems/bol/ui/logo2.webp)",
|
||||||
|
scope: "world",
|
||||||
|
config: true,
|
||||||
|
default: "/systems/bol/ui/logo2.webp",
|
||||||
|
type: String,
|
||||||
|
onChange: lang => window.location.reload()
|
||||||
|
})
|
||||||
|
|
||||||
this.rollArmor = game.settings.get("bol", "rollArmor") // Roll armor or not
|
this.rollArmor = game.settings.get("bol", "rollArmor") // Roll armor or not
|
||||||
this.useBougette = game.settings.get("bol", "useBougette") // Use optionnal bougette rules
|
this.useBougette = game.settings.get("bol", "useBougette") // Use optionnal bougette rules
|
||||||
|
this.actorSheetLogo = game.settings.get("bol", "logoActorSheet") || "/systems/bol/ui/logo.webp"
|
||||||
|
this.logoTopLeft = game.settings.get("bol", "logoTopLeft") || "/systems/bol/ui/logo2.webp"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static getRollArmor() {
|
static getRollArmor() {
|
||||||
return this.rollArmor
|
return this.rollArmor
|
||||||
@ -43,9 +61,19 @@ export class BoLUtility {
|
|||||||
static getUseBougette() {
|
static getUseBougette() {
|
||||||
return this.useBougette
|
return this.useBougette
|
||||||
}
|
}
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
static getLogoActorSheet() {
|
||||||
|
return this.actorSheetLogo
|
||||||
|
}
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
static getLogoTopLeft() {
|
||||||
|
return this.logoTopLeft
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static async ready() {
|
static async ready() {
|
||||||
|
//$("#logo").attr("src", this.getLogoTopLeft() )
|
||||||
|
$("#logo").css("content",`url(${this.getLogoTopLeft()})`)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
"url": "https://www.uberwald.me/gitea/public/bol",
|
"url": "https://www.uberwald.me/gitea/public/bol",
|
||||||
"license": "LICENSE.txt",
|
"license": "LICENSE.txt",
|
||||||
"flags": {},
|
"flags": {},
|
||||||
"version": "1.5.1",
|
"version": "1.5.2",
|
||||||
"templateVersion": 10,
|
"templateVersion": 10,
|
||||||
"minimumCoreVersion": "0.8.6",
|
"minimumCoreVersion": "0.8.6",
|
||||||
"compatibleCoreVersion": "9",
|
"compatibleCoreVersion": "9",
|
||||||
@ -183,7 +183,7 @@
|
|||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"socket": true,
|
"socket": true,
|
||||||
"manifest": "https://www.uberwald.me/gitea/public/bol/raw/master/system.json",
|
"manifest": "https://www.uberwald.me/gitea/public/bol/raw/master/system.json",
|
||||||
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v1.5.1.zip",
|
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v1.5.2.zip",
|
||||||
"protected": false,
|
"protected": false,
|
||||||
"background": "images/map_lemurie.webp",
|
"background": "images/map_lemurie.webp",
|
||||||
"gridDistance": 1.5,
|
"gridDistance": 1.5,
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
<form class="{{cssClass}} flexcol" autocomplete="off">
|
<form class="{{cssClass}} flexcol bol-actor-form" autocomplete="off">
|
||||||
|
<!--<img class="system-img" src="/systems/bol/ui/logo.webp" height="115" width="190"/> -->
|
||||||
|
|
||||||
<div class="wrap flexrow">
|
<div class="wrap flexrow">
|
||||||
|
|
||||||
{{!-- Sidebar --}}
|
{{!-- Sidebar --}}
|
||||||
<div class="sidebar flex0">
|
<div class="sidebar flex0 bol-actor-sidebar">
|
||||||
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" height="100" width="100"
|
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" height="100" width="100"
|
||||||
style="border:1px outset lightgray; box-shadow: 5px 5px 5px gray" />
|
style="border:1px outset lightgray; box-shadow: 5px 5px 5px gray" />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user