Author |
Thread Statistics | Show CCP posts - 0 post(s) |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
17
|
Posted - 2015.12.16 18:42:22 -
[1] - Quote
Finally! SeAT 1.x is here!
SeAT is a web based API / Corporation tool aimed at making your life easier when it comes to keeping tabs on all things EVE. It is a self contained, self updating ecosystem that always keeps up to date with the latest information available on the EVE XML API. Version 1.x is a complete rewrite from the 0.x code base, taking with it all the lessons learnt with the aim to make SeAT even more awesome!
One of the key advantages of SeAT is that you will be able to monitor all character and corporation activities for those that you have API keys for. This includes but is not limited to: - Skills Information - Mail & Notifications - Wallet Journals / Transactions - Industry Jobs Progress - Assets & more!
Whats more, the entire architecture is modular now too, so, writing packages that extend the core SeAT functionality should be easy. That being said, there is still plenty more to come. Integration with services such as TeamSpeak / Mumble and the usual forum solutions are all on the horizon.
SeAT itself consist of a number of core packages. Each of them can kinda be run on their own, so if you only want to use the eveapi updater and query the database using your own tools, that is entirely possible. The modularity also allows for very large deployments to easily scale. You can configure multiple front ends to the database if your instance is under heavy load, or, deploy multiple back end servers that handle only API updates.
The tool also ships with its own API. You are able to query all of the character and corporation information that is stored in the database using an exposed Json API. Endpoints exposed include the ability to query user access and roles as well as the ability to verify SeAT user credentials.
The main project and its documentation is hosted on Github: - Project URL: https://github.com/eveseat/seat - Documentation URL: https://github.com/eveseat/seat/wiki
As this is the first version of the 1.x code, there are undoubtedly going to be plenty of bug fixes incoming. So, my advice for now would be to install a fresh Linux VM (Ubuntu/CentOS, pick your poison) and run one of the easy install scripts. This will allow you to play around and test drive it as you like! If you encounter any bugs, have a look on the github repo if its not already reported, and if not, report it! Please also feel free to come and chat to us on IRC too.
For contact information, see the SeAT wiki's contact info section here.
Notes for SeAT 0x Users Unfortunately, due to the fundamental changes that have occurred since SeAT 0.x, there is no easy way to upgrade to 1.x. You will have to do a fresh install of 1.x and migrate API keys. Luckily. SeAT 1.x comes with a CSV importer, so you can export keys from your 0.x install and move it to 1.x.
Lastly, help me not carebear and donate today if you found SeAT useful! =)
Happy upgrades.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
17
|
Posted - 2015.12.16 18:42:29 -
[2] - Quote
Reserved
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
20
|
Posted - 2015.12.17 05:12:22 -
[3] - Quote
Mr Twinkie wrote:Also where did the pos manager go? :(
Its coming, just in another iteration.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
20
|
Posted - 2015.12.17 12:15:58 -
[4] - Quote
Mr Twinkie wrote:Getting import errors despite my old keys being formatted correctly
Can only get it to read the bottom key the rest give errors
Guessing by this vague description it relates to the CSV import? If so, I just tested it and didnt seem to have any errors. I exported keys from my old 0x install using...
mysql seat -p -e "select concat_ws(',',keyID, vCode) from seat_keys;" --silent > /tmp/keys
... and uploaded it using the new CSV import.
Got anything other than 'giving me errors'?
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
21
|
Posted - 2015.12.24 21:42:25 -
[5] - Quote
A bunch of work has been done this last week fixing a ton of bugs and implementing the POS manager view again. Upgrades can be done using the shell script detailed on the SeAT wiki here.
Thanks to all for the testing and donations!
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
21
|
Posted - 2015.12.26 07:41:44 -
[6] - Quote
Maus Baus wrote:Your work is much appreciated. Unfortunately I think some stuff is missing. Comparing with the screenshots you have on your website that is.
I can't see the Starbase Details on the eveseat I just downloaded and installed. Am I missing something?
Make sure you have the latest packages. Starbase views got added recently.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
21
|
Posted - 2015.12.26 08:32:57 -
[7] - Quote
Mr Twinkie wrote:https://forums.eveonline.com/default.aspx?g=posts&t=460993&find=unread
If anyone wants this but doesn't know what they're doing I can have a SeAT install up and running in about 30 minutes.
Be sure to checkout the already built install scripts and install guides on the wiki (link below) before you pay for anything. Technically, the install scripts should get you up and running without any hiccups on a fresh server.
https://github.com/eveseat/seat/wiki Any questions, hop onto IRC / Slack https://github.com/eveseat/seat/wiki/Contact-Information
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2015.12.26 20:10:43 -
[8] - Quote
Just added an endpoint to view corporation starbases via the SeAT API! https://github.com/eveseat/seat/wiki/SeAT-API-Reference#corporation-starbases
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2016.01.01 00:09:49 -
[9] - Quote
Mr Twinkie wrote:Fairly easy to self implement but might be something worth adding to the install process. Shell script cron that auto updates SeAT
#!/bin/bash # Mr Twinkie's Seat Update Cron cd /var/www/seat && php artisan down && composer self-update && composer update --no-dev && php artisan vendor:publish --force && php artisan migrate && php artisan db:seed --class=Seat\\Services\\database\\seeds\\ScheduleSeeder && php artisan up
If you do this, be sure to check up on the official update script regularly in case anything changes, breaking your upgrade. https://github.com/eveseat/scripts/blob/master/upgrade/upgrade-seat.sh
Find this and lots more documentation on the SeAT Wiki: https://github.com/eveseat/seat/wiki
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2016.01.01 00:13:42 -
[10] - Quote
Makhar wrote:Having an issue with no corporations showing on the Corporations screen. I have added a corporation API with full access. The queue has been working on "CorporationEveProcessing: ContractsItems" for over 24 hours now. Am I missing a step to get the corporations list populated? Characters list is working just fine.
Technically shouldn't take this long. Try clearing the SeAT cache with php artisan seat:cache:clear . If the problem persists, hop onto Slack/IRC so we can try help you figure out whats going on. Details here: https://github.com/eveseat/seat/wiki/Contact-Information
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2016.01.01 10:48:10 -
[11] - Quote
bomb1911 wrote:How do i backup the database? Typically you would just use mysqldump for this.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2016.01.03 13:08:22 -
[12] - Quote
Just added the ability for custom packages to be able to hook into the Character and Corporation submenus. See the package development guide for more info: https://github.com/eveseat/seat/wiki/Package-Development
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2016.01.06 05:07:16 -
[13] - Quote
Nexuscrawler wrote:Awesome tool, thanks for this! As I just reinstalled the new version of SEAT on my Debian server, I just wanted to throw a little suggestion for the Ubuntu INSTALLATION SCRIPT in here.  Ubuntu is a Debian distribution, so if you can make this script run for Debian, it "should" also work for all of it's distributions. The only problem the script has regarding this is this part: [ ... SNIP ... ] Keep up your good work!
Thanks for the suggestions! Ill have a look at this asap. Feel free to PR the change if you like.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
24
|
Posted - 2016.01.26 17:37:23 -
[14] - Quote
Small update. People groups are back and a ton of updates have landed :D
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
25
|
Posted - 2016.02.01 14:48:28 -
[15] - Quote
darkrune EastBlue wrote:How do i deploy this on my webserver? Lots of information on the wiki here
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
25
|
Posted - 2016.02.23 04:15:20 -
[16] - Quote
LigrayOu Kva wrote:After a lot of hours of deploying this tool on my vds i found it nearly perfect for corporation management. but with some more components we will be happy =) 1. srp tool (seen at todo) 2. corp application tool (seen at todo) 3. small wiki with igb integration for fittings 4. registration approval maybe i'll tell more tomorrow, but enough for now =) Thanks for tool! btw. How can i support seat developement?
2 ways! Donate donate donate :P And by joining Slack and helping out there.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
27
|
Posted - 2016.03.17 18:19:00 -
[17] - Quote
Sarah Otto wrote:Hi, thanks for this great tool. Spins up well on a Digital Ocean droplet but I have one small issue. Tried to join your IRC but it kept banning/kicking me v0v
Be sure to check that you are using the Slack / IRC details from here: http://seat-docs.readthedocs.org/en/latest/contact/
Sarah Otto wrote: Basically my cron job works fine except for server status it never calls this. The job is in the queue. I've tried deleting this job and adding it again. I've tried calling it from Artisan directly. It just never gets scheduled.
Other jobs work fine and the diagnose tool is all green. I'm at a loss as to why this doesn't get scheduled.
Calling it manually works fine.
Ill suggest you try join one of the above mentioned channels (preferably slack as there are more people) and lets debug it.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
27
|
Posted - 2016.04.29 19:37:54 -
[18] - Quote
Pushed out a ton of updates and bugfixes today! Feel free to run the upgrade script! http://seat-docs.readthedocs.io/en/latest/#one-line-upgrader
As a heads up (and the reason for this post), you will now be *required* to set a valid admin email in the SeAT settings so that CCP can contact you in case your server makes their XML API cry.
Happy upgrades!
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
28
|
Posted - 2016.05.05 19:42:18 -
[19] - Quote
Ubuntu 16.04 installer is now ready: http://seat-docs.readthedocs.io/en/latest/
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
28
|
Posted - 2016.05.07 06:10:10 -
[20] - Quote
This looks like your php cURL install cant find a local CA bundle to validate an SSL cert with (www.fuzzwork.co.uk in this case). I have no idea how that works on Windows though.
On many unix type machines, this dependency can be solved by installing the php-intl package.
Regnar Avastum wrote: Any ideas would be appreciated, thanks!
To be honest, I have never tested SeAT natively on Windows. My current plan for this was once the new Docker betas for Windows and Mac are out, an official SeAT image will be built so that that can just be pulled, installed and run.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
28
|
Posted - 2016.05.08 08:55:08 -
[21] - Quote
Klorrak wrote:So, thank you so much for the 16.04 installer. But i have a really quick question. Is there any ETA for a PHPBB3/teamspeak auth to be put in? It's the only thing that is really stopping me from fully using SeAT. I believe with just those two modules you will take the EvE community by storm. Especially with your outstanding customer support! Hope you get back to me soon.
-Klorrak
Unfortunately no ETA atm, but, its definitely getting closer to the top of the list. FWIW, I have started to think about how to best do this a lot more lately :P
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
28
|
Posted - 2016.05.14 07:23:23 -
[22] - Quote
EVE SSO Support just landed! Upgrade to the latest packages and read the admin guide here: http://seat-docs.readthedocs.io/en/latest/admin_guides/sso/
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.05.21 16:37:57 -
[23] - Quote
Acen Dread wrote:Hi, i am currently trying to install Seat but it keeps throwing
[snip]
If you still need help, join Slack and ask in the #support channel http://seat-docs.readthedocs.io/en/latest/contact/#slack
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.06.08 14:27:23 -
[24] - Quote
Jerppu3 wrote:Could you point out the instructions which yo followed? I'm banging my head against the wall witht he same issue EDIT: Added --no-script and did not get the error anymore. But got "Killed" ./ubuntu-14-04-x.sh: line 101: 31736 Killed composer create-project eveseat/seat seat --keep-vcs --prefer-source --no-dev --no-scripts
What are the specs of this server you trying to install on? Also, you will get help much faster if you hop onto Slack.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.06.09 04:45:52 -
[25] - Quote
Jerppu3 wrote:With 1GB memory it somewhat worked. So bare minimum for system memory seem to be 1GB, during the setup 960MB was in use.
Now, when I add --no-scripts installer wont add .env file to /var/www/seat/ directory, so installer will fail
Dont add the no-scripts flag. Its needed.
Jerppu3 wrote:
I haven't used Slack ever, no idea how it works. Seems that I would need to get an invite to be able to use it?
Get the invites/details here: http://seat-docs.readthedocs.io/en/latest/contact/#slack
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.06.09 11:30:44 -
[26] - Quote
Acen Dread wrote:Hi, i am currently trying to install Seat but it keeps throwing PHP Fatal error: require(): Failed opening required '/var/www/seat/bootstrap/../vendor/autoload.php' (include_path='.:/usr/share/php:/usr/share/pear') in /va r/www/seat/bootstrap/autoload.php on line 17
halfway into executing composer create-project eveseat/seat seat --keep-vcs --prefer-source --no-dev . I already did try apt-get install php-pear but it had no effect. Does anyone have an idea how to fix/workaround that?
Make 10000% sure you have a PHP version above 5.5.14 to get the latest version! Preferably, just upgrade to PHP7 already.
https://github.com/eveseat/seat/blob/master/composer.json#L8
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.06.26 14:37:42 -
[27] - Quote
Just updated the SeAT Json API documentation to make it a lot more readable! Hopefully this will help devs with any integration work they have going.
https://seat-docs.readthedocs.io/en/latest/seat_api/overview/
Currently, SeAT has 64 endpoints allowing you to query anything from Character Info, Mail to Corporation Starbases to SeAT specific data.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.07.03 10:42:50 -
[28] - Quote
Mr Twinkie wrote:semi ot
Discord > Slack
Discord has caught up to slack in terms of chat and voice abilities. It's more gamer friendly. It's MUCH more developer friendly.
That may be so, however the point here is that there is integration for this available now. That is better than any argument about which product wins. Thanks Warlof =)
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.07.10 14:31:02 -
[29] - Quote
Tagged and released a few SeAT packages with updates & fixes today. A short summary is:
- Performance enhancements by paging some large pages
- Add 2 new API endpoints for managing user groups
- Handle some more errors that may occur on in the jobs system when talking to the EVE API
- Add a way to update email addresses for users
- Resolve names correctly in Access Control pages
- A few typos etc
I have also finally added some documentation about the Role based access control! You can see those at the documentation site here: http://seat-docs.readthedocs.io/en/latest/admin_guides/rbac/
Happy upgrades!
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.09.02 08:19:57 -
[30] - Quote
Bump!
Be sure to watch the changelogs in the documentation for information about the work that goes into SeAT and remember to run the update script regularly. http://seat-docs.readthedocs.io/en/latest/changelogs/web/
On a side note, a pretty big update is being planned what will move SeAT from version 1.0 to 1.1. Stay tuned for more info :)
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.10.05 04:18:45 -
[31] - Quote
Acen Dread wrote:Quote:On a side note, a pretty big update is being planned what will move SeAT from version 1.0 to 1.1. Stay tuned for more info :) Oh good, i have a feeling thats gonna break some things  On another note, I had to do a fresh install of seat because my server was slightly borked and used the ubuntu 14.04 install script but now it wont pull any API data. It just tells me Job Failed to queue due to default config dispatched! There was also no .env in the seat folder until i ran php artisan migrate (or publish:vendor, i dont remember).
Logging into the web interface as an admin should reveal that you have to config an admin contact in the Setting menus.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.10.14 12:24:25 -
[32] - Quote
Robbern Deninard wrote:Klorrak wrote:So, thank you so much for the 16.04 installer. But i have a really quick question. Is there any ETA for a PHPBB3/teamspeak auth to be put in? It's the only thing that is really stopping me from fully using SeAT. I believe with just those two modules you will take the EvE community by storm. Especially with your outstanding customer support! Hope you get back to me soon.
-Klorrak My good friend and current winner of Eve, Memelo Melo actually produced a couple of Auth tools for other services here
Nice thanks for the link! ;)
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
29
|
Posted - 2016.10.14 12:27:50 -
[33] - Quote
UPDATE Time: Today I released a few packages that may be the last of the 1.0 branch of SeAT. Work will now commence for a version 1.1 of SeAT which will hopefully include a number of exciting changes.
Speaking of changes, I want to make use of this time to change a few of the defaults that SeAT uses. I urge you, if you are an admin of a SeAT installation, have contributed / thinking of contributing, or just have a great idea, please add your feedback and vote on the following ticket: https://github.com/eveseat/seat/issues/139
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
https://github.com/eveseat/seat/wiki
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
31
|
Posted - 2016.11.21 16:27:00 -
[34] - Quote
Corpana Ozi wrote: Edit: The problem has been resolved! Apparently the first time I updated the software it didn't copy any of the web/ data into public/ -- after re-running the updater this is resolved. Thank you!
Glad you got it sorted. In future, I suggest you hop onto Slack for even faster help =) http://seat-docs.readthedocs.io/en/latest/contact/#slack
Proud developer of SeAT! A Simple Eve API & Corporation Management Tool.
Project Page:
https://github.com/eveseat/seat
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
31
|
Posted - 2016.11.22 14:15:11 -
[35] - Quote
Monasucks wrote:what could be a solution to this?
Sorted on Slack!
Proud developer of SeAT! A Simple Eve API & Corporation Management Tool.
Project Page:
https://github.com/eveseat/seat
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
31
|
Posted - 2016.12.07 12:58:24 -
[36] - Quote
aragnarok wrote:does anyone here offer a setup seat service in exchange for anything?
Join slack and you can probably get help for free :) http://seat-docs.readthedocs.io/en/latest/contact/#slack
Proud developer of SeAT! A Simple Eve API & Corporation Management Tool.
Project Page:
https://github.com/eveseat/seat
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
31
|
Posted - 2016.12.10 09:24:18 -
[37] - Quote
After many hours of development, SeAT 2.0 is finally tagged and here!
Some highlights of whats new:
- Minimum PHP version required is now PHP7 - Framework upgrade to Laravel 5.3, which introduces a lot of new features, stability and performance improvements. - All dependencies are upgraded to their latest versions. - Tons of code refactoring to make everything a little nicer :) - Almost all tables within SeAT is now a datatable, meaning much better searching and sorting! - Major overhaul of the backend jobs error handling code. Hopefully this will help with finding and fixing faults a lot faster. - Introduction of an "Intel" feature, where character interactions can be compared to a standings profile. This will allow for things like discovering that dodgy wallet transaction between a new recruit and a char/corp/alliance with negative standing :) - Complete notifications overhaul that allows for alerts to be grouped and sent via email & slack. More integrations to come. - New alerts for POS tower states, killmails and mail. More can easily be added and will come. - Added the ability to restrict update types globally, or granularly on an API key. This allows you to do things like only update wallet transactions for a Corporation if that is what you want. - New permissions for "All Characters" and "All Corporations" - Ability to "invert" permissions, which allows for things like hiding a specific character or corporations data from a role. - Improved dashboard with more information! - Queue monitoring improvements, as well as the ability to integrate with supervisor to view its status straight from the SeAT web UI. - Search improvements and added search criteria for character assets and character skills. - Add ability to migrate a SeAT account to an EVE Online SSO account. - Improvements in viewing key details, such as displaying the last error, and disabling / enabling keys. - Many, many bug fixes. - And many more small tweaks.
For upgrade instructions, please refer to the following documentation page: http://seat-docs.readthedocs.io/en/latest/upgrade_guides/seat1_to_2/
For any other help, please join us on Slack! http://seat-docs.readthedocs.io/en/latest/contact/#slack
Happy upgrades!
Proud developer of SeAT! A Simple Eve API & Corporation Management Tool.
Project Page:
https://github.com/eveseat/seat
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
31
|
Posted - 2016.12.16 07:29:57 -
[38] - Quote
Quick update.
Since the original 2.0.0 release, a number of components got some point release updates and bug fixes. One of the more notable features is that the notifications system got a new Siphon detection alert!
For those that are a little uncertain about the installation, there is now a (time restricted) Demo SeAT option using the https://dply.co/ service. For more information, please refer to the main projects readme: https://github.com/eveseat/seat#demo
Enjoy!
Proud developer of SeAT! A Simple Eve API & Corporation Management Tool.
Project Page:
https://github.com/eveseat/seat
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
35
|
Posted - 2017.02.01 05:00:48 -
[39] - Quote
Github released the ability to "tag" projects. If you wrote a SeAT plugin/tool, tag your repository with the `seat` tag to make it easier for others to find your project! For example, the (standalone) ESI client used by SeAT: https://github.com/eveseat/eseye
Proud developer of SeAT! A Simple Eve API & Corporation Management Tool.
Project Page:
https://github.com/eveseat/seat
|
|
|