{"id":15374842,"url":"https://github.com/com8/aps-ui","last_synced_at":"2026-02-28T05:33:05.339Z","repository":{"id":159855920,"uuid":"624551112","full_name":"COM8/aps-ui","owner":"COM8","description":"GTK4 Based UI for Stats all Around AP Sensing in Böblingen using a Raspberry Pi. ","archived":false,"fork":false,"pushed_at":"2025-11-20T13:55:27.000Z","size":496,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-20T15:28:26.976Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/COM8.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-06T18:13:01.000Z","updated_at":"2025-11-20T13:55:31.000Z","dependencies_parsed_at":"2023-05-25T02:15:09.949Z","dependency_job_id":"761ccfd6-3de4-49ed-8723-1ee061f3739a","html_url":"https://github.com/COM8/aps-ui","commit_stats":{"total_commits":69,"total_committers":2,"mean_commits":34.5,"dds":"0.14492753623188404","last_synced_commit":"7d90ae0671142810b38a885f2021e331839fd97b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/COM8/aps-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/COM8%2Faps-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/COM8%2Faps-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/COM8%2Faps-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/COM8%2Faps-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/COM8","download_url":"https://codeload.github.com/COM8/aps-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/COM8%2Faps-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29925683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T13:59:52.788Z","updated_at":"2026-02-28T05:33:05.334Z","avatar_url":"https://github.com/COM8.png","language":"C++","readme":"# Aps-UI\n\nGTK4 Based UI for Stats all Around AP Sensing in Böblingen using a Raspberry Pi.\n\n## Examples\n\n![Overview in dark mode](images/overview_dark.png)\n\n## Building\n\n### Requirements\n\n#### Fedora\n\n```\nsudo dnf install gtkmm4.0-devel libepoxy-devel libadwaita-devel libcurl-devel g++ clang cmake git protobuf-c-devel\nsudo dnf install libsoup3-devel sqlite-devel ninja-build meson libunistring-devel json-glib-devel gperf\n```\n\n### Building\n\n```\ngit clone https://github.com/COM8/aps-ui.git\ncd aps-ui\nmkdir build\ncd build\ncmake ..\ncmake --build .\n```\n\n## Flatpak\n\nThe aps-ui can be built and installed using Flatpak.\n\n### Requirements\n\n#### Fedora\n\n```\nsudo dnf install flatpak flatpak-builder\nflatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo\nflatpak install -y flathub runtime/org.gnome.Sdk/$(arch)/47 runtime/org.gnome.Platform/$(arch)/47\n```\n\n#### Debian/Ubuntu\n\n```\nsudo apt install flatpak flatpak-builder\nflatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo\nflatpak install -y flathub runtime/org.gnome.Sdk/$(arch)/47 runtime/org.gnome.Platform/$(arch)/47\n```\n\n### Building\n\nAdd `--jobs=1` to the `flatpak-builder` command when building on a Raspberry Pi to prevent running out of RAM.\n\n```\ngit clone https://github.com/COM8/aps-ui.git\ncd aps-ui\nflatpak-builder --force-clean flatpak_build_dir de.aps_ui.cli.yml\n```\n\n### Installing\n\n```\nflatpak-builder --user --install --force-clean flatpak_build_dir de.aps_ui.cli.yml\n```\n\n### Cross-Compiling\n\nIn case you would like to cross-compile for the Raspberry Pi (aarch64), this can be done as follows:\n\n```\nsudo dnf install qemu-system-arm qemu-user-static\nsudo systemctl restart systemd-binfmt.service\n\nflatpak install flathub runtime/org.gnome.Sdk/aarch64/47 runtime/org.gnome.Platform/aarch64/47\nflatpak-builder --arch=aarch64 --repo=repo --force-clean flatpak_build_dir de.aps_ui.cli.yml\nflatpak build-bundle --arch=aarch64 ./repo/ de.aps_ui.cli.flatpak de.aps_ui.cli\n\n# Copy the \"repo\" dir to the target system\nflatpak --user remote-add --no-gpg-verify aps-ui-repo repo\nflatpak --user install aps-ui-repo de.aps_ui.cli\n```\n\n### Uninstalling\n\n```\nflatpak uninstall de.aps_ui.cli\n```\n\n### Executing\n\n```\nflatpak run de.aps_ui.cli\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcom8%2Faps-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcom8%2Faps-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcom8%2Faps-ui/lists"}