Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
JackGruber committed Dec 26, 2023
2 parents 021085c + c8e3188 commit bd49c66
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## not released

## v1.3.5 (2023-12-26)

- Fix: #64 With single JEX backups, some notebooks were backuped/exported twice

## v1.3.4 (2023-12-04)

- Fix: #61 On Jex backup, do not overwrite already exported notebooks if the notebooks name differs only in special characters
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": "joplin-plugin-backup",
"version": "1.3.4",
"version": "1.3.5",
"scripts": {
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
"prepare": "npm run dist && husky install",
Expand Down
2 changes: 1 addition & 1 deletion src/Backup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ class Backup {
private async selectNotebooks(): Promise<any> {
const noteBookInfo = {};
const noteBooksIds = [];
let pageNum = 0;
let pageNum = 1;
this.log.info("Select notebooks for export");
do {
var folders = await joplin.data.get(["folders"], {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 1,
"id": "io.github.jackgruber.backup",
"app_min_version": "2.1.3",
"version": "1.3.4",
"version": "1.3.5",
"name": "Simple Backup",
"description": "Plugin to create manual and automatic backups.",
"author": "JackGruber",
Expand Down

0 comments on commit bd49c66

Please sign in to comment.