Skip to content

Commit

Permalink
Merge branch 'mon:master' into variouspatches
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonokid authored Feb 6, 2024
2 parents 7773d6a + ee2ab62 commit 1bd5a5c
Show file tree
Hide file tree
Showing 49 changed files with 8,027 additions and 264 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
plugins:
- html
env:
browser: true
es2021: true
overrides: []
parserOptions:
ecmaVersion: latest
rules: {}
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Set update schedule for GitHub Actions

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
5 changes: 5 additions & 0 deletions .github/html5validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root: ./
ignore_re:
- 'An "img" element must have an "alt" attribute, except under certain conditions'
- 'Element "div" not allowed as child of element "label" in this context'
- 'The "center" element is obsolete. Use CSS instead' # initialdzero
20 changes: 20 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check HTML/JS is valid

on:
pull_request:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run HTML5 Validator
uses: Cyb3r-Jak3/[email protected]
with:
config: ./.github/html5validator.yml
css: true
- name: Install modules for eslint
run: npm i
- name: Run ESLint
run: npx eslint . --ext .js,.html
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
package-lock.json
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ These days, I do not create the patches. Everything is community submitted.
If you would like new hex edits, make them yourself and make a pull request!

## Patch rules
- *New*: No n-0 newer than 1 year ago. [Why?](docs/why_no_n_minus_zero.md)
- Rhythm games only. Bombergirl is the one exception, it's Konami anyway.
- No n-0 newer than 1 year ago. [Why?](docs/why_no_n_minus_zero.md)
- *New for 2023* PC based arcade games only. The main focus is rhythm games though!
- No autoplay patches
- It is far too easy to accidentally get people banned from their networks
- It's mainly used to upload autoplays to YouTube, which is not something I want to be involved with
Expand Down
26 changes: 26 additions & 0 deletions bishibashi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>THE ☆ BishiBashi DLL Modder</title>
<link rel='stylesheet' href='css/style.css'>
<script type='text/javascript' src='js/dllpatcher.js'></script>
<script type='text/javascript'>
window.addEventListener('load', function () {
new Patcher('bishi09.exe', "", [
{
name: 'Allow A region exe to run with J dongle',
patches: [
{offset : 0x6ebd1, off: [0xb0, 0x42, 0x88, 0x44, 0x24, 0x17], on : [0x8d, 0x44, 0x24, 0x14, 0xb3, 0x42]},
{offset : 0x6ebd8, off: [0x44, 0x24, 0x18, 0xb0, 0x41, 0x88, 0x44, 0x24, 0x19, 0x88, 0x44, 0x24, 0x1a, 0x88, 0x44, 0x24, 0x1b], on : [0x58, 0x03, 0x88, 0x58, 0x04, 0xfe, 0xcb, 0x88, 0x58, 0x06, 0x88, 0x58, 0x07, 0xc6, 0x40, 0x05, 0x4a]},
{offset : 0x6fa3a, off: [0x12], on : [0x19]},
]
},
])
});
</script>
</head>
<body>
<h1>THE ☆ BishiBashi DLL Modder</h1>
</body>
</html>
Loading

0 comments on commit 1bd5a5c

Please sign in to comment.