From 4b19e3cf2a1b25324d8d43fa6d9eb39586b9d9c7 Mon Sep 17 00:00:00 2001 From: Tianhao Chai Date: Sun, 17 Jan 2021 19:48:09 -0600 Subject: [PATCH] bump version to 0.4.0 --- CMakeLists.txt | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c96e3d8..d7aa4a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required (VERSION 3.0) project (Minemap) set (Minemap_VERSION_MAJOR 0) -set (Minemap_VERSION_MINOR 3) -set (Minemap_VERSION_PATCH 1) +set (Minemap_VERSION_MINOR 4) +set (Minemap_VERSION_PATCH 0) if (${Minemap_VERSION_PATCH} EQUAL 0) set(CMAKE_PROJECT_VERSION ${Minemap_VERSION_MAJOR}.${Minemap_VERSION_MINOR}) diff --git a/README.md b/README.md index bd7f9a2..7208d72 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ Command line utilities for manipulating Minecraft Map item so that we can have t This repository contains two command line utilities, "minemap" to convert images to map items, the other "pamenim" to do the reverse. Run the utilities themselves with no arguments to view usage information. -Building is handled by CMake. Please make sure you have the following dependencies: +Building is handled by CMake. As of version 0.4.0, boost is no longer required both at compile time and run time. Please make sure you have the following dependencies: -* boost libraries with headers * Magick++ 7, part of Imagemagick +* zlib, used to compress / decompress NBT data stream Prior to building, please run `git submodule update --init --recursive`. -### Building on Windows... +### [Update Needed for 0.4.0] Building on Windows... Without loss of generality, let's admit that building this on Windows is the worst part for me, and probably for readers as well. To save the hassle you may download prebuilt, statically linked executables from the release page. For fearless Windows users who prefer to build yourself out there, follow me (or even better, improve the following as I have no idea how Visual Studio should really work):