Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.4.0 release #19

Merged
merged 2 commits into from
Apr 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions docs/changelog.ptxt
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
OpenMSX 0.4.0
-------------
Change: Restore 'Keep on Rolling' by Trolley Trev
Change: Stop calling OpenMSX a 'replacement'



OpenMSX 0.3.1
-------------
- Change: Add copyright information to build system
Change: Add copyright information to build system

- Fix #1210: Typo in readme.
- Fix #1202: Replace 'Keep on rolling' (temporarily) with 'Big Man Boogie' by Jim Redfarn
- Fix #1078: Let songs set their assumed defaults (editing by Xrufu)
Fix #1210: Typo in readme.
Fix #1202: Replace 'Keep on rolling' (temporarily) with 'Big Man Boogie' by Jim Redfarn
Fix #1078: Let songs set their assumed defaults (editing by Xrufu)



Expand Down
11 changes: 6 additions & 5 deletions findversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ ROOT_DIR=`pwd`
# Determine if we are using a modified version
# Assume the dir is not modified
MODIFIED="0"
if [ -d "$ROOT_DIR/.git" ] || [ -f "$ROOT_DIR/.git" ]; then
if [ -f "$ROOT_DIR/.ottdrev" ]; then
# We are an exported source bundle
cat $ROOT_DIR/.ottdrev
exit

elif [ -d "$ROOT_DIR/.git" ] || [ -f "$ROOT_DIR/.git" ]; then
# We are a git checkout
# Refresh the index to make sure file stat info is in sync, then look for modifications
git update-index --refresh >/dev/null
Expand Down Expand Up @@ -92,10 +97,6 @@ if [ -d "$ROOT_DIR/.git" ] || [ -f "$ROOT_DIR/.git" ]; then
ISSTABLETAG="0"
fi

elif [ -f "$ROOT_DIR/.ottdrev" ]; then
# We are an exported source bundle
cat $ROOT_DIR/.ottdrev
exit
else
# We don't know
MODIFIED="1"
Expand Down