This commit is contained in:
Simon Cambier
2022-10-27 19:31:18 +02:00
parent 573f3fa31b
commit 422f84c1cf
6 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.7.5",
"version": "1.7.6",
"minAppVersion": "1.0.0",
"description": "A search engine that just works",
"author": "Simon Cambier",

View File

@@ -1,7 +1,7 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.7.5",
"version": "1.7.6",
"minAppVersion": "1.0.0",
"description": "A search engine that just works",
"author": "Simon Cambier",

View File

@@ -1,6 +1,6 @@
{
"name": "scambier.obsidian-search",
"version": "1.7.5",
"version": "1.7.6",
"description": "A search engine for Obsidian",
"main": "dist/main.js",
"scripts": {

View File

@@ -14,7 +14,7 @@ if you want to view the source visit the plugins github repository
*/
`
const production = !process.env.ROLLUP_WATCH
const production = false//!process.env.ROLLUP_WATCH
export default {
input: './src/main.ts',

View File

@@ -81,7 +81,7 @@ export default class OmnisearchPlugin extends Plugin {
await populateIndex()
})
// showWelcomeNotice(this)
showWelcomeNotice(this)
}
onunload(): void {
@@ -151,8 +151,7 @@ async function cleanOldCacheFiles() {
}
function showWelcomeNotice(plugin: Plugin) {
return
const code = '1.6.0'
const code = '1.7.6'
if (settings.welcomeMessage !== code) {
const welcome = new DocumentFragment()
welcome.createSpan({}, span => {

View File

@@ -63,5 +63,6 @@
"1.7.2": "1.0.0",
"1.7.3": "1.0.0",
"1.7.4": "1.0.0",
"1.7.5": "1.0.0"
"1.7.5": "1.0.0",
"1.7.6": "1.0.0"
}