Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Theme registry distribution: browse, install, uninstall, and update community themes from the plugin registry (Settings > Plugins > Browse, filtered by Themes category)

### Changed

- Replaced fragmented Theme/DesignConstants/SQLEditorTheme/ToolbarDesignTokens with unified ThemeEngine
Expand Down
16 changes: 16 additions & 0 deletions TablePro/Theme/RegistryThemeMeta.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import Foundation

internal struct RegistryThemeMeta: Codable {
var installed: [InstalledRegistryTheme]

init(installed: [InstalledRegistryTheme] = []) {
self.installed = installed
}
}

internal struct InstalledRegistryTheme: Codable, Identifiable {
let id: String
let registryPluginId: String
let version: String
let installedDate: Date
}
Loading
Loading