diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 2adf8cf8..a44e24e5 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -1,4 +1,10 @@ ## 3.3.0 +### Improved +- Relations now are shown as tags view. You can select the color of those tags in column settings +### No longer broken +- Tag format of new entries fixed [#777](https://github.com/RafaelGB/obsidian-db-folder/issues/777) +- Bug fixes for CSV management [#782](https://github.com/RafaelGB/obsidian-db-folder/issues/782) [#778](https://github.com/RafaelGB/obsidian-db-folder/issues/778) [#740](https://github.com/RafaelGB/obsidian-db-folder/issues/740) +## 3.3.0-beta.1 ### Shiny new things - New option: Bidirectional relations. You can now create a relation between two databases and the relation will be created in both databases. [#581](https://github.com/RafaelGB/obsidian-db-folder/issues/581) - Formulas arrives to rollups! You can now use formulas in rollups. [#758](https://github.com/RafaelGB/obsidian-db-folder/issues/758) diff --git a/manifest-beta.json b/manifest-beta.json index e1d26b52..c0ef7afc 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "dbfolder", "name": "DB Folder", - "version": "3.3.0-beta.1", + "version": "3.3.0", "minAppVersion": "1.0.3", "description": "Folder with the capability to store and retrieve data from a folder like database", "author": "RafaelGB", diff --git a/manifest.json b/manifest.json index fab4b50a..dd962562 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "dbfolder", "name": "DB Folder", - "version": "3.2.4", + "version": "3.3.0", "minAppVersion": "1.0.3", "description": "Folder with the capability to store and retrieve data from a folder like database", "author": "RafaelGB", diff --git a/src/components/cellTypes/RelationCell.tsx b/src/components/cellTypes/RelationCell.tsx index fc090701..faad26fc 100644 --- a/src/components/cellTypes/RelationCell.tsx +++ b/src/components/cellTypes/RelationCell.tsx @@ -1,10 +1,10 @@ import { CellComponentProps } from "cdm/ComponentsModel"; import { TableColumn } from "cdm/FolderModel"; -import { InputType, StyleVariables } from "helpers/Constants"; +import { InputType } from "helpers/Constants"; import { c, getAlignmentClassname } from "helpers/StylesHelper"; import { Notice } from "obsidian"; import { Link } from "obsidian-dataview"; -import React, { useRef, useState } from "react"; +import React, { useState } from "react"; import { DataviewService } from "services/DataviewService"; import { ParseService } from "services/ParseService"; import RelationEditor from "components/cellTypes/Editor/RelationEditor";