{"id":19738234,"url":"https://github.com/nickvisionapps/application","last_synced_at":"2025-04-30T05:31:06.323Z","repository":{"id":45900683,"uuid":"443211531","full_name":"NickvisionApps/Application","owner":"NickvisionApps","description":"Create new Nickvision applications","archived":false,"fork":false,"pushed_at":"2025-04-17T10:39:21.000Z","size":5555,"stargazers_count":39,"open_issues_count":1,"forks_count":7,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-18T01:16:17.314Z","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NickvisionApps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"COPYING","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},"funding":{"github":"nlogozzo","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2021-12-31T00:05:17.000Z","updated_at":"2025-04-09T22:48:10.000Z","dependencies_parsed_at":"2024-01-21T06:30:46.167Z","dependency_job_id":"b3cefdf9-04f2-485d-9ecf-44247b308a53","html_url":"https://github.com/NickvisionApps/Application","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickvisionApps%2FApplication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickvisionApps%2FApplication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickvisionApps%2FApplication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickvisionApps%2FApplication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NickvisionApps","download_url":"https://codeload.github.com/NickvisionApps/Application/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251648653,"owners_count":21621388,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-11-12T01:13:39.000Z","updated_at":"2025-04-30T05:31:06.317Z","avatar_url":"https://github.com/NickvisionApps.png","language":"C++","funding_links":["https://github.com/sponsors/nlogozzo"],"categories":[],"sub_categories":[],"readme":"# Application\n\u003cimg src=\"resources/org.nickvision.application.svg\" width=\"100\" height=\"100\"/\u003e\n\n **Create new Nickvision applications**\n\n## Features\n- A template for creating cross-platform desktop apps in C++\n    - GNOME (Linux) support through GTK4/libadwaita\n    - Universal (Windows, Linux) support through QT\n\n## Chat\n\u003ca href='https://matrix.to/#/#nickvision:matrix.org'\u003e\u003cimg width='140' alt='Join our room' src='https://user-images.githubusercontent.com/17648453/196094077-c896527d-af6d-4b43-a5d8-e34a00ffd8f6.png'/\u003e\u003c/a\u003e\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for details on how can you help the project and how to provide information so we can help you in case of troubles with the app.\n\n## Building Manually\nApplication uses `vcpkg` to manage its dependencies and `cmake` as its build system.\n\nEnsure both `vcpkg` and `cmake` are installed on your system before building.\n\nA C++20 compiler is also required to build Application.\n\n**If building the GNOME version, `blueprint-compiler` must be installed from your system package manager as it is not available on `vcpkg`.**\n\n### Configuring vcpkg\n1. Set the `VCPKG_ROOT` environment variable to the path of your vcpkg installation's root directory.\n#### Windows\n1. Set the `VCPKG_DEFAULT_TRIPLET` environment variable to `x64-windows`\n1. Run `vcpkg install libnick qtbase qtsvg qttools qlementine qlementine-icons`\n#### Linux (GNOME)\n1. Set the `VCPKG_DEFAULT_TRIPLET` environment variable to `x64-linux`\n1. Run `vcpkg install libnick libxmlpp`\n#### Linux (Qt)\n1. Set the `VCPKG_DEFAULT_TRIPLET` environment variable to `x64-linux`\n1. Run `vcpkg install libnick qtbase qtsvg qttools qlementine qlementine-icons`\n\n### Building\n1. First, clone/download the repo.\n1. Open a terminal and navigate to the repo's root directory.\n1. Create a new `build` directory and `cd` into it. \n#### Windows\n1. From the `build` folder, run `cmake .. -G \"Visual Studio 17 2022\"`.\n1. From the `build` folder, run `cmake --build . --config Release`.\n1. After these commands complete, Application will be successfully built and its binaries can be found in the `org.nickvision.application.qt/Release` folder of the `build` folder.\n#### Linux (GNOME)\n1. From the `build` folder, run `cmake .. -DCMAKE_BUILD_TYPE=Release -DUI_PLATFORM=gnome`.\n1. From the `build` folder, run `cmake --build .`.\n1. After these commands complete, Application will be successfully built and its binaries can be found in the `org.nickvision.application.gnome` folder of the `build` folder.\n#### Linux (Qt)\n1. From the `build` folder, run `cmake .. -DCMAKE_BUILD_TYPE=Release -DUI_PLATFORM=qt`.\n1. From the `build` folder, run `cmake --build .`.\n1. After these commands complete, Application will be successfully built and its binaries can be found in the `org.nickvision.application.qt` folder of the `build` folder.\n\n## Code of Conduct\n\nThis project follows the [GNOME Code of Conduct](https://conduct.gnome.org/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickvisionapps%2Fapplication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnickvisionapps%2Fapplication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickvisionapps%2Fapplication/lists"}