mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-25 18:33:11 +00:00
upgraded sentry; make sync
This commit is contained in:
parent
54a23e0cd5
commit
b1263513ed
7
Makefile
7
Makefile
@ -48,3 +48,10 @@ tsweb:
|
|||||||
astrolibre.b64.txt: astrolibre.rom
|
astrolibre.b64.txt: astrolibre.rom
|
||||||
lzg -9 $< | base64 -w 0 > $@
|
lzg -9 $< | base64 -w 0 > $@
|
||||||
|
|
||||||
|
VERSION := $(shell git tag -l --points-at HEAD)
|
||||||
|
|
||||||
|
sync: dist
|
||||||
|
@[ "${VERSION}" ] || ( echo ">> No version set at HEAD, tag it first"; exit 1 )
|
||||||
|
echo Version: $(VERSION)
|
||||||
|
cp config.js $(TMP)
|
||||||
|
aws --profile pzp s3 sync $(TMP)/ s3://8bitworkshop/dev
|
||||||
|
@ -614,8 +614,8 @@ $( ".dropdown-submenu" ).click(function(event) {
|
|||||||
|
|
||||||
<!-- Sentry error reporting -->
|
<!-- Sentry error reporting -->
|
||||||
<script
|
<script
|
||||||
src="https://browser.sentry-cdn.com/5.29.0/bundle.min.js"
|
src="https://browser.sentry-cdn.com/6.4.1/bundle.min.js"
|
||||||
integrity="sha384-/dYT/04VSU9ItKRPTkWeVZ0kqRsVh/T/5rNCjzBwpx7sYeeueKgJzGMNXSal3xoo"
|
integrity="sha384-THoc7rflwZFKTdZNgv6jLFFDn299Uv3t1SW5B4yGLvLiCRTYP9ys6vXZcMl95TQF"
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"
|
||||||
></script>
|
></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -119,7 +119,7 @@ class VCSPlatform extends BasePlatform {
|
|||||||
|
|
||||||
loadROM(title, data) {
|
loadROM(title, data) {
|
||||||
if (data.length == 0 || ((data.length & 0x3ff) != 0))
|
if (data.length == 0 || ((data.length & 0x3ff) != 0))
|
||||||
throw Error("Invalid ROM length: " + data.length);
|
throw new EmuHalt("Invalid ROM length: " + data.length);
|
||||||
// TODO: parse Log messages from Javatari?
|
// TODO: parse Log messages from Javatari?
|
||||||
var wasrunning = this.isRunning();
|
var wasrunning = this.isRunning();
|
||||||
Javatari.loadROM(title, data);
|
Javatari.loadROM(title, data);
|
||||||
@ -298,7 +298,7 @@ class VCSPlatform extends BasePlatform {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
bankSwitchStateToString(state) {
|
bankSwitchStateToString(state) {
|
||||||
return (state.ca.bo !== undefined ? ("BankOffset "+hex(state.ca.bo,4)+"\n"):"");
|
return (state.ca && state.ca.bo !== undefined) ? "BankOffset "+hex(state.ca.bo,4)+"\n" : "";
|
||||||
}
|
}
|
||||||
piaStateToLongString(p) {
|
piaStateToLongString(p) {
|
||||||
return "Timer " + p.t + "/" + p.c + "\nINTIM $" + hex(p.IT,2) + " (" + p.IT + ")\nINSTAT $" + hex(p.IS,2) + "\n";
|
return "Timer " + p.t + "/" + p.c + "\nINTIM $" + hex(p.IT,2) + " (" + p.IT + ")\nINSTAT $" + hex(p.IS,2) + "\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user