mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-12-26 22:31:14 +00:00
3.2.0
This commit is contained in:
parent
8bdf61bb30
commit
d09f768628
10
css/ui.css
10
css/ui.css
@ -109,15 +109,15 @@ div.mem_info a.selected {
|
|||||||
}
|
}
|
||||||
.btn_group {
|
.btn_group {
|
||||||
border-radius:6px;
|
border-radius:6px;
|
||||||
padding:6px;
|
padding:8px;
|
||||||
margin-left:8px;
|
margin-left:8px;
|
||||||
background-color: #666;
|
background-color: #666;
|
||||||
}
|
}
|
||||||
.btn_group button {
|
.btn_group button {
|
||||||
padding-left:3px;
|
padding-left:4px;
|
||||||
padding-right:3px;
|
padding-right:4px;
|
||||||
padding-top:0px;
|
padding-top:2px;
|
||||||
padding-bottom:0px;
|
padding-bottom:2px;
|
||||||
}
|
}
|
||||||
.btn_label {
|
.btn_label {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
|
@ -70,9 +70,9 @@ TODO:
|
|||||||
- fix WebAudio (https://news.ycombinator.com/item?id=18066474)
|
- fix WebAudio (https://news.ycombinator.com/item?id=18066474)
|
||||||
- Safari: verilog scope doesn't work
|
- Safari: verilog scope doesn't work
|
||||||
- share playable link w/ verilog?
|
- share playable link w/ verilog?
|
||||||
- pixedit Sprite Rotation bitmap wrong (bpw?)
|
|
||||||
- no errors for verilog inline asm?
|
- no errors for verilog inline asm?
|
||||||
- allow download of JSASM output
|
- allow download of JSASM output
|
||||||
|
- update bootstrap/jquery
|
||||||
|
|
||||||
|
|
||||||
WEB WORKER FORMAT
|
WEB WORKER FORMAT
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "8bitworkshop",
|
"name": "8bitworkshop",
|
||||||
"version": "2.2.0",
|
"version": "3.2.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "8bitworkshop",
|
"name": "8bitworkshop",
|
||||||
"version": "2.2.0",
|
"version": "3.2.0",
|
||||||
"author": "Steven Hugg",
|
"author": "Steven Hugg",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var VERSION = '3.1.0';
|
var VERSION = '3.2.0';
|
||||||
var QS = document.location.search || '?';
|
var QS = document.location.search || '?';
|
||||||
document.location.href = 'v' + VERSION + '/' + QS;
|
document.location.href = 'v' + VERSION + '/' + QS;
|
||||||
</script>
|
</script>
|
||||||
|
@ -16,7 +16,8 @@ const ASTROCADE_BIOS_PRESETS = [
|
|||||||
{id:'bios.c', name:'BIOS'},
|
{id:'bios.c', name:'BIOS'},
|
||||||
];
|
];
|
||||||
|
|
||||||
// TODO: fix keys, more controllers, vibrato/noise, border color, debug info
|
// TODO: fix keys, more controllers, vibrato/noise, border color, debug info, rotate
|
||||||
|
// http://atariage.com/forums/topic/251416-programming-the-bally-arcadeastrocade/
|
||||||
|
|
||||||
const ASTROCADE_KEYCODE_MAP = makeKeycodeMap([
|
const ASTROCADE_KEYCODE_MAP = makeKeycodeMap([
|
||||||
// player 1
|
// player 1
|
||||||
|
@ -1011,7 +1011,7 @@ function showWelcomeMessage() {
|
|||||||
{
|
{
|
||||||
element: "#dropdownMenuButton",
|
element: "#dropdownMenuButton",
|
||||||
title: "Main Menu",
|
title: "Main Menu",
|
||||||
content: "Click the menu to switch between platforms, create new files, or share your work with others."
|
content: "Click the menu to download your code, switch between platforms, create new files, or share your work with others."
|
||||||
}];
|
}];
|
||||||
if (!is_vcs) {
|
if (!is_vcs) {
|
||||||
steps.push({
|
steps.push({
|
||||||
|
Loading…
Reference in New Issue
Block a user