Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaslepoix committed Apr 17, 2020
1 parent 80ccb85 commit 705f70b
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
qucsrflayout (1.0.1)

[ Fixed ]
* Truncated decimal values in graphic mode only. (Closes: #4)

[ Added ]
* Changelog

-- Thomas Lepoix <thomas.lepoix@protonmail.ch> 17 Apr 2020

qucsrflayout (1.0.0)

[ Added ]
* Supports Linux.
* Supports Windows (Benjamin Vernoux <https://github.com/bvernoux>).
* Requires Qucs installed.
* Supports QucsStudio schematics if Qucs is installed too.
* Supports output formats :
* .kicad_pcb : KiCad board
* .kicad_mod : KiCad module
* .lht : pcb-rnd board
* Supports microstrip components :
* MCORN
* MCOUPLED
* MCROSS
* MGAP
* MLIN
* MMBEND
* MOPEN
* MRSTUB
* MSTEP
* MTEE
* MVIA
* Pac

-- Thomas Lepoix <thomas.lepoix@protonmail.ch> 14 Feb 2020

8 changes: 8 additions & 0 deletions Qucs-RFlayout.pro
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,13 @@ unix {
INSTALLS += man
}

unix {
changelog.extra = gzip -9 -c $$PWD/CHANGELOG > ./doc/changelog.gz
changelog.files = ./doc/changelog.gz
changelog.path = $$PREFIX/share/doc/qucsrflayout
changelog.clean = rm -f doc/changelog.gz
INSTALLS += changelog
}

#CONFIG += object_parallel_to_source

11 changes: 11 additions & 0 deletions doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,14 @@ install(
DESTINATION "share/man/man1" #"${CMAKE_INSTALL_MANDIR}"
)

compress_gz( -9
"${CMAKE_SOURCE_DIR}/CHANGELOG"
"${CMAKE_BINARY_DIR}/doc/changelog.gz"
)

install(
FILES "${CMAKE_BINARY_DIR}/doc/changelog.gz"
CONFIGURATIONS Release
DESTINATION "share/doc/qucsrflayout" #"${CMAKE_INSTALL_MANDIR}"
)

0 comments on commit 705f70b

Please sign in to comment.