Skip to content

Desktop APP for Anime Scene Search by Image by URL or uploading one

License

Notifications You must be signed in to change notification settings

bit-tech-team/Anime-Tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

logo

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 api, don't forget to go through its repository and leave a star.

This application was powered by trace.moe-api

Video Demo

help-demo.mp4

How to install

First go to the following link here and the download will start automatically.

image

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

Report a bug

๐Ÿ›create a new issue

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)