Skip to content

Commit

Permalink
0.7.0alpha1 bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gooofy committed Aug 27, 2021
1 parent 3993884 commit 8a3a18f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions dist.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

VERSION=0.7.0alpha1
LHA=aqb-${VERSION}.lha
WORKDIR=target/m68k-amigaos/dist

rm -rf ${WORKDIR}/aqb
Expand Down Expand Up @@ -34,9 +36,11 @@ for EX in examples/demo/*.bas ; do
cp dist/amiga/Icons/`basename $EX`.info ${WORKDIR}/aqb/examples/demo/
done

cp -r help ${WORKDIR}/aqb/

pushd ${WORKDIR}
lha a aqb.lha aqb.info aqb
cp aqb.lha /home/guenter/media/emu/amiga/FS-UAE/hdd/system/x/
lha a ${LHA} aqb.info aqb
cp ${LHA} /home/guenter/media/emu/amiga/FS-UAE/hdd/system/x/
popd

#sudo cp -r Fonts/aqb /mnt/amiga/Fonts/
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ extern struct DOSBase *DOSBase;

static char g_pref_fn[PATH_MAX];
static int g_pref_font = 1;
static int g_pref_colorscheme = 1;
static int g_pref_colorscheme = 0;
static int g_opt=0;

void OPT_set(int opt, bool onoff)
Expand Down
6 changes: 3 additions & 3 deletions src/compiler/ui_amiga.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ static UI_theme_t g_themes[NUM_THEMES] = {
{
"Light",
// TEXT KEYWORD COMMENT INVERSE DIALOG
{ 1, 2, 3, 0, 2 },
{ 0, 0, 0, 1, 0 }
{ 1, 2, 3, 0, 0 },
{ 0, 0, 0, 1, 3 }
},
};

Expand Down Expand Up @@ -656,7 +656,7 @@ char *UI_FileReq (char *title)

if (fr = (struct FileRequester *) AllocAslRequestTags(ASL_FileRequest,
ASL_Hail, (ULONG)title,
ASL_Dir, (ULONG)"aqb:",
ASL_Dir, (ULONG)aqb_home,
ASL_File, (ULONG)"",
ASL_Pattern, (ULONG)"#?.bas",
ASL_FuncFlags, FILF_PATGAD,
Expand Down

0 comments on commit 8a3a18f

Please sign in to comment.