Skip to content

Commit 118b192

Browse files
committed
Merge remote-tracking branch 'refs/remotes/KiCad/master'
2 parents 0c581e5 + d736735 commit 118b192

File tree

1,160 files changed

+14348159
-9146
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,160 files changed

+14348159
-9146
lines changed

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
* text=lf
1+
* text=auto
22
*.wrl -diff
33
*.pack binary
44
*.png binary
55
*.step binary
6+
*.stp binary
7+
*.STEP binary
8+
*.STP binary
69
*.wings binary
710
*.svg binary
811
*.pdf binary

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
sudo: required
2+
before_install:
3+
- git clone https://github.com/KiCad/kicad-library-utils /home/travis/build/kicad-library-utils
4+
- git clone https://github.com/KiCad/kicad-library /home/travis/build/kicad-library-old
5+
6+
script:
7+
- sudo bash ./library-check.sh $TRAVIS_BUILD_DIR

library-check.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error=0
2+
DATA=()
3+
for files in library/*.lib; do
4+
DATA+=($files)
5+
done
6+
cd /home/travis/build/kicad-library-utils/schlib
7+
for file in "${DATA[@]}"; do
8+
python3 comparelibs.py --check --new /$1/$file --old /home/travis/build/kicad-library-old/$file
9+
error="$(($error+$?))"
10+
done
11+
exit $error

library/Altera.dcm

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
EESchema-DOCLIB Version 2.0
2+
#
3+
$CMP EP1210
4+
D EPLD
5+
K EPLD
6+
F ~
7+
$ENDCMP
8+
#
9+
$CMP EP1810
10+
D EPLD
11+
K EPLD
12+
F ~
13+
$ENDCMP
14+
#
15+
$CMP EP300
16+
D EPLD, DIP-20
17+
K EPLD
18+
F ~
19+
$ENDCMP
20+
#
21+
$CMP EP310
22+
D EPLD, 8 Macrocell, DIP-20
23+
K EPLD
24+
F https://www.usbid.com/assets/datasheets/A6/ep310%20-%20epld%20-%20altera.pdf
25+
$ENDCMP
26+
#
27+
$CMP EP320
28+
D EPLD
29+
K EPLD
30+
F ~
31+
$ENDCMP
32+
#
33+
$CMP EP600
34+
D EPLD
35+
K EPLD
36+
F ~
37+
$ENDCMP
38+
#
39+
$CMP EP910
40+
D EPLD
41+
K EPLD
42+
F ~
43+
$ENDCMP
44+
#
45+
#End Doc Library

0 commit comments

Comments
 (0)