{"id":50999982,"url":"https://github.com/ifilot/plat-lang-ide","last_synced_at":"2026-06-20T13:31:33.351Z","repository":{"id":356990550,"uuid":"1234351750","full_name":"ifilot/plat-lang-ide","owner":"ifilot","description":"Integrated Desktop Environment for the plat-lang interpreter","archived":false,"fork":false,"pushed_at":"2026-05-10T19:27:52.000Z","size":366,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-10T21:18:30.831Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ifilot.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":"2026-05-10T04:20:55.000Z","updated_at":"2026-05-10T19:27:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ifilot/plat-lang-ide","commit_stats":null,"previous_names":["ifilot/plat-lang-ide"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ifilot/plat-lang-ide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifilot%2Fplat-lang-ide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifilot%2Fplat-lang-ide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifilot%2Fplat-lang-ide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifilot%2Fplat-lang-ide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ifilot","download_url":"https://codeload.github.com/ifilot/plat-lang-ide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifilot%2Fplat-lang-ide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34572424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":"2026-06-20T13:31:32.809Z","updated_at":"2026-06-20T13:31:33.345Z","avatar_url":"https://github.com/ifilot.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# plat-lang IDE\n\nA Qt 6 desktop IDE for the `platlang` language.\n\nThe IDE is still early, but already provides a usable workspace for opening a\nproject folder, editing `.plat` files, and running them through the configured\n`platlang` compiler/interpreter.\n\nThe language and compiler live in the companion repository:\n\n```text\nhttps://github.com/ifilot/platlang\n```\n\n## Features\n\n- Three-column IDE layout: file explorer, editor/terminal, code assistant\n- Tabbed code editor with line numbers and platlang syntax highlighting\n- Light and dark themes\n- Integrated terminal for running `.plat` files\n- File explorer rooted at an opened folder or CLI path argument\n- FontAwesome-based file/folder icons\n- Custom titlebar and application logo\n- Basic Problems and Output panels\n- Windows installer packaging through CPack/NSIS\n\n## Requirements\n\n- CMake 3.21+\n- C++20 compiler\n- Qt 6 with `Core`, `Gui`, `Widgets`, and `Svg`\n\nOn Ubuntu-like systems:\n\n```sh\nsudo apt-get install cmake g++ ninja-build qt6-base-dev qt6-svg-dev\n```\n\n## Build\n\n```sh\ncmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release\ncmake --build build\n```\n\nRun the IDE:\n\n```sh\n./build/plat_lang_ide\n```\n\nOpen a folder on startup:\n\n```sh\n./build/plat_lang_ide examples\n```\n\n## Compiler Toolchain\n\nThe IDE expects a `platlang` compiler/interpreter. During development it looks\nfor a sibling compiler build and copies it into the app data toolchain folder:\n\n```text\n../platlang/build/platlang\n```\n\nOn Windows the executable name is expected to be `platlang.exe`.\n\nBuild or download the compiler from the companion `platlang` repository:\n\n```text\nhttps://github.com/ifilot/platlang\n```\n\nYou can also configure a compiler manually from:\n\n```text\nRun -\u003e Configure Interpreter...\n```\n\n## Packaging\n\nCMake includes install and CPack metadata. On Windows, the GitHub Actions\nworkflow builds with MSYS2 and creates an NSIS installer.\n\nFor local install testing:\n\n```sh\ncmake --install build --prefix /tmp/plat-lang-ide-install\n```\n\n## GitHub Actions\n\nThe workflow in `.github/workflows/build.yml`:\n\n- builds on Linux\n- builds on Windows with MSYS2\n- creates and smoke-tests a Windows installer\n- uploads the installer as an artifact\n- publishes the installer to a GitHub Release for tags like `v0.1.0`\n\n## Current Limitations\n\n- Problems panel exists, but diagnostics parsing/navigation is not implemented yet.\n- Code assistant is a placeholder panel.\n- Compiler update checks refresh only the local development compiler copy.\n- Formatting currently performs basic whitespace cleanup only.\n\n## License\n\nThis project is distributed under the GNU Lesser General Public License v3.\n\nBundled third-party assets include Space Mono and Font Awesome Free. See\n`THIRD_PARTY_NOTICES.md` for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fifilot%2Fplat-lang-ide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fifilot%2Fplat-lang-ide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fifilot%2Fplat-lang-ide/lists"}