Skip to content

Commit 6103669

Browse files
authoredJul 3, 2016
Added sponsors generated from changelog site (#3264)
* Added sponsors generated from changelog site * Use a single rule for including sponsor images rather. Remove terrelogiche duplication. Remove old sponsor images * Fix indentations and remove sponsors from images.qrc
1 parent a6954b2 commit 6103669

File tree

50 files changed

+174
-27
lines changed

Some content is hidden

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

50 files changed

+174
-27
lines changed
 

‎doc/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ ELSE(TXT2TAGS_EXECUTABLE)
2222
)
2323
ENDIF(TXT2TAGS_EXECUTABLE)
2424

25-
SET(QGIS_DOC_FILES ${QGIS_DOC_FILES} index.html news.html developersmap.html contributors.json favicon.ico style.css AUTHORS CONTRIBUTORS SPONSORS DONORS TRANSLATORS LICENSE)
25+
SET(QGIS_DOC_FILES ${QGIS_DOC_FILES} index.html news.html developersmap.html contributors.json favicon.ico style.css release-sponsors.html AUTHORS CONTRIBUTORS SPONSORS DONORS TRANSLATORS LICENSE)
2626

2727
INSTALL(FILES ${QGIS_DOC_FILES} DESTINATION ${QGIS_DATA_DIR}/doc)
2828
INSTALL(FILES ../images/icons/qgis-icon-60x60.png DESTINATION ${QGIS_DATA_DIR}/doc/images)
2929

30+
# Sponsor images
31+
FILE (GLOB SPONSOR_IMAGES images/projects/thumbnails/* )
32+
INSTALL (FILES ${SPONSOR_IMAGES} DESTINATION ${QGIS_DATA_DIR}/doc/images/projects/thumbnails/)
33+
3034
IF(WITH_APIDOC)
3135
FIND_PACKAGE(Doxygen 1.8.2 REQUIRED)
3236
IF(DOXYGEN_FOUND)

1 commit comments

Comments
 (1)

nirvn commented on Jul 4, 2016

@nirvn
Contributor

@timlinux nice; I find the ordering a bit confusing though. More precisely, my brain mistakenly associates the logo with the hyperlink below it. It might be worth revisiting the element ordering to be:
[entity logo (in hyperlink)]
[entity name in hyperlink]
[support date range]
[support type]

Also, I'd make the logo itself an hyperlink too.

Edit: maybe add a margin (or an empty

) in-between sponsors within a given category too? It'll help grouping of information.

Please sign in to comment.