Skip to content
This repository was archived by the owner on Aug 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bonobo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = 1
[userscript]
name = "Sparkle"
id = "sparkle"
version = "v0.12.0"
version = "v1.0.0"
match = [
"*://snap.berkeley.edu/snap/snap.html",
"*://snap.berkeley.edu/snap/dev/snap.html",
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// @match *://codingisfun2831t.github.io/split-mod-prs/split.html
// @match *://alessandrito123.github.io/Snavanced/snap.html
// @grant none
// @version 0.12.0
// @version 1.0.0
// @author sparkle-devs
// @description An addon manager for the Snap! programming language and its forks.
// ==/UserScript==
Expand Down Expand Up @@ -1562,7 +1562,7 @@ function preloadAddonFromPath(path) {

// create the __crackle__ object
window.__crackle__ = {
versionArray: [0, 12, 0] // Maintainers: Change this array to match current version ([major, minor, patch]). Keyword for find-and-replace search: SEMVER-VAR.
versionArray: [1, 0, 0] // Maintainers: Change this array to match current version ([major, minor, patch]). Keyword for find-and-replace search: SEMVER-VAR.
};
Object.assign(window.__crackle__, {
version: API.versionStringFromSemver(window.__crackle__.versionArray),
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Sparkle",
"version": "0.12.0",
"version": "1.0.0",
"description": "Modding framework for Snap! and its forks.",
"content_scripts": [
{
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["0", "12", "0"]
["1", "0", "0"]