Tradedangerous

Latest version: v11.5.2

Safety actively analyzes 687800 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 17 of 41

10.4.0

Feature

* feat: Allow rare items to be in the normal item table.

This change will enable rare items to be included in the market
listings. ([`6a8ddef`](https://github.com/eyeonus/Trade-Dangerous/commit/6a8ddefb6d68e219bd95f615a18e5f20a774b27c))

Fix

* fix: generate RareItem table after import

The RareItem table never got filled in, now it is. Oops. ([`6425188`](https://github.com/eyeonus/Trade-Dangerous/commit/6425188d46ab1b8f11e85f3d616b1b1540ee1e6a))

Refactor

* refactor: &39;option == x or option == y ...&39; => &39;option in (x,y,z)&39; ([`601355d`](https://github.com/eyeonus/Trade-Dangerous/commit/601355d0eae03617e39edfd7e747b9198537f3d7))

* refactor: update journal plugin wrt station types

Correctly identify CraterPort and CraterOutpost station types as
planetary.

Future planetary station types can be included by simply adding them to
planetTypeList. ([`070fb84`](https://github.com/eyeonus/Trade-Dangerous/commit/070fb843d948c1c8175c23c6329185432e656346))

* refactor: correct Fdev warning in edcd plugin ([`e80a3ad`](https://github.com/eyeonus/Trade-Dangerous/commit/e80a3adbd1e855d4032a81b93f3409438b20f85b))

Style

* style: whitespace normalizing ([`32c75d2`](https://github.com/eyeonus/Trade-Dangerous/commit/32c75d28317b5ea7f63f1956d1915901a478f96b))

* style: Apply preferred indenting to all files.

Blank lines should be indented to the same level as the line immediately
after.

Ex:

........return
....
....def newFunc()


Performed automatically on all files using the following Linux bash
command:

find * -type f -name &34;*.py&34; -print0 | xargs -0 sed -i -e &39;/^ *$/{N;s/^
*\n\( *\)\(.*\)/\1\n\1\2/}&39;
([`14c84c6`](https://github.com/eyeonus/Trade-Dangerous/commit/14c84c66554167ba8edf8109f81b76027ea0af79))

Unknown

* 10.4.0

python-semantic-release automatic version update. ([`befa982`](https://github.com/eyeonus/Trade-Dangerous/commit/befa9827ba3fd7d0eb774eb16fc4dc3841be7060))

10.3.1

Fix

* fix: skip stations that are not in the DB when importing listings

Thanks go to Bernd for the code work.

Fixes 56 ([`34220dc`](https://github.com/eyeonus/Trade-Dangerous/commit/34220dc3b201c4471f117a091944c0884f670c22))

Unknown

* 10.3.1

python-semantic-release automatic version update. ([`3723336`](https://github.com/eyeonus/Trade-Dangerous/commit/3723336d358ec490a65b1eefdfaedd32d5327039))

* Merge branch &39;master&39; of https://github.com/eyeonus/Trade-Dangerous.git ([`f496279`](https://github.com/eyeonus/Trade-Dangerous/commit/f49627946f979fd664e254fd81d341e4f99fdd36))

10.3.0

Feature

* feat: add &39;TD_SERVER&39;, &39;TD_FALLBACK&39;, and &39;TD_SHIPS&39; env_vars

TD_SERVER = Location of the TD server.
(Currently &39;http://elite.tromador.com/files/'.)

TD_FALLBACK = Location of the EDDB.io server.
(Currently &39;https://eddb.io/archive/v6/'.)

TD_SHIPS = Location of EDCD ship info file.
(Currently &39;https://raw.githubusercontent.com/EDCD/
coriolis-data/master/dist/index.json &39;.)

Setting the environment variable allows updating these web addresses by
the user without needing to wait for TD to update.


refactor: set BASE_URL default to &39;http://elite.tromador.com/files/'
fixes 55


revert: 1c4d186
Apparently caused by developer error and wasn&39;t a necessary change. ([`5e92257`](https://github.com/eyeonus/Trade-Dangerous/commit/5e92257dd6f45bb653bfb128572f78b838c5241d))

Unknown

* 10.3.0

python-semantic-release automatic version update. ([`48ee104`](https://github.com/eyeonus/Trade-Dangerous/commit/48ee104715b2bdaca7cb9af8a3c21e0a3c6e4c41))

10.2.2

Fix

* fix: Correctly check for $TD_EDDB

In python&39;s &39;x if true else y&39;, x is evaluated first, then the if
statement is evaluated, and only when the if statement is false does y
get evaluated.

Path(os.environ.get(&39;TD_EDDB&39;) = NoneType) will cause the program to
error before even getting to the if statement. ([`1c4d186`](https://github.com/eyeonus/Trade-Dangerous/commit/1c4d186be29379217eab1d27cf72915c5c74e5c0))

Unknown

* 10.2.2

python-semantic-release automatic version update. ([`921b0bc`](https://github.com/eyeonus/Trade-Dangerous/commit/921b0bcbe32f2668520dffca8c3094b27e3b8264))

10.2.1

Fix

* fix: avoid TypeError if TD_EDDB is not set

Path(None) raises a TypeError.
Test for missing TD_EDDB as well as set.

fixes 51 ([`cd41144`](https://github.com/eyeonus/Trade-Dangerous/commit/cd41144a1f875dda2fea189dc97831c5edd762ad))

Style

* style: Restore whitespace to eddblink_plug.py ([`6d0de5f`](https://github.com/eyeonus/Trade-Dangerous/commit/6d0de5faba85dbe51f47f8e888b16d2c39a844ac))

Unknown

* 10.2.1

python-semantic-release automatic version update. ([`c70880f`](https://github.com/eyeonus/Trade-Dangerous/commit/c70880f11b07de158870fd7c98dfa53db93f6adf))

10.2.0

Chore

* chore: stop trying to deploy pull-request


Trying to deploy a pull request will fail the job. ([`d7a4fb3`](https://github.com/eyeonus/Trade-Dangerous/commit/d7a4fb3dbd74ecbea4c04a79216796820d69b966))

Feature

* feat: Add environment variable for setting location of &39;eddb&39; folder.

If set, the &34;dump files&34; will be stored to the path set by TD_EDDB. It
will not be in an &39;eddb&39; sub-folder, but the specific path set by the
environment variable.

(listings.csv => $TD_EDDB\listings.csv)

If not, the &34;dump files&34; will be stored in the &39;data&39; folder (which
itself may be set via TD_DATA) in an &39;eddb&39; sub-folder.

(listings.csv => $TD_DATA\eddb\listings.csv) ([`930e2e5`](https://github.com/eyeonus/Trade-Dangerous/commit/930e2e5ba3571ff477b234800cc8598c046bcc4f))

Fix

* fix: Make sure eddb path is path, not string, when set via env_var ([`6204486`](https://github.com/eyeonus/Trade-Dangerous/commit/620448696c88ee209768b696383d2811e9d62a0c))

* fix: revert d7a4fb3

TEST BEFORE YOU PUSH, PETER ([`2f553a8`](https://github.com/eyeonus/Trade-Dangerous/commit/2f553a81f08008145838facd941d31307d3c0659))

Refactor

* refactor: Remove maddavo.

It&39;s not used anymore. It doesn&39;t work with the site being inactive.

It is therefore useless and shall be deleted forthwith. ([`75d6f36`](https://github.com/eyeonus/Trade-Dangerous/commit/75d6f364bb09d3fc2f7cb6f4fe5b92683705dd0b))

Style

* style: restore whitespace on all top-level files

I&39;ll get to the rest eventually.

Blank lines should have whitespace to the same level as the line
immediately following:


if something:
This is the wrong amount of whitespace
stuff()
more_stuff()
This is the wrong amount of whitespace
while happening:



if something:
This is the correct amount of whitespace
stuff()
more_stuff()
This is the correct amount of whitespace
while happening:
([`d509fda`](https://github.com/eyeonus/Trade-Dangerous/commit/d509fda783970ee0754752a79369b4d36c346258))

Unknown

* 10.2.0

python-semantic-release automatic version update. ([`767521b`](https://github.com/eyeonus/Trade-Dangerous/commit/767521bac7d4b0f06f600944cb7bfd0fa3ba54b3))

* Merge branch &39;master&39; of https://github.com/eyeonus/Trade-Dangerous.git ([`6f778d9`](https://github.com/eyeonus/Trade-Dangerous/commit/6f778d910eecba5e625b5d2ca712e51170fc59f4))

Page 17 of 41

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.