-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
kicost (1.1.14-1) stable; urgency=medium | ||
|
||
* Fix TME component URLs | ||
* Fix installation problems when tqdm isn't installed | ||
* Add Nexar API (replaces Octopart) | ||
* Add mechanism so all config API options have a related environment variable | ||
* Add option to exclude Digi-Key marketplace products | ||
* Add mechanism to specify availability for local distributors | ||
|
||
-- Salvador Eduardo Tropea <[email protected]> Wed, 14 Dec 2022 11:00:41 -0300 | ||
|
||
kicost (1.1.12-1) stable; urgency=medium | ||
|
||
* Fixed problems when trying to use Digi-Key API, but not available | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
default_date = '2022-09-26' | ||
default_date = '2022-12-13' | ||
default_rates = {'EUR': 1.0, | ||
'USD': 0.9646, | ||
'JPY': 139.07, | ||
'USD': 1.0545, | ||
'JPY': 144.85, | ||
'BGN': 1.9558, | ||
'CZK': 24.64, | ||
'DKK': 7.4365, | ||
'GBP': 0.89404, | ||
'HUF': 408.83, | ||
'PLN': 4.7608, | ||
'RON': 4.9418, | ||
'SEK': 10.9275, | ||
'CHF': 0.9555, | ||
'ISK': 138.9, | ||
'NOK': 10.3585, | ||
'HRK': 7.5278, | ||
'TRY': 17.8001, | ||
'AUD': 1.4858, | ||
'BRL': 5.1504, | ||
'CAD': 1.3195, | ||
'CNY': 6.9075, | ||
'HKD': 7.572, | ||
'IDR': 14620.74, | ||
'ILS': 3.4069, | ||
'INR': 78.704, | ||
'KRW': 1379.4, | ||
'MXN': 19.6066, | ||
'MYR': 4.4401, | ||
'NZD': 1.6886, | ||
'PHP': 56.908, | ||
'SGD': 1.3842, | ||
'THB': 36.496, | ||
'ZAR': 17.4247, | ||
'CZK': 24.287, | ||
'DKK': 7.4391, | ||
'GBP': 0.85753, | ||
'HUF': 409.65, | ||
'PLN': 4.6938, | ||
'RON': 4.9298, | ||
'SEK': 10.8965, | ||
'CHF': 0.9869, | ||
'ISK': 151.1, | ||
'NOK': 10.4679, | ||
'HRK': 7.5495, | ||
'TRY': 19.6649, | ||
'AUD': 1.5553, | ||
'BRL': 5.5784, | ||
'CAD': 1.4341, | ||
'CNY': 7.3637, | ||
'HKD': 8.2033, | ||
'IDR': 16521.81, | ||
'ILS': 3.6266, | ||
'INR': 87.2965, | ||
'KRW': 1378.75, | ||
'MXN': 20.9435, | ||
'MYR': 4.6704, | ||
'NZD': 1.6464, | ||
'PHP': 58.852, | ||
'SGD': 1.4288, | ||
'THB': 36.707, | ||
'ZAR': 18.6855, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = '1.1.13' | ||
__build__ = '91d6f17-2022-09-27' | ||
__version__ = '1.1.14' | ||
__build__ = '8cd1476-2022-12-14' |