feat: release Office Tools 0.1.0

This commit is contained in:
2026-08-31 22:37:01 +02:00
commit a5524e27e3
90 changed files with 16328 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { describe, expect, it } from "vitest";
import { manifest } from "../../src/toolbox/manifest";
import { APP_VERSION } from "../../src/version";
describe("Toolbox manifest", () => {
it("keeps the release and source identity pinned", () => {
expect(manifest.id).toBe("de.add-ideas.office-tools");
expect(manifest.version).toBe(APP_VERSION);
expect(manifest.entry).toBe("./");
expect(manifest.source).toEqual({
repository: "https://git.add-ideas.de/lotobo/office-tools",
license: "GPL-3.0-or-later",
});
expect(manifest.privacy).toMatchObject({
processing: "local",
fileUploads: false,
telemetry: false,
});
});
});