Skip to content

Commit d3ea5b6

Browse files
committed
new version
1 parent 6d9974d commit d3ea5b6

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

docs/docs/changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## 3.3.0
2+
### Improved
3+
- Relations now are shown as tags view. You can select the color of those tags in column settings
4+
### No longer broken
5+
- Tag format of new entries fixed [#777](https://github.com/RafaelGB/obsidian-db-folder/issues/777)
6+
- 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)
7+
## 3.3.0-beta.1
28
### Shiny new things
39
- 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)
410
- Formulas arrives to rollups! You can now use formulas in rollups. [#758](https://github.com/RafaelGB/obsidian-db-folder/issues/758)

manifest-beta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "3.3.0-beta.1",
4+
"version": "3.3.0",
55
"minAppVersion": "1.0.3",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "3.2.4",
4+
"version": "3.3.0",
55
"minAppVersion": "1.0.3",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

src/components/cellTypes/RelationCell.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { CellComponentProps } from "cdm/ComponentsModel";
22
import { TableColumn } from "cdm/FolderModel";
3-
import { InputType, StyleVariables } from "helpers/Constants";
3+
import { InputType } from "helpers/Constants";
44
import { c, getAlignmentClassname } from "helpers/StylesHelper";
55
import { Notice } from "obsidian";
66
import { Link } from "obsidian-dataview";
7-
import React, { useRef, useState } from "react";
7+
import React, { useState } from "react";
88
import { DataviewService } from "services/DataviewService";
99
import { ParseService } from "services/ParseService";
1010
import RelationEditor from "components/cellTypes/Editor/RelationEditor";

0 commit comments

Comments
 (0)