Compare commits

...

4 Commits

Author SHA1 Message Date
Přemysl Eric Janouch e6de4f11e7
Be actually able to use a system Termo library
Alpine 3.19 Success Details
Arch Linux AUR Success Details
OpenBSD 7.3 Success Details
2024-04-10 17:31:40 +02:00
Přemysl Eric Janouch c4bce75866
Bump version, update NEWS
Arch Linux AUR Success Details
Alpine 3.19 Success Details
2024-02-27 00:39:23 +01:00
Přemysl Eric Janouch 08b87bccbd
Bump liberty, fix a dead link 2024-02-27 00:30:39 +01:00
Přemysl Eric Janouch fa460b97cf
Fix info plugins installation
They could never become executable.
2024-02-25 05:15:00 +01:00
4 changed files with 16 additions and 5 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 3.0...3.27)
project (nncmpp VERSION 2.1.0 LANGUAGES C)
project (nncmpp VERSION 2.1.1 LANGUAGES C)
# Moar warnings
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)
@ -121,14 +121,16 @@ add_custom_command (OUTPUT ${actions}
# Build the main executable and link it
add_executable (${PROJECT_NAME} ${PROJECT_NAME}.c ${actions})
target_link_libraries (${PROJECT_NAME} ${Unistring_LIBRARIES}
${Ncursesw_LIBRARIES} termo-static ${curl_LIBRARIES} ${extra_libraries})
${Ncursesw_LIBRARIES} ${Termo_LIBRARIES} ${curl_LIBRARIES}
${extra_libraries})
add_threads (${PROJECT_NAME})
# Installation
install (TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})
install (FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR})
install (DIRECTORY contrib DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME})
install (DIRECTORY info DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME})
install (DIRECTORY info DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}
USE_SOURCE_PERMISSIONS)
if (WITH_X11)
include (IconUtils)

9
NEWS
View File

@ -1,3 +1,12 @@
2.1.1 (2024-02-27)
* Fixed installation of Info tab plugins
* Fixed display of playback mode toggles in the terminal user interface
* Fixed a dead link in the manual page
2.1.0 (2024-02-11)
* Added ability to look up song lyrics,

@ -1 +1 @@
Subproject commit 2a1f17a8f7e32e1a485df450c5ad231312fedc16
Subproject commit 969a4cfc3ea1c4d7c0327907385fc64906ed5d4c

View File

@ -69,7 +69,7 @@ colors = {
scrollbar = ""
}
streams = {
"dnbradio.com" = "http://www.dnbradio.com/hi.m3u"
"dnbradio.com" = "https://dnbradio.com/hi.pls"
"BassDrive.com" = "http://bassdrive.com/v2/streams/BassDrive.pls"
}
....