From 55d2ae32611929f7972932cc5046dfbe2c9b4433 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 18 Apr 2022 14:46:23 -0300 Subject: [PATCH] Bumped version to 1.6.10 --- CHANGELOG.md | 7 +++++++ debian/changelog | 6 ++++++ kiauto/misc.py | 8 ++++---- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e09846b..120c02a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.10] - 2022-04-18 +### Fixed +- eeschema_do fails when loading the schematics took more than 3 seconds. + +### Changed +- Time-outs when waiting for the PCB print dialog. Should make things faster. + ## [1.6.9] - 2022-04-10 ### Fixed - `--list` option was limited to layer IDs upto 50. Now isn't limited. diff --git a/debian/changelog b/debian/changelog index a4a138f..1be1296 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +kiauto (1.6.10-1) stable; urgency=medium + + * Adjusts in the time-outs + + -- Salvador Eduardo Tropea Mon, 18 Apr 2022 14:43:10 -0300 + kiauto (1.6.9-1) stable; urgency=medium * Fixes in --list and support for newer xclip versions diff --git a/kiauto/misc.py b/kiauto/misc.py index ab0fed9..5a75584 100644 --- a/kiauto/misc.py +++ b/kiauto/misc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2020-2021 Salvador E. Tropea -# Copyright (c) 2020-2021 Instituto Nacional de Tecnologïa Industrial +# Copyright (c) 2020-2022 Salvador E. Tropea +# Copyright (c) 2020-2022 Instituto Nacional de Tecnologïa Industrial # License: Apache 2.0 # Project: KiAuto (formerly kicad-automation-scripts) import os @@ -33,7 +33,7 @@ CORRUPTED_PCB = 13 NO_EN_LOCALE = 14 MISSING_TOOL = 15 -# Wait 40 s to pcbnew/eeschema window to be present +# Wait 60 s to pcbnew/eeschema window to be present WAIT_START = 60 # Name for testing versions NIGHTLY = 'nightly' @@ -290,4 +290,4 @@ def get_en_locale(logger): __email__ = 'stropea@inti.gob.ar' __status__ = 'stable' __url__ = 'https://github.com/INTI-CMNB/KiAuto/' -__version__ = '1.6.9' +__version__ = '1.6.10'