Skip to content

Commit

Permalink
Update: Only show uncompleted anime
Browse files Browse the repository at this point in the history
- Updating project version.
  • Loading branch information
JeremGamingYT committed Dec 24, 2024
1 parent 8ba7ac0 commit ddb42f7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,20 @@

*Automatically track your anime progress on AniList while you watch!*

**Current Version: 1.1**

</div>

## ✨ Features

- 🔄 **Automatic Progress Tracking**: Updates your AniList progress in real-time while watching
- 🎯 **Smart Detection**: Automatically identifies the anime you're watching
- 📊 **Enhanced Statistics**: View your global anime statistics including total episodes watched and mean scores
- 🔔 **Notifications System**: Track your recent updates and activities
- 🔒 **Secure Authentication**: Safe and secure connection with your AniList account
- 🌐 **Cross-Platform**: Available for both Chrome and Firefox
- 🎨 **Clean Interface**: Simple and intuitive user interface
- 🎨 **Clean Interface**: Simple and intuitive user interface with improved UI/UX
- 📱 **Responsive Design**: Better button spacing and visual improvements

## 🚀 Installation

Expand Down Expand Up @@ -47,10 +52,22 @@
2. Log in with your AniList account
3. Start watching on supported platforms
4. ALTA will automatically update your progress!
5. Access global stats and notifications through the toolbar icons

## 🆕 What's New in 1.1

- Added global statistics view with total episodes, mean scores, and more
- Implemented notifications system to track recent updates
- Improved UI with better button spacing and visual enhancements
- Enhanced error handling and API response management
- Better caching system for improved performance
- Support for both current and paused anime in lists

## 🙏 Acknowledgments

This project is an enhanced version of the [Unofficial AniList Updater](https://github.com/bm-khan/Unofficial-Anilist-Updater) by bm-khan.
- AniList for providing the API
- All contributors and users who helped improve ALTA
- The anime community for their continued support

## 📝 License

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ALTA - Crunchyroll Sync + NextAiring Notifs",
"description": "Automatically update your AniList from Crunchyroll and notify for next episodes",
"version": "0.7",
"version": "1.1",
"author": "JeremGaming",
"manifest_version": 2,
"permissions": [
Expand Down
2 changes: 1 addition & 1 deletion popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ async function getWatching(noCache) {

let query = `
query($userId:Int){
MediaListCollection(userId:$userId, type:ANIME, status_in:[CURRENT,COMPLETED], sort:UPDATED_TIME){
MediaListCollection(userId:$userId, type:ANIME, status_in:[CURRENT, PAUSED], sort:UPDATED_TIME){
lists {
entries {
id
Expand Down

0 comments on commit ddb42f7

Please sign in to comment.