diff --git a/README.md b/README.md index 262aa40..2c075b3 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,6 @@ Beginning with v0.12, Sparkle contains native support for installation as a user #### TamperMonkey/GreaseMonkey/ViolentMonkey To install Sparkle as a userscript in a *Monkey userscript manager, download the `sparkle.js` file from the Releases tab and add it to your preferred userscript manager. (Exact steps will vary depending on which extension you're using; consider searching for more specific instructions online.) -#### Bonobo -To install Sparkle in [Bonobo](https://github.com/bonobo-devs/bonobo/tree/main), download the `sparkle.bonobo` file from the Releases tab and select the downloaded file in your Bonobo userscript management window (opened by clicking the extension icon). - ## How to use When launching Snap! or one of its forks with Sparkle installed, you should see a new button being added to the title bar: diff --git a/VERSION-BUMPING.md b/VERSION-BUMPING.md index acd2e68..8c2accd 100644 --- a/VERSION-BUMPING.md +++ b/VERSION-BUMPING.md @@ -19,4 +19,4 @@ Change `versionArray` to match the version, using the `[major, minor, patch]` fo ## version.json In `version.json`, modify the file's contents to the following array, where `major`, `minor`, and `patch` are the first, second, and third components of the version number, respectively: `["major", "minor", "patch"]`. -A GitHub Actions bot will proceed to bump the version numbers in `manifest.json` and `bonobo.toml`. +A GitHub Actions bot will proceed to bump the version number in `manifest.json`. diff --git a/bonobo.toml b/bonobo.toml deleted file mode 100644 index f0bb664..0000000 --- a/bonobo.toml +++ /dev/null @@ -1,14 +0,0 @@ -[budf] -version = 1 - -[userscript] -name = "Sparkle" -id = "sparkle" -version = "v0.12.0" -match = [ - "*://snap.berkeley.edu/snap/snap.html", - "*://snap.berkeley.edu/snap/dev/snap.html", - "*://e016.github.io/split-mod/split.html", - "*://codingisfun2831t.github.io/split-mod-prs/split.html", - "*://alessandrito123.github.io/Snavanced/snap.html", -] diff --git a/sparkle-bump-version.py b/sparkle-bump-version.py index f491307..e8febc9 100644 --- a/sparkle-bump-version.py +++ b/sparkle-bump-version.py @@ -12,15 +12,15 @@ f.write(json.dumps(manifest, indent=4)) f.close() -f = open("bonobo.toml", "rb") -bonobo = tomllib.load(f) -f.close() +#f = open("bonobo.toml", "rb") +#bonobo = tomllib.load(f) +#f.close() -bonobo["userscript"]["version"] = f"v{".".join(version)}" +#bonobo["userscript"]["version"] = f"v{".".join(version)}" -f = open("bonobo.toml", "w") -f.write(tomli_w.dumps(bonobo)) -f.close() +#f = open("bonobo.toml", "w") +#f.write(tomli_w.dumps(bonobo)) +#f.close() #f = open("index.js", "w+") #js = f.read()