chore(release): 0.0.2

This commit is contained in:
anpigon 2022-04-07 14:18:18 +09:00
parent bad6dccf4e
commit 2fcc56510d
9 changed files with 20 additions and 24 deletions

View file

@ -5,7 +5,7 @@
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,

View file

@ -1,9 +1,15 @@
{
"types": [
{"type":"feat","section":"Features"},
{"type":"fix","section":"Bug Fixes"},
{"type":"test","section":"Tests", "hidden": true},
{"type":"build","section":"Build System", "hidden": true},
{"type":"ci","hidden":true}
{"type":"feat", "section":"Features"},
{"type":"fix", "section":"Bug Fixes"},
{"type":"test", "section":"Tests", "hidden": true},
{"type":"build", "section":"Build System", "hidden": true},
{"type":"ci", "hidden":true},
{"type":"improvement", "section":"Feature Improvements", "hidden": false },
{"type":"revert", "section":"Reverts", "hidden": false },
{"type":"docs", "section":"Docs", "hidden": false },
{"type":"style", "section":"Styling", "hidden": false },
{"type":"refactor", "section":"Code Refactoring", "hidden": false },
{"type":"perf", "section":"Performance Improvements", "hidden": false }
]
}

View file

@ -2,15 +2,4 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.0.7](https://github.dev/anpigon/obsidian-book-search-plugin/compare/1.0.6...1.0.7) (2022-04-06)
### [1.0.6](https://github.dev/anpigon/obsidian-book-search-plugin/compare/1.0.5...1.0.6) (2022-04-06)
### [1.0.5](https://github.dev/anpigon/obsidian-book-search-plugin/compare/1.0.4...1.0.5) (2022-04-06)
### [1.0.4](https://github.dev/anpigon/obsidian-book-search-plugin/compare/0.0.3...1.0.4) (2022-04-06)
### [1.0.3](https://github.dev/anpigon/obsidian-book-search-plugin/compare/v1.0.2...v1.0.3) (2022-04-06)
- You can create notes by searching for a book.
### 1.0.2 (2022-04-06)
- first release
### 0.0.2 (2022-04-07)

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-book-search-plugin",
"name": "Book Search",
"version": "1.0.7",
"version": "0.0.2",
"minAppVersion": "0.12.0",
"description": "This is a sample plugin for Obsidian. This plugin demonstrates some of the capabilities of the Obsidian API.",
"author": "Obsidian",

Binary file not shown.

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "obsidian-book-search-plugin",
"version": "1.0.7",
"version": "0.0.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "obsidian-book-search-plugin",
"version": "1.0.7",
"version": "0.0.2",
"license": "MIT",
"devDependencies": {
"@popperjs/core": "^2.11.5",

View file

@ -1,6 +1,6 @@
{
"name": "obsidian-book-search-plugin",
"version": "1.0.7",
"version": "0.0.2",
"description": "This is a plugin to help you create book notes.",
"main": "main.js",
"standard-version": {

View file

@ -1,6 +1,6 @@
import { App, ButtonComponent, Modal, Setting, TextComponent } from 'obsidian';
import { Book } from './book_suggest_modal';
import { getByQuery } from './apis/google_books_api';
import { Book } from './models/book.model';
export class BookSearchModal extends Modal {
query: string;

View file

@ -1,7 +1,8 @@
import { Notice, Plugin } from 'obsidian';
import { BookSearchModal } from './book_search_modal';
import { Book, BookSuggestModal } from './book_suggest_modal';
import { BookSuggestModal } from './book_suggest_modal';
import { CursorJumper } from './editor/corsor_jumper';
import { Book } from './models/book.model';
import {
BookSearchSettingTab,