File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ VERSION=0.7.0alpha1
4
+ LHA=aqb-${VERSION} .lha
3
5
WORKDIR=target/m68k-amigaos/dist
4
6
5
7
rm -rf ${WORKDIR} /aqb
@@ -34,9 +36,11 @@ for EX in examples/demo/*.bas ; do
34
36
cp dist/amiga/Icons/` basename $EX ` .info ${WORKDIR} /aqb/examples/demo/
35
37
done
36
38
39
+ cp -r help ${WORKDIR} /aqb/
40
+
37
41
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/
40
44
popd
41
45
42
46
# sudo cp -r Fonts/aqb /mnt/amiga/Fonts/
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ extern struct DOSBase *DOSBase;
13
13
14
14
static char g_pref_fn [PATH_MAX ];
15
15
static int g_pref_font = 1 ;
16
- static int g_pref_colorscheme = 1 ;
16
+ static int g_pref_colorscheme = 0 ;
17
17
static int g_opt = 0 ;
18
18
19
19
void OPT_set (int opt , bool onoff )
Original file line number Diff line number Diff line change @@ -149,8 +149,8 @@ static UI_theme_t g_themes[NUM_THEMES] = {
149
149
{
150
150
"Light" ,
151
151
// 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 }
154
154
},
155
155
};
156
156
@@ -656,7 +656,7 @@ char *UI_FileReq (char *title)
656
656
657
657
if (fr = (struct FileRequester * ) AllocAslRequestTags (ASL_FileRequest ,
658
658
ASL_Hail , (ULONG )title ,
659
- ASL_Dir , (ULONG )"aqb:" ,
659
+ ASL_Dir , (ULONG )aqb_home ,
660
660
ASL_File , (ULONG )"" ,
661
661
ASL_Pattern , (ULONG )"#?.bas" ,
662
662
ASL_FuncFlags , FILF_PATGAD ,
You can’t perform that action at this time.
0 commit comments