From d1fb5cd02bd26fdd78b45f55743eec21ffd2f921 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 25 Apr 2021 16:29:49 -0700 Subject: [PATCH 1/5] Update changelog --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index b021869..faa9748 100755 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +a2pi (0.2.2-4) unstable; urgency=low + + * A2Pi 6.5 updates + + -- David Schmenk Sun, 25 Apr 2021 13:44:30 -0800 + a2pi (0.2.2-3) unstable; urgency=low * First Stretch release From 684af54c436d2014a9cfae076d7314d419557e70 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 9 May 2021 12:15:13 -0700 Subject: [PATCH 2/5] flush writes --- src/a2pid.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/a2pid.c b/src/a2pid.c index 59cdce8..a3c07b7 100755 --- a/src/a2pid.c +++ b/src/a2pid.c @@ -183,6 +183,8 @@ int vdrvwrite(int afd, int drive, int block) lseek(vfd, block * 512, 0); if (write(vfd, block_buff, 512) != 512) err = 0x27; /* ProDOS I/O error */ + else + fsync(vfd); } else err = 0x28; /* ProDOS No device connected error */ From 6db993c08400471cbbbeb53d64601c3f58e1f5dc Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 9 May 2021 12:19:17 -0700 Subject: [PATCH 3/5] flush writes to pidrives --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index faa9748..7e70c7b 100755 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +a2pi (0.2.2-5) unstable; urgency=medium + + * Flush writes to piDrives + + -- David Schmenk Sun, 9 May 2021 12:28:00 -0800 + a2pi (0.2.2-4) unstable; urgency=low * A2Pi 6.5 updates From cad052beff3a40b7a1db62cac8e4501aca0edaeb Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 9 May 2021 19:07:00 -0700 Subject: [PATCH 4/5] Version update --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e08225e..59edbc8 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE=a2pi -VERSION=0.2.2 +VERSION=0.2.3 DIST=$(PACKAGE)-$(VERSION) DISTDIR=./$(DIST) From 0686988112de5bfcc5410541e27e3358cfed795b Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 9 May 2021 19:08:17 -0700 Subject: [PATCH 5/5] version updates --- debian/changelog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7e70c7b..48b33e9 100755 --- a/debian/changelog +++ b/debian/changelog @@ -1,16 +1,16 @@ -a2pi (0.2.2-5) unstable; urgency=medium +a2pi (0.2.3-5) unstable; urgency=medium * Flush writes to piDrives -- David Schmenk Sun, 9 May 2021 12:28:00 -0800 -a2pi (0.2.2-4) unstable; urgency=low +a2pi (0.2.3-4) unstable; urgency=low * A2Pi 6.5 updates -- David Schmenk Sun, 25 Apr 2021 13:44:30 -0800 -a2pi (0.2.2-3) unstable; urgency=low +a2pi (0.2.3-3) unstable; urgency=low * First Stretch release