-
Notifications
You must be signed in to change notification settings - Fork 97
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
40 additions
and
31 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,12 @@ | ||
kicost (1.1.19-1) stable; urgency=medium | ||
|
||
* Components groupings now isn't case sensitive | ||
* Fixed Element14 issues when no RoHS info found | ||
* Fixed Element14 country selection | ||
* Added warning about missing config file | ||
|
||
-- Salvador Eduardo Tropea <[email protected]> Mon, 06 May 2024 11:09:42 -0300 | ||
|
||
kicost (1.1.18-1) stable; urgency=medium | ||
|
||
* Fixed problems when no arguments were specified | ||
|
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,35 +1,35 @@ | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
default_date = '2023-05-15' | ||
default_date = '2024-05-06' | ||
default_rates = {'EUR': 1.0, | ||
'USD': 1.0876, | ||
'JPY': 148.15, | ||
'USD': 1.0776, | ||
'JPY': 165.7, | ||
'BGN': 1.9558, | ||
'CZK': 23.574, | ||
'DKK': 7.4471, | ||
'GBP': 0.86943, | ||
'HUF': 369.3, | ||
'PLN': 4.5078, | ||
'RON': 4.9375, | ||
'SEK': 11.2905, | ||
'CHF': 0.9747, | ||
'ISK': 150.9, | ||
'NOK': 11.583, | ||
'TRY': 21.3896, | ||
'AUD': 1.6261, | ||
'BRL': 5.3431, | ||
'CAD': 1.4684, | ||
'CNY': 7.5621, | ||
'HKD': 8.525, | ||
'IDR': 16089.55, | ||
'ILS': 3.9776, | ||
'INR': 89.499, | ||
'KRW': 1453.79, | ||
'MXN': 19.0872, | ||
'MYR': 4.8915, | ||
'NZD': 1.7494, | ||
'PHP': 60.984, | ||
'CZK': 24.995, | ||
'DKK': 7.4589, | ||
'GBP': 0.8566, | ||
'HUF': 389.38, | ||
'PLN': 4.3185, | ||
'RON': 4.9688, | ||
'SEK': 11.625, | ||
'CHF': 0.9754, | ||
'ISK': 150.3, | ||
'NOK': 11.6663, | ||
'TRY': 34.7747, | ||
'AUD': 1.6248, | ||
'BRL': 5.4683, | ||
'CAD': 1.4731, | ||
'CNY': 7.7662, | ||
'HKD': 8.4223, | ||
'IDR': 17289.39, | ||
'ILS': 4.0322, | ||
'INR': 89.9875, | ||
'KRW': 1460.0, | ||
'MXN': 18.2346, | ||
'MYR': 5.1067, | ||
'NZD': 1.7891, | ||
'PHP': 61.66, | ||
'SGD': 1.4548, | ||
'THB': 36.772, | ||
'ZAR': 20.7496, | ||
'THB': 39.618, | ||
'ZAR': 19.8369, | ||
} |
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,4 +1,4 @@ | ||
__author__ = 'XESS Corporation' | ||
__email__ = '[email protected]' | ||
__version__ = '1.1.18' | ||
__build__ = 'd70ad0d-2023-05-15' | ||
__version__ = '1.1.19' | ||
__build__ = '8e1f5e2-2024-05-06' |