Skip to content

Commit 0ba8d6e

Browse files
committed
update changelog
1 parent efe45c5 commit 0ba8d6e

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
11
# Obsidian Meta Bind Changelog
22

3-
# Unreleased
3+
# 0.12.0
4+
5+
New Features
6+
7+
- Added options to insert example input and view fields, as well as buttons, from the editor context menu [#179](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/179)
8+
- Added the option to control if a note should be opened in a new tab to the `open` button action [#178](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/178)
9+
- Added button templates that can be edited from the plugin settings
10+
11+
Changes
412

513
- Improved validation errors for buttons and the API
614
- Removed deprecated input fields that had names in snake_case. Use the camelCase variants instead. The snake_case variants were deprecated since version `0.6.0`.
15+
- Reworked the UI for the input field template modal
16+
- Made substantial internal changes to the way the plugin handles metadata
17+
- Changed the plugin name to `Meta Bind` to comply with the new Obsidian plugin naming requirements
18+
- Removed some unnecessary console logs to comply with the Obsidian plugin guidelines
19+
20+
Bug Fixes
21+
22+
- Fixed an issue with the `stepSize` argument causing floating point errors under specific conditions when used with the `progressBar` input [#180](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/180)
23+
- Fixed parsing errors not showing in the input field template modal
24+
- Fixed button id collisions [#187](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/187)
25+
- Fixed buttons not unloading on file rename or delete [#187](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/187)
26+
- Fixed not being able to scroll the `editor` input field [#161](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/161)
27+
- Fixed the `editor` input field overflowing [#190](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/190)
728

829
# 0.11.0
930

tests/__mocks__/TestPlugin.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,14 @@ export class TestPlugin implements IPlugin {
3535
this.metadataManager.registerSource(
3636
new InternalMetadataSource(BindTargetStorageType.FRONTMATTER, this.metadataManager),
3737
);
38-
3938
this.metadataManager.registerSource(
4039
new InternalMetadataSource(BindTargetStorageType.MEMORY, this.metadataManager),
4140
);
42-
4341
this.metadataManager.registerSource(
4442
new GlobalMetadataSource(BindTargetStorageType.GLOBAL_MEMORY, this.metadataManager),
4543
);
46-
4744
this.metadataManager.registerSource(new ScopeMetadataSource(BindTargetStorageType.SCOPE, this.metadataManager));
4845

4946
this.metadataManager.setDefaultSource(BindTargetStorageType.FRONTMATTER);
50-
51-
// window.setInterval(() => this.metadataManager.cycle(), this.settings.syncInterval);
52-
}
53-
54-
public getFilePathsByName(name: string): string[] {
55-
return [name];
5647
}
5748
}

0 commit comments

Comments
 (0)