Skip to content
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 develop.project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"ReplicatedStorage": {
"$className": "ReplicatedStorage",
"SatchelLoader": {
"$path": "models"
"$path": "models/SatchelLoader"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Packages",
"tree": {
"$path": "../../Packages",
"$path": "../../../Packages",
"satchel": {
"$path": "../../src"
"$path": "../../../src"
}
}
}
File renamed without changes.
11 changes: 11 additions & 0 deletions models/SatchelLoader/init.client.luau
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--[[
💖 Thanks for using Satchel 💖

Satchel is a modern open-source alternative to Roblox's default backpack 🎒

📰 DevForum: https://devforum.roblox.com/t/2451549
🛍️ Creator Store: https://create.roblox.com/store/asset/13947506401
🛝 Playground: https://www.roblox.com/games/13592168150
]]

require(script.Satchel)
1 change: 0 additions & 1 deletion models/init.client.luau

This file was deleted.

2 changes: 1 addition & 1 deletion package.project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "SatchelLoader",
"name": "Satchel",
"emitLegacyScripts": false,
"tree": {
"$path": "models"
Expand Down
20 changes: 20 additions & 0 deletions src/Attribution.luau
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--[[
Satchel is subject to the terms of the Mozilla Public License, v. 2.0.

This script serves as the license notice for Satchel to meet MPL requirements.

By using Satchel, you are required to do one of the following:
1. Keep the Attribution script unmodified and enabled
2. Credit Satchel in your experience description by name and creator (@WinnersTakesAll)
3. Have a DevForum topic linked in your experience description, crediting Satchel with the above

Thank you for supporting Satchel. For more, consider sponsoring Satchel to support its development.
]]

local RunService = game:GetService("RunService")

if not RunService:IsStudio() then
print("💼 Running Satchel v1.4.1 by @WinnersTakesAll")
end

return {}
18 changes: 3 additions & 15 deletions src/init.luau
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
--!nolint DeprecatedApi

--[[
Name: Satchel
Version: 1.4.0
Description: Satchel is a modern open-source alternative to Roblox's default backpack. Satchel aims to be more customizable and easier to use than the default backpack while still having a "vanilla" feel.
By: @WinnersTakesAll on Roblox & @RyanLua on GitHub

Acknowledgements (@Roblox):
@OnlyTwentyCharacters, @SolarCrane -- For creating the CoreGui script
@thebrickplanetboy -- For allowing me to republish his fork of the backpack system.
@ForeverHD -- Making Topbar Plus and open-sourcing it for everyone to use

DevForum: https://devforum.roblox.com/t/2451549
]]

--[[
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at Mozilla Public License Version 2.0.
file, You can obtain one at http://mozilla.org/MPL/2.0/.
]]

local ContextActionService = game:GetService("ContextActionService")
Expand Down Expand Up @@ -52,6 +38,8 @@ BackpackScript.BackpackItemRemoved.Name = "BackpackRemoved"

local targetScript: ModuleScript = script

require(script.Attribution)

-- Constants --
local PREFERRED_TRANSPARENCY: number = GuiService.PreferredTransparency or 1

Expand Down
2 changes: 1 addition & 1 deletion wally.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ dependencies = []

[[package]]
name = "ryanlua/satchel"
version = "1.4.0"
version = "1.4.1"
dependencies = [["topbarplus", "1foreverhd/topbarplus@3.3.1"]]
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ryanlua/satchel"
description = "A modern open-source alternative to Roblox's default backpack."
version = "1.4.0"
version = "1.4.1"
license = "MPL-2.0"
authors = ["Ryan Luu <ryan.luu@ryanluu.dev>"]
realm = "shared"
Expand Down