From 10eca1eb60b776f14d2c4ecd3b86e816f7870090 Mon Sep 17 00:00:00 2001 From: Steve Date: Wed, 22 Jan 2020 07:27:46 +0000 Subject: [PATCH] Releases are now stable. --- README.md | 2 +- makefile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 316ea96..7fd90b8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Alt text](dev/screenshots/v0.6-06.png?raw=true "Screenshot") -The develop branch on GitHub (https://github.com/stephenjsweeney/tbftss/tree/develop) is where all the dev work happens. Stable(ish) releases will go in to master (https://github.com/stephenjsweeney/tbftss/tree/master). +The develop branch on GitHub (https://github.com/stephenjsweeney/tbftss/tree/develop) is where all the dev work happens. Stable releases will go in to master (https://github.com/stephenjsweeney/tbftss/tree/master). Website: www.battleforthesolarsystem.com Email: stephenjsweeney@battleforthesolarsystem.com diff --git a/makefile b/makefile index af17d6f..dfc64cc 100644 --- a/makefile +++ b/makefile @@ -54,13 +54,13 @@ install: cp -p icons/$(PROG)-128x128.png $(INST_ICON_DIR)/128x128/apps/$(PROG).png mkdir -p $(INST_DESKTOP_DIR) cp -p icons/$(PROG).desktop $(INST_DESKTOP_DIR) - + @for f in $(LOCALE_MO); do \ lang=`echo $$f | sed -e 's/^locale\///;s/\.mo$$//'`; \ mkdir -p $(INST_LOCALE_DIR)/$$lang/LC_MESSAGES; \ cp -v $$f $(INST_LOCALE_DIR)/$$lang/LC_MESSAGES/$(PROG).mo; \ done - + uninstall: $(RM) $(BIN_DIR)/$(PROG) $(RM) -rf $(DATA_DIR) @@ -69,10 +69,10 @@ uninstall: $(RM) $(ICON_DIR)/64x64/apps/$(PROG).png $(RM) $(ICON_DIR)/128x128/apps/$(PROG).png $(RM) $(DESKTOP_DIR)/$(PROG).desktop - + @for f in $(LOCALE_MO); do \ lang=`echo $$f | sed -e 's/^locale\///;s/\.mo$$//'`; \ $(RM) -v $(LOCALE_DIR)/$$lang/LC_MESSAGES/$(PROG).mo; \ done - + .PHONY: dist