https://github.com/cosmo-frameworks/animetracker
Desktop APP for Anime Scene Search by Image by URL or uploading one
https://github.com/cosmo-frameworks/animetracker
anime electron electron-app react reactjs
Last synced: 3 months ago
JSON representation
Desktop APP for Anime Scene Search by Image by URL or uploading one
- Host: GitHub
- URL: https://github.com/cosmo-frameworks/animetracker
- Owner: cosmo-frameworks
- License: mit
- Created: 2022-07-05T13:45:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-24T18:03:08.000Z (over 1 year ago)
- Last Synced: 2025-03-31T09:37:58.572Z (about 1 year ago)
- Topics: anime, electron, electron-app, react, reactjs
- Language: JavaScript
- Homepage:
- Size: 14.3 MB
- Stars: 14
- Watchers: 0
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
Anime-Tracker
## Introduction
Anime Tracker is a desktop application for windows, developed with electron + react, which allows you to search for animes through
a scene that can be passed through a url or by uploading an image from your PC.
This application was made possible thanks to the [soruly](https://github.com/soruly) api, don't forget to go through its repository and leave a star.
**This application was powered by trace.moe-api**
## Video Demo
## How to install
First go to the following link [here](https://github.com/Bit-Tech-Team/Anime-Tracker/releases/download/v1.0.4/AnimeTracker-Setup-1.0.4.exe)
and the download will start automatically.

**NOTE: As you can see, windows tells you that it could be a malicious file, this is not true, it is because I have not added code signing yet, just click on save and that's it**
Now when you click on the installer you will get the following pop-up for the same reason mentioned above, we simply click on "more information" and we will get a button that says "run anyway", and the app will start installing
## Last version available
🚀[v1.0.4](https://github.com/Bit-Tech-Team/Anime-Tracker/releases/download/v1.0.4/AnimeTracker-Setup-1.0.4.exe)
## Report a bug
🐛[create a new issue](https://github.com/Bit-Tech-Team/Anime-Tracker/issues/new)
## Deploy in local
First run **``yarn``** and this will install the necessary packages, then run **``yarn electron-dev``** to run the application in developer mode (**make sure that port 3000 is not in use**). If you want to compile the app run ``yarn electron-pack-build`` and this will create a folder called **dist** where the installation **.exe** is located.
**NOTE:** The command ``yarn electron-pack-build`` and ``yarn electron-pack-deploy`` only compile for windows, if you like to do it for **mac** change the following line in the **package.json**
Old:
"electron-pack-build": "yarn build && electron-builder build --win -c.extraMetadata.main=build/electron.js --publish never",
"electron-pack-deploy": "yarn build && electron-builder build --win -c.extraMetadata.main=build/electron.js --publish always",
New:
"electron-pack-build": "yarn build && electron-builder build --mac --win -c.extraMetadata.main=build/electron.js --publish never",
"electron-pack-deploy": "yarn build && electron-builder build --mac --win -c.extraMetadata.main=build/electron.js --publish always",
## Explanations
- If you want to show the **devTools** in developer mode, go to **public/electron.js** and change the following from **false** to **true**
devTools: false, //change to false for production
- If you want to use the command ``yarn-electron-deploy`` to deploy into github (this create a new release draft that is necessary to the auto update) you need to change the following line in the **package.json**
change this:
"repository": {
"type": "git",
"url": "https://github.com/Bit-Tech-Team/Anime-Tracker.git"
},
to this with your configs:
"repository": {
"type": "git",
"url": "https://github.com/your-username/your-repo.git"
},
**IMPORTANT:** in addition you must to create an environment variable in your OS named **GH_TOKEN** and put the val of your github token (you can create this in **github > settings > Developer settings**)