Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGB committed Jan 28, 2023
1 parent 6d9974d commit d3ea5b6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/components/cellTypes/RelationCell.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit d3ea5b6

Please sign in to comment.