Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tokenshift committed May 6, 2023
1 parent f13266f commit 08adf8c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.7.1] - 2023-05-05

### Fixed

* The page gallery will load immediately on first load, rather than waiting
(indefinitely) for all filesystem updates to settle down. This was causing
galleries to not render at all if Obsidian Sync was still running in the
background, which can take a while.
* Removed caching. It was crashing Obsidian due to OOM errors on really large
galleries, and no longer improves performance that much due to previous
changes. Will re-evaluate caching options in the future if I can find a good
caching or embedded DB library that doesn't cause the same OOM errors on large
galleries, and actually manages to be faster than just re-rendering/re-evaluating
expressions when needed.

## [0.7.0] - 2023-05-04

### Modified
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": "page-gallery",
"name": "Page Gallery",
"version": "0.7.0",
"version": "0.7.1",
"minAppVersion": "0.15.0",
"description": "Creates an embeddable gallery based on selected page contents.",
"author": "Nathan Clark",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-page-gallery",
"version": "0.7.0",
"version": "0.7.1",
"description": "Creates an embeddable gallery based on selected page contents.",
"main": "./src/PageGalleryPlugin.ts",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions src/views/PageGalleryGroup.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script lang="ts">
import { debounce } from 'obsidian'
import { getContext, onMount, onDestroy } from 'svelte'
import { getContext } from 'svelte'
import type { ViewConfig } from 'src/Config'
import type ExpressionCache from '../ExpressionCache'
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
"0.6.0": "0.15.0",
"0.6.1": "0.15.0",
"0.6.2": "0.15.0",
"0.7.0": "0.15.0"
"0.7.0": "0.15.0",
"0.7.1": "0.15.0"
}

0 comments on commit 08adf8c

Please sign in to comment.