Skip to content

Commit

Permalink
v1.3.3
Browse files Browse the repository at this point in the history
flyingeek committed Feb 7, 2024
1 parent 4ca795c commit e411c6e
Showing 5 changed files with 11 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,13 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.3] - 2024-02-07

### Changed

- Mise à jour des aéroports
- retrait du warning sur les frais d'emploi en test

## [1.3.2] - 2024-02-05

### Changed
2 changes: 1 addition & 1 deletion data/airports.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flytax",
"version": "1.3.2",
"version": "1.3.3",
"type": "module",
"scripts": {
"build": "rollup -c",
4 changes: 2 additions & 2 deletions scripts/makeAirports.js
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ const gistURL = "https://github.com/mborsetti/airportsdata/raw/main/airportsdata

//init with manex airports not referenced in airports.csv
//not sure QQO is really the iata code of LGEL, could not find this information in Wikipedia
let results = "TLN:FRAZR:DZELG:DZBYK:CIBER:DEKRN:SEMJN:MGFYT:TDMWH:USQQO:GRILS:SVRGI:PFHOI:PFOSN:KRUBN:MNBYH:USALY:EG";
let results = "TLN:FRAZR:DZELG:DZBYK:CIBER:DEKRN:SEMJN:MGFYT:TDMWH:USQQO:GRILS:SVRGI:PFHOI:PFOSN:KRUBN:MNBYH:USALY:EGNLU:MXTFU:CNPJY:RUQIE:FRKIV:MD";

const processRow = (row) => {
const [icao, iata, name, city, subd, country, elevation, lat, lon, tz] = row.data;
@@ -29,7 +29,7 @@ const save = () => {
} else {
console.log(`Saved ${results.length / 6} airports! in ${airportsPath}`);
//ensure manex airports are defined, this is commented out as I don't want to include Global csv file in the repo
// const airportsManex = '../lido-online/data/Global2113.csv';
// const airportsManex = '../lido-online/data/Global2313.csv';
// const file = fs.createReadStream(airportsManex);
// Papa.parse(file, {
// step: function(result) {
3 changes: 0 additions & 3 deletions src/components/PayTable.svelte
Original file line number Diff line number Diff line change
@@ -97,9 +97,6 @@
{#if $taxYear !== $taxData.year}
<tr class="warning"><th colspan="3">Attention les montants sont basés sur les données fiscales de {$taxData.year}</th></tr>
{/if}
{#if $taxYear === "2023"}
<tr class="warning"><th colspan="3">Le calcul des frais d'emploi est encore en test pour 2023</th></tr>
{/if}
</thead>
<tbody>
<tr>

0 comments on commit e411c6e

Please sign in to comment.