mirror of
https://github.com/mi57730/a2d.git
synced 2025-02-20 02:29:11 +00:00
Tweak release notes and build scripts
This commit is contained in:
parent
dfa87c3f2a
commit
b30ac7bd96
@ -40,12 +40,13 @@
|
|||||||
* SELECTOR.LIST created if missing. (#92)
|
* SELECTOR.LIST created if missing. (#92)
|
||||||
* Position desktop icons based on Slot/Drive assignment. (#94)
|
* Position desktop icons based on Slot/Drive assignment. (#94)
|
||||||
* Don't crash after renaming volume. (#99)
|
* Don't crash after renaming volume. (#99)
|
||||||
|
* Startup menu will include Slot 2. (#106)
|
||||||
* Correct odd behavior for file type $08 (#103)
|
* Correct odd behavior for file type $08 (#103)
|
||||||
* Hardware/Emulator Specific:
|
* Hardware/Emulator Specific:
|
||||||
* IIc Plus: don't spin slot 5 drives constantly. (Use Special > Check Drives) (#25)
|
* IIc Plus: don't spin slot 5 drives constantly. (Use Special > Check Drive) (#25)
|
||||||
* Macintosh LC IIe Option Card: prevent crash. (#93)
|
* Macintosh LC IIe Option Card: don't crash on startup. (#93)
|
||||||
* IIgs: color DHR is re-enabled on exit. (#43)
|
* IIgs: color DHR is re-enabled on exit. (#43)
|
||||||
* IIgs emulators no longer crash on startup. (#85)
|
* KEGS-based IIgs emulators no longer crash on startup. (#85)
|
||||||
|
|
||||||
# 1.1
|
# 1.1
|
||||||
|
|
||||||
|
@ -5,27 +5,5 @@
|
|||||||
set -e
|
set -e
|
||||||
source "../res/util.sh"
|
source "../res/util.sh"
|
||||||
|
|
||||||
function verify {
|
|
||||||
diff "orig/$1" "out/$2" \
|
|
||||||
&& (cecho green "diff $2 good" ) \
|
|
||||||
|| (tput blink ; cecho red "DIFF $2 BAD" ; return 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
function stats {
|
|
||||||
echo "$(printf '%-15s' $1)""$(../res/stats.pl < $1)"
|
|
||||||
}
|
|
||||||
|
|
||||||
#do_make clean
|
#do_make clean
|
||||||
do_make all
|
do_make all
|
||||||
|
|
||||||
SOURCES="ram.system"
|
|
||||||
|
|
||||||
# Verify original and output match
|
|
||||||
echo "Verifying diffs:"
|
|
||||||
verify "RAM.SYSTEM.SYS" "ram.system.SYS"
|
|
||||||
|
|
||||||
# Compute stats
|
|
||||||
echo "Stats:"
|
|
||||||
for t in $SOURCES; do
|
|
||||||
stats "$t.s"
|
|
||||||
done;
|
|
||||||
|
18
res/go.sh
18
res/go.sh
@ -3,22 +3,14 @@
|
|||||||
# Run this from the top level directory
|
# Run this from the top level directory
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
source "res/util.sh"
|
||||||
|
|
||||||
cd desktop.system
|
for i in desktop desk.acc desktop.system ram.system; do
|
||||||
res/go.sh
|
cecho yellow Building: $i
|
||||||
cd ..
|
cd $i
|
||||||
|
|
||||||
cd ram.system
|
|
||||||
res/go.sh
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
cd desktop
|
|
||||||
res/go.sh
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
cd desk.acc
|
|
||||||
res/go.sh
|
res/go.sh
|
||||||
cd ..
|
cd ..
|
||||||
|
done
|
||||||
|
|
||||||
# Mountable directory for Virtual ][
|
# Mountable directory for Virtual ][
|
||||||
if [ -d mount ]; then
|
if [ -d mount ]; then
|
||||||
|
@ -40,3 +40,4 @@ done
|
|||||||
|
|
||||||
mount_f1 "desktop2" "desktop" "mount"
|
mount_f1 "desktop2" "desktop" "mount"
|
||||||
mount_sys "desktop.system" "desktop.system" "mount"
|
mount_sys "desktop.system" "desktop.system" "mount"
|
||||||
|
mount_sys "ram.system" "ram.system" "mount"
|
||||||
|
13
res/unpxmap.pl
Executable file
13
res/unpxmap.pl
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
|
||||||
|
while (<STDIN>) {
|
||||||
|
chomp;
|
||||||
|
next unless m/px\(/i;
|
||||||
|
s/[^01]//g;
|
||||||
|
tr/01/ #/;
|
||||||
|
print $_, "\n";
|
||||||
|
}
|
@ -1,10 +1,10 @@
|
|||||||
function cecho {
|
function cecho {
|
||||||
case $1 in
|
case $1 in
|
||||||
red) tput setaf 1 ;;
|
red) tput setaf 1 ; shift ;;
|
||||||
green) tput setaf 2 ;;
|
green) tput setaf 2 ; shift ;;
|
||||||
yellow) tput setaf 3 ;;
|
yellow) tput setaf 3 ; shift ;;
|
||||||
esac
|
esac
|
||||||
echo -e "$2"
|
echo -e "$@"
|
||||||
tput sgr0
|
tput sgr0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user