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
14 changes: 7 additions & 7 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,20 @@ First, add the Mailboxes JAR to your local Maven repository or use a local file
<dependency>
<groupId>dansplugins</groupId>
<artifactId>Mailboxes</artifactId>
<version>1.3.0</version>
<version>2.0.0-SNAPSHOT-8-8-2026</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/Mailboxes-1.3.0.jar</systemPath>
<systemPath>${project.basedir}/libs/Mailboxes-2.0.0-SNAPSHOT-8-8-2026.jar</systemPath>
</dependency>
</dependencies>
```

**Or install to local Maven repository:**
```bash
mvn install:install-file \
-Dfile=Mailboxes-1.3.0.jar \
-Dfile=Mailboxes-2.0.0-SNAPSHOT-8-8-2026.jar \
-DgroupId=dansplugins \
-DartifactId=Mailboxes \
-Dversion=1.3.0 \
-Dversion=2.0.0-SNAPSHOT-8-8-2026 \
-Dpackaging=jar
```

Expand All @@ -59,7 +59,7 @@ Then add to your `pom.xml`:
<dependency>
<groupId>dansplugins</groupId>
<artifactId>Mailboxes</artifactId>
<version>1.3.0</version>
<version>2.0.0-SNAPSHOT-8-8-2026</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -69,7 +69,7 @@ Then add to your `pom.xml`:

```groovy
dependencies {
compileOnly files('libs/Mailboxes-1.3.0.jar')
compileOnly files('libs/Mailboxes-2.0.0-SNAPSHOT-8-8-2026.jar')
}
```

Expand Down Expand Up @@ -164,7 +164,7 @@ System.out.println("Using Mailboxes API: " + apiVersion);
##### `getVersion()`
Returns the Mailboxes plugin version.

**Returns:** `String` - The plugin version, prefixed with `v` (e.g., "v1.3.0")
**Returns:** `String` - The plugin version, prefixed with `v` (e.g., "v2.0.0-SNAPSHOT-8-8-2026")

**Example:**
```java
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
## [2.0.0-SNAPSHOT-8-8-2026] – 2026-08-08

### Changed
- Mailboxes is now developed AI-first. Day-to-day feature work, grooming, review and maintenance run through AI agents working directly against this repository, with the maintainers setting direction and approving what lands. The major version bump marks that change in how the project is built — it is not a break in behaviour, configuration or stored data, and existing installations can upgrade in place. Released as `2.0.0-SNAPSHOT-8-8-2026`: the AI-first line has not yet been verified in live operation, and the dated snapshot designation stays until it has.

### Added
- `/m stats` command to view total, active, archived, and unread message counts
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dansplugins</groupId>
<artifactId>Mailboxes</artifactId>
<version>1.3.0</version>
<version>2.0.0-SNAPSHOT-8-8-2026</version>
<packaging>jar</packaging>

<name>Mailbox</name>
Expand Down
Loading