Bump to version 1.0.0

This commit is contained in:
2024-07-15 01:34:12 -04:00
parent 11a44d037e
commit aa8c38c81f
5 changed files with 19 additions and 15 deletions

9
CHANGELOG.md Normal file
View File

@@ -0,0 +1,9 @@
# Changelog
## 1.0.0
1. Initial release
2. Load from RSS with automatic handling of paging in background load
3. Searching and filtering, with faceted filters on keywords and rating
Doesn't include the keyword chips being clickable to add to the column filter.

View File

@@ -1,2 +1,5 @@
# public-plex-watchlist
Turn your Plex Watchlist RSS feed into an interface non-Plex folks can search and filter
# Public Plex Watchlist
Turn your Plex Watchlist RSS feed into an interface non-Plex folks can search and filter.
[Changelog](/CHANGELOG.md)

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "public-plex-watchlist",
"version": "0.0.1",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "public-plex-watchlist",
"version": "0.0.1",
"version": "1.0.0",
"license": "Unlicense",
"dependencies": {
"@emotion/react": "^11.11.4",

View File

@@ -1,6 +1,6 @@
{
"name": "public-plex-watchlist",
"version": "0.0.1",
"version": "1.0.0",
"description": "Turn your Plex Watchlist RSS feed into an interface non-Plex folks can search and filter.",
"source": "src/index.html",
"scripts": {

View File

@@ -1,6 +1,6 @@
import { useInfiniteQuery } from '@tanstack/react-query';
import { fetchPlexWatchlistFeed } from '../../api/plexApi';
import { useCallback, useEffect, useMemo, useRef } from 'react';
import { useCallback, useEffect, useMemo } from 'react';
import React from 'react';
import WatchlistTable from '../WatchlistTable';
@@ -24,15 +24,7 @@ export default function Watchlist() {
let loadMoreItems = useCallback(
(containerRefElement) => {
// if (containerRefElement) {
// const { scrollHeight, scrollTop, clientHeight } = containerRefElement;
//once the user has scrolled within 400px of the bottom of the table, fetch more data if we can
if (
// scrollHeight - scrollTop - clientHeight < 400 &&
!isFetching &&
hasNextPage
) {
if (!isFetching && hasNextPage) {
fetchNextPage();
}
// }