Skip to content

Commit

Permalink
Version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa committed Feb 18, 2015
1 parent 7dc3e4f commit 7fc0efb
Show file tree
Hide file tree
Showing 7 changed files with 353 additions and 139 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Makefile to build lsdsk
# Copyright (c) 2004-2006 Ross Smith II (http://smithii.com). All rights reserved.
# Copyright (c) 2004-2011 Ross Smith II (http://smithii.com). All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of version 2 of the GNU General Public License
Expand All @@ -14,15 +14,16 @@

VER?=$(shell perl -n -e '/define\s+VER_STRING2\s+"(.*)"/ && print $$1' version.h)
APP?=$(shell perl -n -e '/define\s+VER_INTERNAL_NAME\s+"(.*)"/ && print $$1' version.h)
MSVC_DIR?=/cygdrive/c/PROGRA~1/MICROS~4/VC98
VC98?=$(PROGRAMFILES)\\Microsoft Visual Studio\\VC98
MSVC_DIR?=$(shell cygpath -u `cygpath -ds "$(VC98)"`)
CYGENV=MAKEFLAGS="" PATH=$(MSVC_DIR)/bin:$$PATH
APP_ZIP?=$(APP)-$(VER)-win32.zip
SRC_ZIP?=$(APP)-$(VER)-win32-src.zip
ZIP?=zip
ZIP_OPTS?=-9jquX
CWD=$(shell pwd)
APP_FILES=Release/$(APP).exe changelog.txt COPYING readme.txt
SRC_FILES=$(APP_FILES) $(shell ls *.cpp *.c *.h *.hpp *.inl *.dsp *.dsw *.mak *.dep Makefile 2>nul)
APP_FILES=Debug/$(APP).exe changelog.txt COPYING readme.txt
SRC_FILES=$(APP_FILES) $(shell ls *.cpp *.c *.h *.hpp *.inl *.dsp *.dsw *.mak *.dep *.vcxproj Makefile 2>nul)

.PHONY: dist
dist: all $(APP_ZIP) $(SRC_ZIP)
Expand Down
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
lsdsk changelog

Version 1.5 - 26 Sep 11

Updated to Visual Studio 2010 Express
Added option: -A | --all Display both mounted and unmounted drives
Added option: -b | --bus Display device bus type (USB, 1394, etc.
Fixed crash for 'net use \\host\ipc$' type shares
Trimed file system value to width of field
Changed -k to show size suffix as lowercase
Display volume in name field if volume option not selected, or name is blank

Version 1.4 - 04 Apr 07:

Better error reporting
Expand Down
Loading

0 comments on commit 7fc0efb

Please sign in to comment.