diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ff542..acae9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ -XXXX-XX-XX: 0.6.0-dev +2018-04-21: 0.6.0 ------------------------- -* Users are now required to create an EVE Developer account and input credentials into Cerebral on first-start. +* Cerebral is now licensed under the AGPL v3.0. +* Users are now required to create an EVE Developer account and input credentials into Cerebral. + * A markdown guide has been added in /docs/API-SETUP.md giving instructions on creating an application on the EVE Developers site. + * All characters must be re-authorized after inputting their new credentials. + * Markers have been added on the character overview page showing a green tick/red warning symbol depending on whether the character needs to be re-authorized. + * The currently baked in credentials in 0.5.0 and previous versions will be revoked 21/04/2018 21:00 UTC, at this time all versions of Cerebral prior to 0.6.0 will cease to function. +* Split the API info into a new tab on the character page showing granted scopes, data refresh timers and a health check on the character's tokens. +* The contracts page for characters now shows an indicator of used and available character contract slots. +* SSO client/refresh token handling has been improved to better handle failing refresh tokens. 2018-04-18: 0.5.0 Alpha ------------------------- diff --git a/README.md b/README.md index 13ddc6c..f217c42 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,7 @@ Cerebral is currently in alpha testing! That means: Current Functionality: ------------------------- * Add your characters using the EVE SSO. -* See an overview of all your characters including: - * Alpha/Omega Status - * Corp/Alliance - * ISK - * SP - This is the actual amount of SP your character has, which you would normally have to login and pause/unpause your queue to see. - * Current skill in training and time remaining +* See an overview of all your characters including: Alpha/Omega Status, Corp/Alliance, ISK, SP, Current skill in training and time remaining * SP Farming overview which allows you to add characters as an SP farm, specifying the base SP that character will keep (unextractable), you can then see: * Number of injectors ready to extract * Time until next injector is ready to extract @@ -40,9 +35,11 @@ Current Functionality: * Active implants * Skill queue * Jump clones - * Scopes granted + * Jump fatigue + * Loyalty points * Skills tab: trained skills by skill group, total SP in skills/skill groups, shows partially trained skills * Contracts tab: pending/completed contracts involving the character + * API tab: shows information on the authorized API token including scopes granted, data refresh intervals and token health Planned Functionality: ------------------------- @@ -54,15 +51,17 @@ Planned Functionality: Screenshots: ------------------------- -![character overview](https://prom.gaydar.space/2018-04-18_12-34-54_yN4TAyf8G9MzxZif1k9tht6arR5lTB.png) +![character overview](https://prom.gaydar.space/2018-04-21_17-37-43_tt82j9SmzY8sxzNZwNbEutSEiHz7bF.png) ![sp-farming](https://prom.gaydar.space/2018-04-18_12-35-03_WLpFbKvcAgj22eE0t6Ayo1jJ25HUcj.png) ![contracts](https://prom.gaydar.space/2018-04-18_12-35-17_suf4c19ixNkOZSAerRLqXzaUMVcWDW.png) -![character-summary](https://prom.gaydar.space/2018-04-18_12-35-46_3Q0RooNx1DrA8nEPRG9NEp8lBtKAh7.png) +![character-summary](https://prom.gaydar.space/2018-04-21_17-38-05_eytGdToL1qcNdBWOPIiKzipZT0RtKR.png) -![character-skills](https://prom.gaydar.space/2018-04-18_12-36-07_OdUQKJO7eLHtQ8zMqnGx3LMpIDHFGv.png) +![character-skills](https://prom.gaydar.space/2018-04-21_17-38-34_9LBjt9ygMukaLkbWGHhKshOHGv9Jnd.png) + +![character-api](https://prom.gaydar.space/2018-04-21_17-38-48_0esisqZl3KJMzJv9laisY4Lqtrh11F.png) Installation Instructions: ------------------------- diff --git a/package-lock.json b/package-lock.json index 54fde27..02f3598 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "eve-cerebral", - "version": "0.6.0-dev", + "version": "0.6.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9f55b30..bb0a10f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "eve-cerebral", "productName": "Cerebral", - "version": "0.6.0-dev", + "version": "0.6.0", "description": "Character Manager for EVE Online", "author": "Prometheus Satyen", "license": "AGPL-3.0-only", diff --git a/resources/properties.js b/resources/properties.js index da3a347..c5b13b4 100644 --- a/resources/properties.js +++ b/resources/properties.js @@ -1,7 +1,7 @@ 'use strict'; export default { - 'version': '0.6.0-dev', + 'version': '0.6.0', 'author_email': 'prometheussatyen@gmail.com', 'eve_sso_url': 'https://login.eveonline.com/oauth',