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

V5.6.0 #60

Merged
merged 48 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
5cd97f3
1) remove loglevel in zmodem code (use main log level)
dmcoles Nov 10, 2022
48c98a0
check in missed files with changes relating to tracking uploads/downl…
dmcoles Dec 8, 2022
e7027f2
1. record users last login IP
dmcoles Apr 4, 2023
3683479
Express:
dmcoles May 2, 2023
e748f8c
1) Change default password encryption to legacy to allow downgrade ca…
dmcoles Jun 6, 2023
9252cc4
1) Allow SM_ mci command in all mci text
dmcoles Jun 6, 2023
38d7f7d
Express
dmcoles Jun 30, 2023
df9be8b
add MUI based setup tool
dmcoles Aug 9, 2023
70bbe69
setup tool:
dmcoles Aug 16, 2023
8508c32
setup tool changes
dmcoles Aug 21, 2023
d6f06be
Setup Tool
dmcoles Aug 22, 2023
895c73c
Add installer script
dmcoles Aug 22, 2023
cabb8b8
convert easyrequestargs calls to mui requesters
dmcoles Aug 23, 2023
d2ac1e3
add tools to setup editor (start/stop bbs)
dmcoles Aug 24, 2023
01e36e4
add checks for initial install to display settings page
dmcoles Aug 30, 2023
d2f6b7b
setup editor
dmcoles Sep 1, 2023
5106d18
ACP
dmcoles Sep 1, 2023
4e04f82
Express
dmcoles Sep 1, 2023
c1b2b74
setup tool
dmcoles Sep 7, 2023
df09309
1) Fix line terminators in makefile
dmcoles Sep 7, 2023
9fd85ec
setup tool
dmcoles Sep 8, 2023
d292582
makefile again
dmcoles Sep 8, 2023
377e7f1
Setup Editor - fix button typo
dmcoles Sep 8, 2023
41fde0e
prepare makefile for automated builds
dmcoles Sep 12, 2023
bb552bb
Merge pull request #59 from dmcoles/master
dmcoles Sep 12, 2023
c95741c
Update makefile.yml
dmcoles Sep 12, 2023
81b215e
Update makefile.yml
dmcoles Sep 12, 2023
4bc014a
Update makefile.yml
dmcoles Sep 12, 2023
cbf472a
Update makefile.yml
dmcoles Sep 12, 2023
8d5aaf8
Update makefile.yml
dmcoles Sep 12, 2023
099569f
Update makefile.yml
dmcoles Sep 12, 2023
f24dfc5
Update makefile.yml
dmcoles Sep 12, 2023
ae7b5f5
Update makefile.yml
dmcoles Sep 12, 2023
5dd31d0
update makefile to be able to prepare a dist folder and add necessary…
dmcoles Sep 13, 2023
071b86c
Update makefile.yml
dmcoles Sep 13, 2023
50956cc
Add in the v5.6.0 password security settings to the config editor
dmcoles Oct 12, 2023
894837f
ACP
dmcoles Oct 12, 2023
b8c658b
Express
dmcoles Nov 4, 2023
f860c8d
extra checking to prevent users from logging onto mode than 1 node at…
dmcoles Nov 27, 2023
7278ad6
remove debug messages from setup tool
dmcoles Dec 12, 2023
d660a2c
update installer with options to set encryption
dmcoles Dec 29, 2023
9b41fa2
update file id and read_me for v5.6.0
dmcoles Dec 30, 2023
16cd0cd
makefile: update version info and create lha archive
dmcoles Dec 30, 2023
059be0a
updates to installer script
dmcoles Jan 2, 2024
c821890
update version of lha in default bbs install, include installer binary
dmcoles Jan 2, 2024
d787e0e
installer: exclude qwk.cfg when upgrading
dmcoles Jan 2, 2024
7396361
add license info to README.md
dmcoles Jan 2, 2024
3c95eaf
remove ftn.cfg from upgraded files in installer
dmcoles Jan 2, 2024
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
28 changes: 17 additions & 11 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,29 @@ jobs:
- uses: actions/checkout@v4
- name: run build
run: |
vamos -c /usr/amiga/.vamosrc --cwd esource: -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make
vamos -c /usr/amiga/.vamosrc --cwd esource:axSetupTool -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make
vamos -c /usr/amiga/.vamosrc --cwd esource: -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make build=release
vamos -c /usr/amiga/.vamosrc --cwd esource:axSetupTool -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make build=release

- name: add build artifacts to publish
run: |
apk add lha
mkdir downloads
mkdir downloads/utils
cp $GITHUB_WORKSPACE/express5 downloads
cp $GITHUB_WORKSPACE/acp downloads
cp $GITHUB_WORKSPACE/jsonimport downloads/utils
cp $GITHUB_WORKSPACE/ACP downloads
cp $GITHUB_WORKSPACE/jsonImport downloads/utils
cp $GITHUB_WORKSPACE/icon2cfg downloads/utils
cp $GITHUB_WORKSPACE/qwk downloads/utils
cp $GITHUB_WORKSPACE/ftn downloads/utils
cp $GITHUB_WORKSPACE/axSetupTool/axSetupTool downloads/utils

- name: Use the Upload Artifact GitHub Action
uses: actions/upload-artifact@v2
with:
name: amiExpress-nightly${{ github.sha }}
path: downloads
cp $GITHUB_WORKSPACE/axSetupTool/axSetupTool downloads/utils
cd downloads
lha a ../amiExpress-nightly${{ github.sha }}.lha *
ls ../

- name: Update nightly release
uses: pyTooling/Actions/releaser@main
with:
tag: dev-build
rm: true
token: ${{ secrets.GITHUB_TOKEN }}
files: amiExpress-nightly${{ github.sha }}.lha
Loading