Skip to content

Commit 8a3a18f

Browse files
committed
0.7.0alpha1 bugfixes
1 parent 3993884 commit 8a3a18f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

dist.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
VERSION=0.7.0alpha1
4+
LHA=aqb-${VERSION}.lha
35
WORKDIR=target/m68k-amigaos/dist
46

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

39+
cp -r help ${WORKDIR}/aqb/
40+
3741
pushd ${WORKDIR}
38-
lha a aqb.lha aqb.info aqb
39-
cp aqb.lha /home/guenter/media/emu/amiga/FS-UAE/hdd/system/x/
42+
lha a ${LHA} aqb.info aqb
43+
cp ${LHA} /home/guenter/media/emu/amiga/FS-UAE/hdd/system/x/
4044
popd
4145

4246
#sudo cp -r Fonts/aqb /mnt/amiga/Fonts/

src/compiler/options.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern struct DOSBase *DOSBase;
1313

1414
static char g_pref_fn[PATH_MAX];
1515
static int g_pref_font = 1;
16-
static int g_pref_colorscheme = 1;
16+
static int g_pref_colorscheme = 0;
1717
static int g_opt=0;
1818

1919
void OPT_set(int opt, bool onoff)

src/compiler/ui_amiga.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ static UI_theme_t g_themes[NUM_THEMES] = {
149149
{
150150
"Light",
151151
// TEXT KEYWORD COMMENT INVERSE DIALOG
152-
{ 1, 2, 3, 0, 2 },
153-
{ 0, 0, 0, 1, 0 }
152+
{ 1, 2, 3, 0, 0 },
153+
{ 0, 0, 0, 1, 3 }
154154
},
155155
};
156156

@@ -656,7 +656,7 @@ char *UI_FileReq (char *title)
656656

657657
if (fr = (struct FileRequester *) AllocAslRequestTags(ASL_FileRequest,
658658
ASL_Hail, (ULONG)title,
659-
ASL_Dir, (ULONG)"aqb:",
659+
ASL_Dir, (ULONG)aqb_home,
660660
ASL_File, (ULONG)"",
661661
ASL_Pattern, (ULONG)"#?.bas",
662662
ASL_FuncFlags, FILF_PATGAD,

0 commit comments

Comments
 (0)