Skip to content

Commit

Permalink
Release v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebrynes7 committed Aug 24, 2021
1 parent cabf216 commit 18c9f3e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### [1.8.1] - 2021-08-24

### 🐛 Bug Fixes

- Token path location should no longer be incorrect on Linux machines.

## [1.8.0] - 2021-08-07

### ✨ Features
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": "todoist-sync-plugin",
"name": "Todoist Plugin",
"version": "1.8.0",
"version": "1.8.1",
"minAppVersion": "0.12.2",
"description": "Materialize Todoist tasks within Obsidian notes.",
"author": "Jamie Brynes",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "todoist-plugin",
"version": "1.8.0",
"version": "1.8.1",
"description": "A Todoist plugin for Obsidian",
"main": "src/index.js",
"scripts": {
Expand Down
11 changes: 1 addition & 10 deletions src/token.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
import { Platform } from "obsidian";

export function getTokenPath(): string {
let pathSep = "/";

// If we are on windows, use backslashes.
if (Platform.isDesktop && !Platform.isMacOS) {
pathSep = "\\";
}

return `.obsidian${pathSep}todoist-token`;
return `.obsidian/todoist-token`;
}
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"1.8.1": "0.12.2",
"1.8.0": "0.12.2",
"1.7.1": "0.11.11",
"1.7.0": "0.10.8",
Expand Down

0 comments on commit 18c9f3e

Please sign in to comment.