Back to mods
Simple Modpack Update Checker project artwork

CurseForge · Minecraft mod

Simple Modpack Update Checker

A simple mod for modpacks that automatically checks if the modpack is up-to-date and displays a toast if it is not. Use modrinth id for reference.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Simple Modpack Update Checker release matches 26.2 Fabric?

Updated 6 days ago
Best match for your filters simple modpack update checker 2.2.1 for 26.2
Game version 26.2
Loader Fabric

simple modpack update checker 2.2.1 for 26.2 targets 26.2 with Fabric. The project page does not say whether this file belongs on the client, dedicated server, or both. All 2 required mods have matching files.

Where it goes

Is Simple Modpack Update Checker required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does simple modpack update checker 2.2.1 for 26.2 need?

simple modpack update checker 2.2.1 for 26.2 on 26.2 Fabric. Every mod below is checked against that same setup.

All 2 required mods have matching files

Install Fabric API, Fabric API first. We found matching files for this game-version and loader setup.

Fabric API Needed by simple modpack update checker 2.2.1 for 26.2
required
Matching file found Matched file: [26.2] Fabric API 0.160.0+26.2
Fabric API Needed by simple modpack update checker 2.2.1 for 26.2
required
Matching file found Matched file: 0.152.1+26.2

We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add Simple Modpack Update Checker without breaking your instance.

Built for simple modpack update checker 2.2.1 for 26.2 on 26.2 Fabric. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use simple modpack update checker 2.2.1 for 26.2. It targets 26.2 with Fabric; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install Fabric API, Fabric API first. We found matching files for this game-version and loader setup.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside simple modpack update checker 2.2.1 for 26.2. It opens that exact file at the source.

About this project

What does Simple Modpack Update Checker add?

icon.png

Simple Modpack Update Checker is a lightweight mod designed to check if your modpack is up-to-date. This mod verifies the version of your modpack against a remote source and notifies you if an update is available.

Supported Versions

smuc 1.0.0 smuc 2.0.0
mc 1.21
mc 1.21.1
mc 1.21.2
mc 1.21.3
mc 1.21.4
mc 1.21.5
mc 1.21.6
mc 1.21.7
mc 1.21.8
mc 1.21.9
mc 1.21.10

Configuration

The configuration file is located at config/simple-modpack-update-checker.json. For most users, only three fields are required:

{
  "configVersion": 2,
  "localVersion": "3.3.3",
  "identifier": "KmiWHzQ4"
}
  1. configVersion: Configuration file version (automatically set)
  2. localVersion: The current version of the installed modpack. This can be any string.
  3. identifier: Either a URL to a text file containing the latest version (formatted as version = "String", eg your pack.toml from packwiz) or the Modrinth project ID (curseforge feature will be implemented).

Configuration Options

Field Required Description Default Example
configVersion Configuration file version 2 2
localVersion Current version of your modpack - "3.3.3"
identifier Modrinth project ID or URL - "KmiWHzQ4"
minecraftVersions Specific Minecraft
version to track
(Modrinth only)
All versions ["1.21.4", "1.21.5"]
releaseChannel Release channel to follow
(Modrinth only)
"release" "beta", "alpha"

Note: minecraftVersions and releaseChannel only work when using a Modrinth project ID. When using a URL, these options are ignored and the mod will simply check the version string from your URL.

Release Channels

Note: Release channels only work when using a Modrinth project ID. URL-based configurations will ignore this setting.

The mod supports different release channels that work in a hierarchical way. More unstable channels include all the more stable ones:

Channel Types

  • "release" (default): Only stable releases
  • "beta": Beta and stable releases
  • "alpha": Alpha, beta, and stable releases (everything)

Example Scenario

If a project has these versions (newest first):

  1. 2.1.0-alpha (yesterday)
  2. 2.0.5 (release, 3 days ago)
  3. 2.0.4-beta (1 week ago)

Results by channel:

  • "alpha" → Shows 2.1.0-alpha (latest of any type)
  • "beta" → Shows 2.0.5 (latest beta/release, skips alpha)
  • "release" → Shows 2.0.5 (latest release only)

Examples

Using a URL (basic version checking only):

{
  "configVersion": 2,
  "localVersion": "3.3.3",
  "identifier": "https://raw.githubusercontent.com/SkyblockerMod/Skyblocker-modpack/main/packwiz/pack.toml"
}

Using a Modrinth Project ID (basic):

{
  "configVersion": 2,
  "localVersion": "3.3.3",
  "identifier": "KmiWHzQ4"
}

With Minecraft version filtering (Modrinth only):

{
  "configVersion": 2,
  "localVersion": "3.3.3",
  "identifier": "KmiWHzQ4",
  "minecraftVersions": ["1.21.4"]
}

With beta release channel (Modrinth only):

{
  "configVersion": 2,
  "localVersion": "3.3.3-beta.5",
  "identifier": "KmiWHzQ4",
  "releaseChannel": "beta"
}

With multiple Minecraft versions and release channel (Modrinth only):

{
  "configVersion": 2,
  "localVersion": "3.3.3",
  "identifier": "KmiWHzQ4",
  "minecraftVersions": ["1.21.4", "1.21.5"],
  "releaseChannel": "alpha"
}

Usage

When you start Minecraft with this mod installed, it will automatically check for updates based on your configuration file and notify you if an update is available.

For Modrinth Projects

  • The mod fetches version information from the Modrinth API
  • Supports filtering by Minecraft version(s) and release channels
  • Shows notifications for newer versions based on your configured filters

For URL-Based Checks

  • The mod fetches content from your specified URL
  • Looks for version information in the format version = "String"
  • Compatible with packwiz pack.toml files
  • Note: Minecraft version filtering and release channels are not supported with URLs

img.png

Project description from CurseForge.

Pick your setup

Simple Modpack Update Checker by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

16 available setups

Showing the newest 12 of 16 game versions. Older files are in the list below.

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Simple Modpack Update Checker versions and loaders

2 of 5 releases match
Clear filters

Looking for an older file? The official CurseForge project page is in Resources.