Skip to content

Commit

Permalink
chore(release): 1.0.6 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.6](v1.0.5...v1.0.6) (2020-07-09)

### Bug Fixes

* **deps:** update all deps to patch security vulnerabilities ([6954af9](6954af9))
  • Loading branch information
semantic-release-bot committed Jul 9, 2020
1 parent dde7f14 commit 6d29295
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.6](https://github.com/bbeesley/trakt-to-letterboxd/compare/v1.0.5...v1.0.6) (2020-07-09)


### Bug Fixes

* **deps:** update all deps to patch security vulnerabilities ([6954af9](https://github.com/bbeesley/trakt-to-letterboxd/commit/6954af97e68023b463470c44771e82325315d9fc))

## [1.0.5](https://github.com/bbeesley/trakt-to-letterboxd/compare/v1.0.4...v1.0.5) (2020-02-19)


Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ where username is the user whose data you want to export, and filename is the na

### traktHistoryToCsv

[src/main/index.js:18-27](https://github.com/bbeesley/trakt-to-letterboxd/blob/1f6f2cc8ea8dddd4f60a3d3081642a1752874858/src/main/index.js#L18-L27 "Source code on GitHub")
[src/main/index.js:18-27](https://github.com/bbeesley/trakt-to-letterboxd/blob/dde7f14eea2497c1a4a17de702dc475dccb859b0/src/main/index.js#L18-L27 "Source code on GitHub")

Export a trakt user's history to csv to be uploaded to letterboxd

Expand All @@ -47,19 +47,19 @@ Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/

### headers

[src/main/fetcher.js:9-13](https://github.com/bbeesley/trakt-to-letterboxd/blob/1f6f2cc8ea8dddd4f60a3d3081642a1752874858/src/main/fetcher.js#L9-L13 "Source code on GitHub")
[src/main/fetcher.js:9-13](https://github.com/bbeesley/trakt-to-letterboxd/blob/dde7f14eea2497c1a4a17de702dc475dccb859b0/src/main/fetcher.js#L9-L13 "Source code on GitHub")

HTTP headers to send with our request to trakt's api

### options

[src/main/fetcher.js:18-20](https://github.com/bbeesley/trakt-to-letterboxd/blob/1f6f2cc8ea8dddd4f60a3d3081642a1752874858/src/main/fetcher.js#L18-L20 "Source code on GitHub")
[src/main/fetcher.js:18-20](https://github.com/bbeesley/trakt-to-letterboxd/blob/dde7f14eea2497c1a4a17de702dc475dccb859b0/src/main/fetcher.js#L18-L20 "Source code on GitHub")

The fetch options object (only really needs headers)

### fetchMovies

[src/main/fetcher.js:27-38](https://github.com/bbeesley/trakt-to-letterboxd/blob/1f6f2cc8ea8dddd4f60a3d3081642a1752874858/src/main/fetcher.js#L27-L38 "Source code on GitHub")
[src/main/fetcher.js:27-38](https://github.com/bbeesley/trakt-to-letterboxd/blob/dde7f14eea2497c1a4a17de702dc475dccb859b0/src/main/fetcher.js#L27-L38 "Source code on GitHub")

Fetches the user's history data from the trakt api

Expand All @@ -71,14 +71,14 @@ Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/

### schema

[src/main/exporter.js:8-28](https://github.com/bbeesley/trakt-to-letterboxd/blob/1f6f2cc8ea8dddd4f60a3d3081642a1752874858/src/main/exporter.js#L8-L28 "Source code on GitHub")
[src/main/exporter.js:8-28](https://github.com/bbeesley/trakt-to-letterboxd/blob/dde7f14eea2497c1a4a17de702dc475dccb859b0/src/main/exporter.js#L8-L28 "Source code on GitHub")

Schema for the output csv.
Based on <https://letterboxd.com/about/importing-data/>

### builder

[src/main/exporter.js:35-36](https://github.com/bbeesley/trakt-to-letterboxd/blob/1f6f2cc8ea8dddd4f60a3d3081642a1752874858/src/main/exporter.js#L35-L36 "Source code on GitHub")
[src/main/exporter.js:35-36](https://github.com/bbeesley/trakt-to-letterboxd/blob/dde7f14eea2497c1a4a17de702dc475dccb859b0/src/main/exporter.js#L35-L36 "Source code on GitHub")

The instance of CsvBuilder we'll use to export the data.
We need to remap the format of the last watched date to YYYY-MM-DD
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": "trakt-to-letterboxd",
"version": "1.0.5",
"version": "1.0.6",
"description": "Extract trakt movie history and export to csv for uploading to letterboxd",
"main": "dist/main/index.js",
"repository": "[email protected]:bbeesley/trakt-to-letterboxd.git",
Expand Down

0 comments on commit 6d29295

Please sign in to comment.