tradedangerous 10.16.0__py3-none-any.whl → 10.16.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tradedangerous might be problematic. Click here for more details.

@@ -77,7 +77,7 @@ class ImportPlugin(plugins.ImportPluginBase):
77
77
  assert not (self.url and self.file), 'Provide either url or file, not both'
78
78
  if self.file and (self.file != '-'):
79
79
  self.file = (Path(self.tdenv.cwDir) / self.file).resolve()
80
- if not self.tdb.dbPath.exists():
80
+ if not (self.tdb.dataPath / Path("TradeDangerous.prices")).exists():
81
81
  ri_path = self.tdb.dataPath / Path("RareItem.csv")
82
82
  rib_path = ri_path.with_suffix(".tmp")
83
83
  if ri_path.exists():
@@ -27,6 +27,8 @@
27
27
  PRAGMA foreign_keys=ON;
28
28
  PRAGMA synchronous=OFF;
29
29
  PRAGMA temp_store=MEMORY;
30
+ PRAGMA journal_mode=WAL;
31
+ PRAGMA auto_vacuum=INCREMENTAL;
30
32
 
31
33
  BEGIN TRANSACTION;
32
34
 
tradedangerous/tradedb.py CHANGED
@@ -648,6 +648,7 @@ class TradeDB(object):
648
648
 
649
649
  fs.copy_if_newer((self.templatePath / Path("Added.csv")), (self.csvPath / Path("Added.csv")))
650
650
  fs.copy_if_newer((self.templatePath / Path("RareItem.csv")), (self.csvPath / Path("RareItem.csv")))
651
+ fs.copy_if_newer((self.templatePath / Path("Category.csv")), (self.csvPath / Path("Category.csv")))
651
652
  fs.copy_if_newer((self.templatePath / Path("TradeDangerous.sql")), (self.dataPath / Path("TradeDangerous.sql")))
652
653
 
653
654
  self.dbPath = Path(tdenv.dbFilename or dataPath / TradeDB.defaultDB)
@@ -704,6 +705,8 @@ class TradeDB(object):
704
705
  conn.execute("PRAGMA foreign_keys=ON")
705
706
  conn.execute("PRAGMA synchronous=OFF")
706
707
  conn.execute("PRAGMA temp_store=MEMORY")
708
+ conn.execute("PRAGMA auto_vacuum=INCREMENTAL")
709
+
707
710
  conn.create_function('dist2', 6, TradeDB.calculateDistance2)
708
711
  self.conn = conn
709
712
  return conn
tradedangerous/version.py CHANGED
@@ -12,5 +12,5 @@
12
12
  """just keeper of current version"""
13
13
 
14
14
  # TODO: remember to update tests when version changes
15
- __version__ = '10.16.0'
15
+ __version__ = '10.16.2'
16
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tradedangerous
3
- Version: 10.16.0
3
+ Version: 10.16.2
4
4
  Summary: Trade-Dangerous is a set of powerful trading tools for Elite Dangerous, organized around one of the most powerful trade run optimizers available.
5
5
  Home-page: https://github.com/eyeonus/Trade-Dangerous
6
6
  Author: eyeonus
@@ -15,13 +15,13 @@ tradedangerous/submit-distances.py,sha256=lEHtCLUzR2QNRrgPD-PkDIzHYYHOODZVTRxDsA
15
15
  tradedangerous/tools.py,sha256=pp-4WtA12SVaaQHFJFOMTF7EDFRCU2mQeOhC4xoXmEk,1331
16
16
  tradedangerous/trade.py,sha256=vBEJZR3Bybesw9FMelcHOTRA7KqKeH-4_wqbJ4VMB_E,1779
17
17
  tradedangerous/tradecalc.py,sha256=GyuYZNuyfn0y0eoPbxDEI7dxTJtHmRXAKFMpiR0Z1iU,42004
18
- tradedangerous/tradedb.py,sha256=5APAM7anzl4CM-bgV1TWLNi1_lkgZ-smVAtvU0M1MtM,73351
18
+ tradedangerous/tradedb.py,sha256=6JzoSAiW1WJjkWxeGMJkN63GHTBp9RA0dkfRviuEHeM,73515
19
19
  tradedangerous/tradeenv.py,sha256=FeeSvDI4Zpi5hJk2UAwrR_0Y7Y_gtYH0ofPEHKHLEBY,4412
20
20
  tradedangerous/tradeexcept.py,sha256=aZ-Y31MbkjF7lmAzBAbaMsPPE7FEEfuf4gaX2GvriDk,368
21
21
  tradedangerous/tradegui.py,sha256=JbGFnsWupgesk6hrcUgKSdD9NNDyo0U9gh6m3DccAwU,782
22
22
  tradedangerous/transfers.py,sha256=NmXXk2aF88YkAvYqc9Syt_aO6d2jJjC-OxoRFoOyQH4,9923
23
23
  tradedangerous/utils.py,sha256=PUPvAEqUyxYGqqQa0b_yfLAvq8YVUxK6HfdS-CxM-Lo,5186
24
- tradedangerous/version.py,sha256=S9cBah-KHiN_MJ6V3shYaP0EfZ2tqQeAE8OBfLWQHwE,647
24
+ tradedangerous/version.py,sha256=uzI4hVabe_Vl9PqUDsU9w48FJsDp8NtDSfKWU-uB8_g,647
25
25
  tradedangerous/commands/TEMPLATE.py,sha256=7oXL124aqxGHwnb0h9yRylUiwc6M5QrRrGVrubwI1gg,2124
26
26
  tradedangerous/commands/__init__.py,sha256=6B0WuqkFBOll5Hj67yKDAnhmyr5ZAnHc6nzUNEUh384,9640
27
27
  tradedangerous/commands/buildcache_cmd.py,sha256=oJvP06fA8svnHrfrpWkHKR16cba8GIhHdMOyZqds18Y,2332
@@ -66,15 +66,14 @@ tradedangerous/plugins/eddblink_plug.py,sha256=Ne_5ltiWC1M3MOxS6XaY0DyESJL3XaGI9
66
66
  tradedangerous/plugins/edmc_batch_plug.py,sha256=3Ptr-SZqaZFR8ViIIrp9Ak7rvfU3zl11AZYBhIceN7s,4224
67
67
  tradedangerous/plugins/journal_plug.py,sha256=K1oIeI7E3mb04fvYLXyoAh7fOTyM9NBelibTI88MIDQ,23696
68
68
  tradedangerous/plugins/netlog_plug.py,sha256=Gw_HSZWpN17D--OIYEM3Vo8y9SvDOv9UwAUfY24kz28,13460
69
- tradedangerous/plugins/spansh_plug.py,sha256=dDX34KEt_jSjwyP45utQTUgB-oew__F1sYcPb209bC8,21334
69
+ tradedangerous/plugins/spansh_plug.py,sha256=3C9dcSErok9OEwQh2337C-hRj4PD7G59BpttE8HajhM,21370
70
70
  tradedangerous/templates/Added.csv,sha256=8o54civQCcS9y7_DBo0GX196XWRbbREQqKDYTKibsgQ,649
71
71
  tradedangerous/templates/Category.csv,sha256=8xwUDcBZE25T6x6dZGlRUMTCqeDLt3a9LXU5h6hRHV8,250
72
- tradedangerous/templates/DefaultShipIndex.json,sha256=m5cI3vkKiqRk1VKO1Z_8LZrG9nczV0PUMDfBSt4-1RM,94739
73
72
  tradedangerous/templates/RareItem.csv,sha256=F1RhRnTD82PiwrVUO-ai2ErGH2PTqNnQaDw5mcgljXs,10483
74
- tradedangerous/templates/TradeDangerous.sql,sha256=6sjEogGHy-9zYpjPo0Y2a5tElowmHFyJNwrimOUBfHk,8079
75
- tradedangerous-10.16.0.dist-info/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
76
- tradedangerous-10.16.0.dist-info/METADATA,sha256=bVIRRbEj5tfBICwC8Y8M_63Tnlz-zmLIrXDNQCHG7so,4421
77
- tradedangerous-10.16.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
78
- tradedangerous-10.16.0.dist-info/entry_points.txt,sha256=pSwa-q0ob443uiKux7xFKYQl8uen66iDTnjdrQhNLx8,92
79
- tradedangerous-10.16.0.dist-info/top_level.txt,sha256=bF29i-oEltmNICgElEKxNsg83oahJvxg3a7YrxZi9Rk,15
80
- tradedangerous-10.16.0.dist-info/RECORD,,
73
+ tradedangerous/templates/TradeDangerous.sql,sha256=kHZ7JBSY5lh2DnqayAxoO-apvXKB510SqhAzkT21YHY,8138
74
+ tradedangerous-10.16.2.dist-info/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
75
+ tradedangerous-10.16.2.dist-info/METADATA,sha256=-m7JiDH4SmjL68lEpJQm99bqptQCUxaNliQGU5l7nkA,4421
76
+ tradedangerous-10.16.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
77
+ tradedangerous-10.16.2.dist-info/entry_points.txt,sha256=pSwa-q0ob443uiKux7xFKYQl8uen66iDTnjdrQhNLx8,92
78
+ tradedangerous-10.16.2.dist-info/top_level.txt,sha256=bF29i-oEltmNICgElEKxNsg83oahJvxg3a7YrxZi9Rk,15
79
+ tradedangerous-10.16.2.dist-info/RECORD,,