Skip to content

Commit 9423986

Browse files
authored
Merge pull request #340 from wwarthen/dev
Dev
2 parents bbaf2b0 + 2681b84 commit 9423986

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+3227
-766
lines changed

Diff for: .github/workflows/commit.yml

+15-10
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,18 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- name: Make Slugs
17-
uses: rlespinasse/[email protected]
18-
1916
- name: Checkout
2017
uses: actions/[email protected]
2118

19+
- name: Get Commit Ref
20+
run: |
21+
COMMIT_REF=$(git rev-parse --short $GITHUB_SHA)
22+
echo "COMMIT_REF: $COMMIT_REF"
23+
echo "COMMIT_REF=$COMMIT_REF" >>$GITHUB_ENV
24+
2225
- name: Build
2326
run: |
2427
export TZ='America/Los_Angeles'
25-
sudo apt-get install libncurses-dev
2628
sudo apt-get install srecord
2729
make dist
2830
rm -rf .git*
@@ -36,19 +38,22 @@ jobs:
3638
- name: Upload Artifact
3739
uses: actions/[email protected]
3840
with:
39-
name: RomWBW-${{env.GITHUB_SHA_SHORT}}-Linux
41+
name: RomWBW-${{env.COMMIT_REF}}-Linux
4042
path: .
4143

4244
buildMacOS:
4345
runs-on: macOS-latest
4446

4547
steps:
46-
- name: Make Slugs
47-
uses: rlespinasse/[email protected]
48-
4948
- name: Checkout
5049
uses: actions/[email protected]
5150

51+
- name: Get Commit Ref
52+
run: |
53+
COMMIT_REF=$(git rev-parse --short $GITHUB_SHA)
54+
echo "COMMIT_REF: $COMMIT_REF"
55+
echo "COMMIT_REF=$COMMIT_REF" >>$GITHUB_ENV
56+
5257
- name: Build
5358
run: |
5459
export TZ='America/Los_Angeles'
@@ -65,5 +70,5 @@ jobs:
6570
- name: Upload Artifact
6671
uses: actions/[email protected]
6772
with:
68-
name: RomWBW-${{env.GITHUB_SHA_SHORT}}-MacOS
69-
path: .
73+
name: RomWBW-${{env.COMMIT_REF}}-MacOS
74+
path: .

Diff for: .github/workflows/release.yml

+21-15
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,6 @@ jobs:
1414
- name: Checkout
1515
uses: actions/[email protected]
1616

17-
- name: Create Package Label
18-
run: |
19-
echo GITHUB_REF: "$GITHUB_REF"
20-
LABEL=`echo "$GITHUB_REF" | sed "s|^refs/tags/||"`
21-
echo "PKGLBL=$LABEL" >> $GITHUB_ENV
22-
echo PKGLBL: "$PKGLBL"
23-
echo Upload URL: "${{github.event.release.upload_url}}"
24-
echo GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"
25-
2617
- name: Build
2718
run: |
2819
export TZ='America/Los_Angeles'
@@ -33,22 +24,37 @@ jobs:
3324
3425
- name: Create Package Archive
3526
run: |
36-
zip -r RomWBW-${{env.PKGLBL}}-Package.zip .
27+
zip -r RomWBW-${{github.ref_name}}-Package.zip .
28+
29+
- name: Set Title
30+
run: |
31+
echo "Tag: ${{github.ref_name}}"
32+
if grep -q "dev" <<< "${{github.ref_name}}"; then
33+
TITLE="RomWBW Development Snapshot"
34+
elif grep -q "pre" <<< "${{github.ref_name}}"; then
35+
TITLE="RomWBW Prerelease"
36+
elif grep -q "rc" <<< "${{github.ref_name}}"; then
37+
TITLE="RomWBW Release Candidate"
38+
else
39+
TITLE="RomWBW"
40+
fi
41+
echo "Title: $TITLE"
42+
echo "TITLE=$TITLE" >>$GITHUB_ENV
3743
3844
- name: Attach Package Archive
3945
uses: wwarthen/actions/packages/automatic-releases@built-packages
4046
with:
41-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
47+
repo_token: "${{secrets.GITHUB_TOKEN}}"
4248
draft: true
4349
prerelease: true
44-
title: "RomWBW Development SnapShot ${{env.PKGLBL}}"
50+
title: "${{env.TITLE}} ${{github.ref_name}}"
4551
files: |
46-
RomWBW-${{env.PKGLBL}}-Package.zip
52+
RomWBW-${{github.ref_name}}-Package.zip
4753
4854
# - name: Upload Package Archive
4955
# uses: AButler/[email protected]
5056
# with:
51-
# repo-token: ${{ secrets.GITHUB_TOKEN }}
57+
# repo-token: ${{secrets.github_token}}
5258
# files: |
5359
# RomWBW-${{env.PKGLBL}}-Package.zip
5460

@@ -57,7 +63,7 @@ jobs:
5763
# uses: docker://antonyurchenko/git-release:latest
5864
# env:
5965
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60-
# RELEASE_NAME_PREFIX: "Development SnapShot Release "
66+
# RELEASE_NAME_PREFIX: "${{env.TITLE}} "
6167
# CHANGELOG_FILE: "none"
6268
# with:
6369
# args: |

Diff for: Doc/ChangeLog.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 3.2.1
2+
-------------
3+
- M?P: Fixed Zeta 2 FDD and CPUSPD config settings
4+
- WBW: Fixed SURVEY.COM (again)
5+
- DDW: Updates to DOS/65 binaries in disk images
6+
- PMS: Updates to VGMPLAY including support for YM2151
7+
- WBW: Fix for quark delay adjustment being trashed
8+
19
Version 3.2
210
-----------
311
- WBW: Version bump for release

Diff for: Doc/RomWBW Applications.pdf

9.74 KB
Binary file not shown.

Diff for: Doc/RomWBW Disk Catalog.pdf

-1 Bytes
Binary file not shown.

Diff for: Doc/RomWBW Errata.pdf

85 Bytes
Binary file not shown.

Diff for: Doc/RomWBW ROM Applications.pdf

1 Byte
Binary file not shown.

Diff for: Doc/RomWBW System Guide.pdf

-1 Bytes
Binary file not shown.

Diff for: Doc/RomWBW User Guide.pdf

-71 Bytes
Binary file not shown.

Diff for: ReadMe.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22

33
**RomWBW ReadMe** \
4-
Version 3.2 \
4+
Version 3.2.1 \
55
Wayne Warthen ([[email protected]](mailto:[email protected])) \
6-
18 Mar 2023
6+
07 Apr 2023
77

88
# Overview
99

@@ -102,22 +102,22 @@ functionality.
102102

103103
Complete instructions for installation and operation of RomWBW are found
104104
in the [RomWBW User
105-
Guide](https://github.com/wwarthen/RomWBW/raw/master/Doc/RomWBW%20User%20Guide.pdf).
105+
Guide](https://github.com/wwarthen/RomWBW/raw/dev/Doc/RomWBW%20User%20Guide.pdf).
106106

107107
## Documentation
108108

109109
Documentation for RomWBW includes:
110110

111111
- [RomWBW User
112-
Guide](https://github.com/wwarthen/RomWBW/raw/master/Doc/RomWBW%20User%20Guide.pdf)
112+
Guide](https://github.com/wwarthen/RomWBW/raw/dev/Doc/RomWBW%20User%20Guide.pdf)
113113
- [RomWBW System
114-
Guide](https://github.com/wwarthen/RomWBW/raw/master/Doc/RomWBW%20System%20Guide.pdf)
114+
Guide](https://github.com/wwarthen/RomWBW/raw/dev/Doc/RomWBW%20System%20Guide.pdf)
115115
- [RomWBW
116-
Applications](https://github.com/wwarthen/RomWBW/raw/master/Doc/RomWBW%20Applications.pdf)
116+
Applications](https://github.com/wwarthen/RomWBW/raw/dev/Doc/RomWBW%20Applications.pdf)
117117
- [RomWBW ROM
118-
Applications](https://github.com/wwarthen/RomWBW/raw/master/Doc/RomWBW%20ROM%20Applications.pdf)
118+
Applications](https://github.com/wwarthen/RomWBW/raw/dev/Doc/RomWBW%20ROM%20Applications.pdf)
119119
- [RomWBW
120-
Errata](https://github.com/wwarthen/RomWBW/raw/master/Doc/RomWBW%20Errata.pdf)
120+
Errata](https://github.com/wwarthen/RomWBW/raw/dev/Doc/RomWBW%20Errata.pdf)
121121

122122
# Acknowledgments
123123

Diff for: ReadMe.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
RomWBW ReadMe
22
Wayne Warthen ([email protected])
3-
18 Mar 2023
3+
07 Apr 2023
44

55

66

0 commit comments

Comments
 (0)