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
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,22 @@ NO_STRIP=true npm run tauri build

## Credits

- [jsnli/Samira](https://github.com/jsnli/Samira) — original implementation, the heavy lifting on VDF parsing and Steamworks integration.
- [jsnli/Samira](https://github.com/jsnli/Samira) — the upstream this program is derived from, and the origin of most of what it still is. The VDF parser, the Steamworks integration, and the overall shape of the Rust backend are upstream's work, much of it unchanged here. Samira is GPL-3.0; this fork inherits those terms.
- [Valve](https://partner.steamgames.com/) — Steamworks SDK (redistributed per [SDK License](https://partner.steamgames.com/documentation/sdk_access_agreement)).
- [Project Colony](https://github.com/Project-Colony) — design language and distribution ecosystem.

## License

MIT, matching upstream. See `LICENSE`.
GPL-3.0. See `LICENSE`.

This is a derivative work of [jsnli/Samira](https://github.com/jsnli/Samira), which is
published under the GNU General Public License version 3. Substantial upstream code
survives here verbatim, so that licence carries forward: this fork is GPL-3.0 and cannot
be redistributed under anything more permissive. Earlier revisions of this README claimed
"MIT, matching upstream", which was true of neither project.

The SPDX identifier is the plain `GPL-3.0` rather than `GPL-3.0-or-later`. Upstream ships
the bare GPLv3 text with no "or any later version" notice, and section 14 of that licence
grants the option of following a later version only when the program itself says so.
Declaring `-or-later` would assert a permission upstream never gave, so the
version-neutral string is used instead.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "sam-colony-edition",
"private": true,
"version": "0.6.1",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
3 changes: 3 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.6.1"
description = "Steam achievement manager for Linux"
authors = ["you"]
edition = "2021"
# Derivative work of jsnli/Samira, which is GPL-3.0. Upstream ships the bare
# GPLv3 text with no "or any later version" notice, so no "-or-later" is claimed.
license = "GPL-3.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Loading