Releases: pfh59/eve-whmapper
Releases · pfh59/eve-whmapper
v1.1.4
v1.1.3
v1.1.2
What's Changed
👒 Bugs
- fix : slow loading by @pfh59 in #318
- Refactor selection logic to handle multiple system nodes and links by @pfh59 in #319
Enhancement
- Version number is set and displayed
- docker image with latest label shall only use for release
- docker image with dev label shall only user for dev version
Full Changelog: v1.1.1...v1.1.2
v1.1.1
v1.1.0
What's Changed
🏕 Features
- Multi Map Management #9 by @pfh59 in #302
- Multimap: You can define several cards and manage their access by Alliance/Corporation/Character.
- By default, if no access is defined, anyone can access each card;
- otherwise, the administrator must define access for each card, taking into account the access list defined.
👒 Bugs
- fix Signature name with "-" by @pfh59 in #303
- FIX import signature by @pfh59 in #307
- Whatever your language define in game, signatures import are fixed
💪 Improvements
- Improvement of security : The new configuration of HAproxy obtain a A level note with security test headers (https://securityheaders.com/) #305 by @pfh59 #305
- Update package dependencies to .Net 8.0.10 by @pfh59 #310
Muli maps screenshots :
- Multi map tabs
WARNING :
- If you want to update your current config to the latest build, in some case database can’t create new mapId key in other table because your first map id ("Default map use id >1)
- In that case you need to create a new entry in “Maps” table manually :
- Connect to your posgres and run this command
- insert into “Maps” values (1,“New map”)
- Restart your container
All your Notes will be on the "Default maps". Do not delete it on map management menu if you don’t want to loose your data Notes.
Full Changelog: v1.0.8...v1.1.0
v1.0.8
What's Changed
🏕 Features
- Import signatures improvements by @pfh59 in #294
- WH propeties infos and bugs fixes by @pfh59 in #299
👒 Bugs
- fix : On Mouse pointer up, unable to find moved wormhole node db error by @pfh59 in #283
- fix sigs scan import by @pfh59 in #295
- Multi fixes by @pfh59 in #296
Full Changelog: v1.0.7...v1.0.8
v1.0.7
What's Changed
🏕 Features
- As an user, I want to know the history of jumps through a connection … by @pfh59 in #235
- Show link status and size on new LinkInfo Overview by @pfh59 in #261
- Enable selection box for all maps by @rdymade in #262
👒 Bugs
- Update MudBlazor package for ios crash by @pfh59 in #258
- Fix Administration first search make too much time to start and not stable by @pfh59 in #257
- Fix UI by @pfh59 in #260
- Fix Floating equality to determine system status (HS/LS/NS) @pfh59 in #268
- Fix some Unit Tests by @pkoelemij
- Fix SDE import by @pfh59 in #277
New Contributors
- @pkoelemij made their first contribution in #267
Full Changelog: v1.0.6...v1.0.7
v1.0.6
What's Changed
📦 New image compatible multi arch
- Eve-whmapper docker image is now available for linux-x64 and linux-arm64.
- Thanks to @Blackout76 for their contribution and exchange
👒 Bugs
- Remove bad warning message by @pfh59 in #228
- Fix French parsing sigs by @pfh59 in #236
- Fix docker init.sh by @pfh59 in #238
- [Fix search character/coorporation/allliance limitation] (#242) by @pfh59 in #247
- FIx Mouse scroliling on signature panel by @pfh59 in #248
New Contributors
- @Blackout76 made their first contribution in #251
Full Changelog: v1.0.5...v1.0.6
v1.0.5
v1.0.4
What's Changed
🏕 Features
👒 Bugs
- Multi Fixes by @pfh59 in #193
- Fix : #203 by @pfh59 in #204
- Multi fix by @pfh59 in #208
- Fix : #210 by @pfh59 in #215
- Fix : #216 by @pfh59 in #217
Caution
With this version you need update your docker-compose file (exemple) :
version: '3.5'
services:
db:
image: postgres:15-alpine
restart: always
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-secret}
POSTGRES_DB: whmapper
PGDATA: /data/postgres
volumes:
- postgres:/data/postgres
networks:
- net
redis:
image: redis:7-alpine
restart: always
networks:
- net
whmapper:
image: ghcr.io/pfh59/eve-whmapper:1.0 #Release version change to latest to have all version
restart: unless-stopped
environment:
- EveSSO__ClientId=xxxxxxxxx
- EveSSO__Secret=xxxxxxxxx
- ConnectionStrings__DatabaseConnection=server=db;port=5432;database=whmapper;User Id=postgres;Password=secret
- ConnectionStrings__RedisConnection=redis:6379
- Logging__LogLevel__Default=Warning
- Logging__LogLevel__Microsoft.EntityFrameworkCore.Database.Command=Warning
links:
- db
depends_on:
- db
networks:
- net
networks:
net:
volumes:
postgres:
- whmapper environnement db connection has changed :
ConnectionStrings__DefaultConnection replace by ConnectionStrings__DatabaseConnection
- whmapper environnement add new key for redis
ConnectionStrings__RedisConnection
Full Changelog: v1.0.3...v1.0.4