Compare commits

...

6 Commits

Author SHA1 Message Date
TakeV 280d2b683a
Bump version 2024-03-03 13:31:33 -05:00
TakeV df2e5e4428
Fix redacted DB entry
Also pretty-print the json
2024-03-03 13:06:15 -05:00
TakeV 7c5728d0cc
Fix old api call 2024-01-22 01:18:50 -05:00
TakeV 4a5c712d2f
Update links to point to solarpunk 2023-12-01 13:52:53 -05:00
TakeV 30983d262d
Add TODOs.org 2023-12-01 13:06:09 -05:00
TakeV 409f00195f
Add guix manifest 2023-12-01 13:05:16 -05:00
6 changed files with 1532 additions and 19 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
/.idea/*
/blades-in-the-dark.lock
node_modules/
package-lock.json
package.json

1
TODOs.org Normal file
View File

@ -0,0 +1 @@
* TODO Package node-sass

5
manifest.scm Normal file
View File

@ -0,0 +1,5 @@
;; What follows is a "manifest" equivalent to the command line you gave.
;; You can store it in a file that you may then pass to any 'guix' command
;; that accepts a '--manifest' (or '-m') option.
(specifications->manifest (list "node"))

File diff suppressed because it is too large Load Diff

View File

@ -283,7 +283,7 @@
$turf_margin: 20px;
$connector_height: math.div($turf_height, 10);
$connector_height: $turf_height / 10;
$connector_width: $turf_margin * 2;
width: $turf_width;
@ -309,8 +309,8 @@
&.right,
&.left {
width: $turf_margin * 2;
height: math.div($turf_height, 5);
top: math.div($turf_height, 2) - math.div($turf_height, 10);
height: $turf_height / 5;
top: ($turf_height / 2) - ($turf_height / 10);
}
&.left {
left: -$turf_margin * 2;
@ -322,8 +322,8 @@
&.top,
&.bottom {
height: $turf_margin * 2;
width: math.div($turf_height, 5);
left: math.div($turf_width, 2) - math.div($turf_height, 10);
width: ($turf_height / 5);
left: ($turf_width / 2) - ($turf_height / 10);
}
&.top {
top: -$turf_margin * 2;
@ -421,7 +421,7 @@
vertical-align: middle;
border: 2px solid $accent_color;
border-radius: math.div($diameter, 2);
border-radius: ($diameter / 2);
}
}
@ -440,4 +440,4 @@
}
}
}
}
}

View File

@ -2,16 +2,16 @@
"id": "beam-saber",
"title": "Beam Saber",
"description": "Beam Saber game system.",
"version": "4.9",
"version": "4.9.1",
"compatibility": {
"minimum": 10,
"verified": "10.284"
},
"name": "beam-saber",
"minimumCoreVersion": "10",
"url": "https://github.com/TakeV-Lambda/foundryvtt-beam-saber",
"manifest": "https://raw.githubusercontent.com/TakeV-Lambda/foundryvtt-beam-saber/master/system.json",
"download": "https://github.com/TakeV-Lambda/foundryvtt-beam-saber/archive/refs/tags/4.9.zip",
"url": "https://git.solarpunk.moe/TakeV/foundryvtt-beam-saber",
"manifest": "https://git.solarpunk.moe/TakeV/foundryvtt-beam-saber/raw/branch/devel/system.json",
"download": "https://git.solarpunk.moe/TakeV/foundryvtt-beam-saber/archive/devel.zip",
"authors": [
{ "name": "megastruktur" },
{ "name": "drewg13" },