105,932 changes: 105,932 additions & 0 deletions ChangeLog

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions CHANGELOG → NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Quantum GIS (QGIS) Changelog
Quantum GIS (QGIS) News
Change history for the QGIS Project
Thursday November 17, 2011
Sunday April 15, 2012


------------------------------------------------------------------------
Expand Down Expand Up @@ -57,8 +57,8 @@ Thursday November 17, 2011
------------------------------------------------------------------------


Last Updated: Thursday November 17, 2011
Last Change : Thursday November 17, 2011
Last Updated: Sunday April 15, 2012
Last Change : Sunday April 15, 2012


1. Whats new in Version 1.7.2 'Wroclaw'?
Expand Down Expand Up @@ -152,7 +152,7 @@ http://linfiniti.com/2011/08/improvements-to-raster-performance-in-qgis-master/]
- Reduce top and side margins for attribute table dialog
- Remove the (hopefully) last SVN reference
- More svn version removal
- Added missing colour accessor/mutator/member from composerlegenditem header
- Added missing color accessor/mutator/member from composerlegenditem header
- Get rid of svn version stuff from release branch.
- Other workaround for Qt#5114 (fixes #3250, #3028, #2598)
- Try to make the histogram smoother
Expand Down Expand Up @@ -296,7 +296,7 @@ changed so we will just provide a bullet list of key new features here.

- Support for icons of plugins in the plugin manager dialog.
- Removed quickprint plugin - use easyprint plugin rather from plugin repo.
- Removed ogr convertor plugin - use 'save as' context menu rather.
- Removed ogr converter plugin - use 'save as' context menu rather.


3.10. Printing
Expand Down
6 changes: 3 additions & 3 deletions doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ INCLUDE(Txt2Tags)
FIND_TXT2TAGS()

IF(TXT2TAGS_EXECUTABLE)
ADD_TXT2TAGS_FILES(QGIS_DOC_FILES INSTALL.t2t CODING.t2t changelog.t2t)
ADD_TXT2TAGS_FILES(QGIS_DOC_FILES INSTALL.t2t CODING.t2t news.t2t)
IF(WITH_TXT2TAGS_PDF)
ADD_TXT2TAGS_PDFS(QGIS_DOC_FILES INSTALL.t2t CODING.t2t changelog.t2t)
ADD_TXT2TAGS_PDFS(QGIS_DOC_FILES INSTALL.t2t CODING.t2t news.t2t)
ENDIF(WITH_TXT2TAGS_PDF)
ADD_CUSTOM_TARGET (t2tdoc ALL DEPENDS ${QGIS_DOC_FILES})
ELSE(TXT2TAGS_EXECUTABLE)
Expand All @@ -20,7 +20,7 @@ ELSE(TXT2TAGS_EXECUTABLE)
)
ENDIF(TXT2TAGS_EXECUTABLE)

SET(QGIS_DOC_FILES ${QGIS_DOC_FILES} index.html changelog.html favicon.ico style.css AUTHORS CONTRIBUTORS SPONSORS DONORS TRANSLATORS)
SET(QGIS_DOC_FILES ${QGIS_DOC_FILES} index.html news.html favicon.ico style.css AUTHORS CONTRIBUTORS SPONSORS DONORS TRANSLATORS)

INSTALL(FILES ${QGIS_DOC_FILES} DESTINATION ${QGIS_DATA_DIR}/doc)
INSTALL(FILES images/qgis_new_80pct.png DESTINATION ${QGIS_DATA_DIR}/doc/images)
Expand Down
437 changes: 328 additions & 109 deletions doc/changelog.html → doc/news.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions doc/changelog.t2t → doc/news.t2t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Quantum GIS (QGIS) Changelog
Quantum GIS (QGIS) News
Change history for the QGIS Project
%%date(%A %B %d, %Y)

Expand All @@ -24,13 +24,13 @@ Change history for the QGIS Project
%rather apply it selectively to paragraphs where needed.

% To generate the text version of this document:
% txt2tags -t txt -o ../CHANGELOG changelog.t2t
% txt2tags -t txt -o ../NEWS news.t2t
% To generate the mediawiki version of this document:
% txt2tags -t wiki --no-enum-title -o CHANGELOG.wiki changelog.t2t
% txt2tags -t wiki --no-enum-title -o NEWS.wiki news.t2t
% To generate the html version of this document:
% txt2tags -t html -o changelog.html changelog.t2t
% txt2tags -t html -o news.html news.t2t
% To generate the LaTeX version of this document:
% txt2tags -t tex -o CHANGELOG.tex CHANGELOG.t2t; pdflatex changelog.tex
% txt2tags -t tex -o NEWS.tex NEWS.t2t; pdflatex news.tex

% End of comments
% -------------------
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsabout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void QgsAbout::setWhatsNew( )
QString myStyle = QgsApplication::reportStyleSheet();
txtWhatsNew->clear();
txtWhatsNew->document()->setDefaultStyleSheet( myStyle );
txtWhatsNew->setSource( "file:///" + QgsApplication::pkgDataPath() + "/doc/changelog.html" );
txtWhatsNew->setSource( "file:///" + QgsApplication::pkgDataPath() + "/doc/news.html" );
}

void QgsAbout::setPluginInfo()
Expand Down