diff --git a/Makefile b/Makefile index d8a6758..aef9a30 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE=a2pi -VERSION=0.1.4 +VERSION=0.1.5 DIST=$(PACKAGE)-$(VERSION) DISTDIR=./$(DIST) diff --git a/debian/changelog b/debian/changelog index f77fe12..cdce0c4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +a2pi (0.1.5-1) unstable; urgency=low + + * One more attempt at mouse acceleration, Apple ][/][+ support + + -- David Schmenk Mon, 16 Nov 2013 22:17:40 -0800 + a2pi (0.1.4-2) unstable; urgency=low * Fix postinst to not comment out all T* lines diff --git a/share/A2PI-1.1.PO b/share/A2PI-1.1.PO index 005c74b..ccce4ba 100755 Binary files a/share/A2PI-1.1.PO and b/share/A2PI-1.1.PO differ diff --git a/share/text2merlin.c b/share/text2merlin.c old mode 100644 new mode 100755 index 5369a25..4f2c2b2 --- a/share/text2merlin.c +++ b/share/text2merlin.c @@ -3,22 +3,23 @@ int main(int argc, char **argv) { - int fout; - char c; - - if (argc > 1) - fout = open(argv[1], O_WRONLY|O_CREAT, 0644); - else - fout = 1; - while ((c = getc(stdin)) != EOF) - { - if (c == '\n') - c = '\r'; - if (c == '\t') - c = ' '; - c |= 0x80; - write(fout, &c, 1); - } - close(fout); - return (0); + int cin, fout; + char c; + + if (argc > 1) + fout = open(argv[1], O_WRONLY|O_CREAT, 0644); + else + fout = 1; + while ((cin = getchar()) != EOF) + { + c = cin; + if (c == '\n') + c = '\r'; + if (c == '\t') + c = ' '; + c |= 0x80; + write(fout, &c, 1); + } + close(fout); + return (0); }