Skip to content

Releases: pfh59/eve-whmapper

v1.1.4

19 Dec 21:43
3343331
Compare
Choose a tag to compare

What's Changed

👒 Bugs

  • Fix jump history by @pfh59 in #328
  • Remove error logging for route calculation failure in EveMapperRouteP… by @pfh59 in #330

Full Changelog: v1.1.3...v1.1.4

v1.1.3

04 Dec 21:26
2da929c
Compare
Choose a tag to compare

What's Changed

👒 Bugs

    • Fix :Can't search for some Character Names by @pfh59 in #326

Full Changelog: v1.1.2...v1.1.3

v1.1.2

29 Nov 23:31
Compare
Choose a tag to compare

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

17 Oct 21:12
1d24aad
Compare
Choose a tag to compare

What's Changed

👒 Bugs

Full Changelog: v1.1.0...v1.1.1

v1.1.0

17 Oct 19:39
Compare
Choose a tag to compare

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

Muli maps screenshots :

  • Multi Map Admin :
  • If no access is set :
  • If access is set :

  • 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

09 Aug 18:56
3c8b793
Compare
Choose a tag to compare

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

13 Jun 20:29
638867e
Compare
Choose a tag to compare

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

Full Changelog: v1.0.6...v1.0.7

v1.0.6

24 Mar 21:58
926f86c
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: v1.0.5...v1.0.6

v1.0.5

05 Feb 21:44
7365192
Compare
Choose a tag to compare

What's Changed

👒 Bugs

Full Changelog: v1.0.4...v1.0.5

v1.0.4

26 Jan 22:28
5a66df7
Compare
Choose a tag to compare

What's Changed

🏕 Features

👒 Bugs


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