Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8912a08
Merge pull request #11 from aromadev/master
amarullz Jan 21, 2016
82524a6
Initial commit from new source
amarullz Apr 8, 2022
7957ac8
Cleanup binary from tools
amarullz Apr 8, 2022
b664306
Add gitignore for tools win32
amarullz Apr 8, 2022
3f8a3b1
Merge branch 'master' into master
amarullz Apr 8, 2022
8babaeb
text_common: fix font mutex locking
MLXProjects Apr 9, 2022
2c27725
Merge pull request #15 from MLXProjects/patch-1
amarullz Apr 9, 2022
4ef6a3c
New Build Environment - Multi Arch
amarullz Apr 9, 2022
b6a0611
No clear message & double tabs text
amarullz Apr 12, 2022
dcac96c
Add libaroma_ctl_image_mode for scale mode
amarullz Apr 12, 2022
78b8755
Fix no-scale flag for control image scale mode
amarullz Apr 12, 2022
10925a1
Add progress hide
amarullz Apr 20, 2022
05301e8
Fix restart hid, add wm thread delay variables
amarullz Jun 30, 2022
7c0b9e2
fb: fix non-fullscreen framebuffer update
MLXProjects Jul 11, 2022
0cbd6da
Merge pull request #16 from MLXProjects/patch-3
amarullz Jul 13, 2022
d843d61
Fix hid change devices
amarullz Oct 26, 2022
b537477
Merge branch 'master' of github.com:amarullz/libaroma
amarullz Oct 26, 2022
9f01240
Update libaroma_jpeg_draw to support non-resize
amarullz Dec 12, 2022
d60c0c9
Add JCS_RGB565 for jpeg-turbo decompress
amarullz Dec 15, 2022
cdbe584
JPEG: use jpeg_read_scanlines directly for rgb565
amarullz Dec 15, 2022
328823f
Add enabled sync function
amarullz Jan 18, 2024
4a1bd38
Add post message unshift
amarullz Sep 23, 2024
7d8bf16
Fix libaroma_msg_post call libaroma_msg_post_ex
amarullz Sep 23, 2024
4061936
utils/array: keep double linked lists consistent & fix find faster loop
MLXProjects Feb 28, 2025
c3e47a2
Merge pull request #17 from MLXProjects/patch-1
amarullz Apr 1, 2025
796025b
add dynamic fb & hid driver
amarullz May 16, 2025
1b94f42
Merge branch 'master' of github.com:amarullz/libaroma
amarullz May 16, 2025
46aff76
allow no input devicve to continue libaroma start
amarullz Oct 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt

/build
/build/armv7
/build/aarch64
/build/x86_64
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.minimap.enabled": true,
"editor.rulers": [
80,
120
],
"C_Cpp.errorSquiggles": "Disabled"
}
65 changes: 65 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build-Libaroma",
"type": "shell",
"command": "bash ./build.sh",
"options": {
"cwd": "${workspaceRoot}"
},
"presentation": {
"focus": true,
"clear": true
}
},
{
"label": "Clean-Build-Libaroma",
"type": "shell",
"command": "bash ./build.sh clean",
"options": {
"cwd": "${workspaceRoot}"
},
"presentation": {
"focus": true,
"clear": true
}
},
{
"label": "Build-Libaroma-x86_64",
"type": "shell",
"command": "bash ./build.sh x86_64",
"options": {
"cwd": "${workspaceRoot}"
},
"presentation": {
"focus": true,
"clear": true
}
},
{
"label": "Build-Libaroma-aarch64",
"type": "shell",
"command": "bash ./build.sh aarch64",
"options": {
"cwd": "${workspaceRoot}"
},
"presentation": {
"focus": true,
"clear": true
}
},
{
"label": "Build-Libaroma-armv7",
"type": "shell",
"command": "bash ./build.sh armv7",
"options": {
"cwd": "${workspaceRoot}"
},
"presentation": {
"focus": true,
"clear": true
}
}
]
}
177 changes: 0 additions & 177 deletions Android.mk

This file was deleted.

Loading