From 33cd0aa28205cace3d1557bc034c291583f2b2a4 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Tue, 23 Feb 2021 10:51:10 -0700 Subject: [PATCH] Remove STYLE.txt from package, release v1.0.1 --- CHANGELOG.md | 5 +++++ README.md | 10 ++++++---- qgreenland/tasks/main.py | 4 ---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fcb9d98a..fa1d41d65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v1.0.1 (2021-02-23) + +- Remove `STYLE.txt` from zip package. +- Fix README mistakes + # v1.0.0 (2021-02-22) - Enable Greenland coastline layer by default, add semitransparent fill. diff --git a/README.md b/README.md index bf50675b0..3f1b86f7a 100644 --- a/README.md +++ b/README.md @@ -50,14 +50,17 @@ At the root of the package, you will find scientific discipline-specific directories containing data. Additionally, the following files are present at the package root: -* `qgreenland.pdf` (COMING SOON): Detailed user-guide. +* `UserGuide.pdf`: Detailed user-guide. +* `QuickStartGuide.pdf`: Guide for QGIS beginners. +* `MakingDataQGRCompatible.pdf`: Data compatibility guide for data providers, + contributors, and users. * `README.txt`: The README file you are currently reading. * `CHANGELOG.txt`: A summary of changes for each new QGreenland version. * `CONTRIBUTING.txt`: Instructions to users looking for help contributing to this project. -* `STYLE.txt`: Guidelines and standards for QGreenland styling. * `layer_list.csv`: Comma-separated values representing the configuration of - layers in QGreenland. + layers in QGreenland. This includes limited layer metadata, including, but + not limited to: title, description, abstract, and citation. # Educational Resources @@ -66,7 +69,6 @@ We keep the QGreenland official website up-to-date with links to helpful educational resources, including our own QGreenland User Guide. * [QGreenland official website](https://qgreenland.org) - * [Additional resources](https://qgreenland.org/resources) * [QGreenland YouTube channel](https://www.youtube.com/channel/UCjWae_Jrbognx2ju_SHBZ2A/videos) diff --git a/qgreenland/tasks/main.py b/qgreenland/tasks/main.py index a30fcfe07..9ba96ad95 100644 --- a/qgreenland/tasks/main.py +++ b/qgreenland/tasks/main.py @@ -80,10 +80,6 @@ def requires(self): src_filepath=os.path.join(PROJECT_DIR, 'doc', 'CONTRIBUTING.md'), dest_relative_filepath='CONTRIBUTING.txt' ) - yield AncillaryFile( - src_filepath=os.path.join(PROJECT_DIR, 'doc', 'STYLE.md'), - dest_relative_filepath='STYLE.txt' - ) yield AncillaryFile( src_filepath=os.path.join(PROJECT_DIR, 'doc', 'QuickStartGuide.pdf'), dest_relative_filepath='QuickStartGuide.pdf'