Skip to content

Commit

Permalink
Removed the hardcoded username
Browse files Browse the repository at this point in the history
  • Loading branch information
ReStartQ committed Dec 11, 2023
1 parent 930bd79 commit 03c9aaa
Show file tree
Hide file tree
Showing 6 changed files with 296 additions and 287 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ You can download the app [here](https://github.com/ReStartQ/AniCour/releases). C

1. Download the setup file from the latest release and install it on your computer.
2. The setup file is labeled as AniCour-Setup-x.x.x.exe, where x denotes a number for the version.
<br/> **Ex**: AniCour-Setup-1.2.0.exe
<br/> **Ex**: AniCour-Setup-1.3.0.exe
<br /> **_Note: Some browsers may give a warning when you download this setup file as it does not have a code signing certificate._**
3. Use the app to track, search, and manage your anime, manga, and light novels.

Expand Down
4 changes: 2 additions & 2 deletions release/app/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 release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "anicour",
"version": "1.2.0",
"version": "1.3.0",
"description": "Anime, Manga, and Light Novel Tracker Desktop Application for Windows. A fast and interactive way for AniList users to track and manage their anime/manga lists. ",
"license": "GPL-3.0",
"author": {
Expand Down
3 changes: 0 additions & 3 deletions src/renderer/components/app/test/MediaTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import Typography from '@mui/material/Typography';
import { alpha } from '@mui/material/styles';
import { visuallyHidden } from '@mui/utils';
import * as React from 'react';
import { useMain } from 'renderer/context/MainContext';

interface Data {
calories: number;
Expand Down Expand Up @@ -169,8 +168,6 @@ function EnhancedTableHead(props: EnhancedTableProps) {
onRequestSort(event, property);
};

const mainCards: any = useMain();

return (
<TableHead>
<TableRow>
Expand Down
4 changes: 0 additions & 4 deletions src/renderer/components/settings/SettingsMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { keyframes } from '@emotion/react';
import { useQuery } from '@tanstack/react-query';
import Axios from 'axios';
import { useMainView } from '../../context/MainViewContext';
import { MainContext, useMain } from '../../context/MainContext';
import SelectLanguage from './lang/SelectLanguage';
import SelectTheme from './theme/SelectTheme';
import ThemeToggle from './theme/ThemeToggle';
Expand Down Expand Up @@ -79,15 +78,12 @@ function SettingsMainTab({ view }: any) {
}

export default function SettingsMain({ props }: any) {
const mainCards: any = useMain();
const mainView: any = useMainView();
const sidebarValue: any = useSidebarButton();
const myFilter: any = useFilter();
const [start, setStart] = useState(0);
const [end, setEnd] = useState(48);
const [more, setMore] = useState(true);

console.log(mainCards);

return <SettingsMainTab view={sidebarValue.sidebar} />;
}
Loading

0 comments on commit 03c9aaa

Please sign in to comment.