forked from obra/kicad-automation-scripts
-
Notifications
You must be signed in to change notification settings - Fork 20
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
17 additions
and
4 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
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,9 @@ | ||
kiauto (1.6.10-1) stable; urgency=medium | ||
|
||
* Adjusts in the time-outs | ||
|
||
-- Salvador Eduardo Tropea <[email protected]> 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 | ||
|
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,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__ = '[email protected]' | ||
__status__ = 'stable' | ||
__url__ = 'https://github.com/INTI-CMNB/KiAuto/' | ||
__version__ = '1.6.9' | ||
__version__ = '1.6.10' |