9front - general discussion about 9front
 help / color / mirror / Atom feed
* [9front] android drawterm build
@ 2022-01-29 15:59 Eli Cohen
  2022-01-29 16:03 ` [9front] " Eli Cohen
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Cohen @ 2022-01-29 15:59 UTC (permalink / raw)
  To: 9front

for android drawterm to build, it needs this change to the Makefile
clean target:

-       rm -f *.o */*.o */*.a *.a drawterm drawterm.exe
+       rm -f *.o */*.o */*/*.o */*.a *.a drawterm drawterm.exe

because the libgui object files are nested that deep

it also really needs all of these files to build:

#       new file:   gui-android/bin/.keep
#       new file:   gui-android/gen/.keep
#       new file:   gui-android/obj/.keep
#       new file:   gui-android/res/drawable-hdpi/ic_small.png
#       new file:   gui-android/res/drawable-mdpi/ic_small.png
#       new file:   gui-android/res/drawable-xhdpi/ic_small.png
#       new file:   gui-android/res/drawable-xxhdpi/ic_small.png
#       new file:   gui-android/res/drawable-xxxhdpi/ic_small.png
#       new file:   gui-android/res/mipmap-hdpi/ic_launcher.png
#       new file:   gui-android/res/mipmap-mdpi/ic_launcher.png
#       new file:   gui-android/res/mipmap-xhdpi/ic_launcher.png
#       new file:   gui-android/res/mipmap-xxhdpi/ic_launcher.png
#       new file:   gui-android/res/mipmap-xxxhdpi/ic_launcher.png
#       new file:   lib/arm64-v8a/.keep
#       new file:   lib/armeabi-v7a/.keep
#       new file:   lib/x86/.keep
#       new file:   lib/x86_64/.keep

those might not have made it onto my github before I was locked out by
the concept of passwords being obsoleted

another thought, I will try to get to this, of having a separate
config file for android build paths with all the long toolchain names
would probably be nice

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [9front] Re: android drawterm build
  2022-01-29 15:59 [9front] android drawterm build Eli Cohen
@ 2022-01-29 16:03 ` Eli Cohen
  2022-01-29 16:06   ` Eli Cohen
  2022-01-30 15:11   ` ori
  0 siblings, 2 replies; 5+ messages in thread
From: Eli Cohen @ 2022-01-29 16:03 UTC (permalink / raw)
  To: 9front

I don't know of a way to send a patch that includes .png files... I've
edited all the little tuttle icons to the right size etc...

On Sat, Jan 29, 2022 at 7:59 AM Eli Cohen <echoline@gmail.com> wrote:
>
> for android drawterm to build, it needs this change to the Makefile
> clean target:
>
> -       rm -f *.o */*.o */*.a *.a drawterm drawterm.exe
> +       rm -f *.o */*.o */*/*.o */*.a *.a drawterm drawterm.exe
>
> because the libgui object files are nested that deep
>
> it also really needs all of these files to build:
>
> #       new file:   gui-android/bin/.keep
> #       new file:   gui-android/gen/.keep
> #       new file:   gui-android/obj/.keep
> #       new file:   gui-android/res/drawable-hdpi/ic_small.png
> #       new file:   gui-android/res/drawable-mdpi/ic_small.png
> #       new file:   gui-android/res/drawable-xhdpi/ic_small.png
> #       new file:   gui-android/res/drawable-xxhdpi/ic_small.png
> #       new file:   gui-android/res/drawable-xxxhdpi/ic_small.png
> #       new file:   gui-android/res/mipmap-hdpi/ic_launcher.png
> #       new file:   gui-android/res/mipmap-mdpi/ic_launcher.png
> #       new file:   gui-android/res/mipmap-xhdpi/ic_launcher.png
> #       new file:   gui-android/res/mipmap-xxhdpi/ic_launcher.png
> #       new file:   gui-android/res/mipmap-xxxhdpi/ic_launcher.png
> #       new file:   lib/arm64-v8a/.keep
> #       new file:   lib/armeabi-v7a/.keep
> #       new file:   lib/x86/.keep
> #       new file:   lib/x86_64/.keep
>
> those might not have made it onto my github before I was locked out by
> the concept of passwords being obsoleted
>
> another thought, I will try to get to this, of having a separate
> config file for android build paths with all the long toolchain names
> would probably be nice

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [9front] Re: android drawterm build
  2022-01-29 16:03 ` [9front] " Eli Cohen
@ 2022-01-29 16:06   ` Eli Cohen
  2022-01-30 15:11   ` ori
  1 sibling, 0 replies; 5+ messages in thread
From: Eli Cohen @ 2022-01-29 16:06 UTC (permalink / raw)
  To: 9front

as in:

drawable-hdpi/ic_small.png:     PNG image data, 36 x 36, 8-bit
gray+alpha, non-interlaced
drawable-mdpi/ic_small.png:     PNG image data, 24 x 24, 8-bit
gray+alpha, non-interlaced
drawable-xhdpi/ic_small.png:    PNG image data, 48 x 48, 8-bit
gray+alpha, non-interlaced
drawable-xxhdpi/ic_small.png:   PNG image data, 72 x 72, 8-bit
gray+alpha, non-interlaced
drawable-xxxhdpi/ic_small.png:  PNG image data, 96 x 96, 8-bit
gray+alpha, non-interlaced
mipmap-hdpi/ic_launcher.png:    PNG image data, 72 x 72, 8-bit
gray+alpha, non-interlaced
mipmap-mdpi/ic_launcher.png:    PNG image data, 48 x 48, 8-bit
gray+alpha, non-interlaced
mipmap-xhdpi/ic_launcher.png:   PNG image data, 96 x 96, 8-bit
gray+alpha, non-interlaced
mipmap-xxhdpi/ic_launcher.png:  PNG image data, 144 x 144, 8-bit
gray+alpha, non-interlaced
mipmap-xxxhdpi/ic_launcher.png: PNG image data, 192 x 192, 8-bit
gray+alpha, non-interlaced

I found all the ic_small.png files worked best on my phone by first
inverting black and white then setting black to be transparent.

I started all of them from the glenda-t.ico file


On Sat, Jan 29, 2022 at 8:03 AM Eli Cohen <echoline@gmail.com> wrote:
>
> I don't know of a way to send a patch that includes .png files... I've
> edited all the little tuttle icons to the right size etc...
>
> On Sat, Jan 29, 2022 at 7:59 AM Eli Cohen <echoline@gmail.com> wrote:
> >
> > for android drawterm to build, it needs this change to the Makefile
> > clean target:
> >
> > -       rm -f *.o */*.o */*.a *.a drawterm drawterm.exe
> > +       rm -f *.o */*.o */*/*.o */*.a *.a drawterm drawterm.exe
> >
> > because the libgui object files are nested that deep
> >
> > it also really needs all of these files to build:
> >
> > #       new file:   gui-android/bin/.keep
> > #       new file:   gui-android/gen/.keep
> > #       new file:   gui-android/obj/.keep
> > #       new file:   gui-android/res/drawable-hdpi/ic_small.png
> > #       new file:   gui-android/res/drawable-mdpi/ic_small.png
> > #       new file:   gui-android/res/drawable-xhdpi/ic_small.png
> > #       new file:   gui-android/res/drawable-xxhdpi/ic_small.png
> > #       new file:   gui-android/res/drawable-xxxhdpi/ic_small.png
> > #       new file:   gui-android/res/mipmap-hdpi/ic_launcher.png
> > #       new file:   gui-android/res/mipmap-mdpi/ic_launcher.png
> > #       new file:   gui-android/res/mipmap-xhdpi/ic_launcher.png
> > #       new file:   gui-android/res/mipmap-xxhdpi/ic_launcher.png
> > #       new file:   gui-android/res/mipmap-xxxhdpi/ic_launcher.png
> > #       new file:   lib/arm64-v8a/.keep
> > #       new file:   lib/armeabi-v7a/.keep
> > #       new file:   lib/x86/.keep
> > #       new file:   lib/x86_64/.keep
> >
> > those might not have made it onto my github before I was locked out by
> > the concept of passwords being obsoleted
> >
> > another thought, I will try to get to this, of having a separate
> > config file for android build paths with all the long toolchain names
> > would probably be nice

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9front] Re: android drawterm build
  2022-01-29 16:03 ` [9front] " Eli Cohen
  2022-01-29 16:06   ` Eli Cohen
@ 2022-01-30 15:11   ` ori
  2022-01-31  2:02     ` Eli Cohen
  1 sibling, 1 reply; 5+ messages in thread
From: ori @ 2022-01-30 15:11 UTC (permalink / raw)
  To: 9front

Quoth Eli Cohen <echoline@gmail.com>:
> I don't know of a way to send a patch that includes .png files... I've
> edited all the little tuttle icons to the right size etc...

Two options:

1) add them as a tarball
2) point to a git repo that someone can pull from.

I don't think we've got a great way to attach
binary patches otherwise.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9front] Re: android drawterm build
  2022-01-30 15:11   ` ori
@ 2022-01-31  2:02     ` Eli Cohen
  0 siblings, 0 replies; 5+ messages in thread
From: Eli Cohen @ 2022-01-31  2:02 UTC (permalink / raw)
  To: 9front

I put them up on shithub http://shithub.us/echoline/drawterm/HEAD/info.html

the alsa devaudio changes are unrelated

On Sun, Jan 30, 2022 at 12:14 PM <ori@eigenstate.org> wrote:
>
> Quoth Eli Cohen <echoline@gmail.com>:
> > I don't know of a way to send a patch that includes .png files... I've
> > edited all the little tuttle icons to the right size etc...
>
> Two options:
>
> 1) add them as a tarball
> 2) point to a git repo that someone can pull from.
>
> I don't think we've got a great way to attach
> binary patches otherwise.
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-31  7:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-29 15:59 [9front] android drawterm build Eli Cohen
2022-01-29 16:03 ` [9front] " Eli Cohen
2022-01-29 16:06   ` Eli Cohen
2022-01-30 15:11   ` ori
2022-01-31  2:02     ` Eli Cohen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).