Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.

Tags: petabyt/fudge-legacy-android

Tags

0.2.3

Toggle 0.2.3's commit message
Add correct margin for filegallery

0.2.2

Toggle 0.2.2's commit message
remove terminal button

0.2.1

Toggle 0.2.1's commit message
Add flags

0.2.0

Toggle 0.2.0's commit message
Add fix for app_get_wpa2_password

0.1.6

Toggle 0.1.6's commit message
0.1.6 - minor tweaks, viewer bug fix

0.1.5

Toggle 0.1.5's commit message
Different image scaling strategy

I was getting OOM with decodeByteArray on large images, so I'm now giving
it options to scale the output bitmap.
```
options.inSampleSize = 2;
options.inDensity = 2;
options.inTargetDensity = 2;
options.inScaled = true;
```
Android is doing some math between inDensity and inTargetDensity. I don't know exactly what it's doing,
but 2 / 2 looks like it consistently scales the image in half. I've left in my code to to a second scaling pass
of the bitmap in case this doesn't work.

0.1.4

Toggle 0.1.4's commit message
Add some more info to help, remove default zoomable image

0.1.3-2

Toggle 0.1.3-2's commit message
Update camlib

0.1.3

Toggle 0.1.3's commit message
Fix includes in Android.mk

0.1.2

Toggle 0.1.2's commit message
Refactor Backend.print to automatically put newline, other minor twea…

…ks and fixes