{"id":25851513,"url":"https://github.com/am1goo/unity-plugin-license-manager","last_synced_at":"2025-10-07T03:06:58.738Z","repository":{"id":278789846,"uuid":"936501966","full_name":"am1goo/unity-plugin-license-manager","owner":"am1goo","description":"A simple tool to find all LICENSE files in Unity project and get a report on all these files. This is might be very helpful if you need to reveal info about all third-party assets used in your project.","archived":false,"fork":false,"pushed_at":"2025-04-30T08:17:56.000Z","size":117,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-29T22:56:40.328Z","etag":null,"topics":["apache","collector","creativecommon","credits","gnu","gpl","license","manager","mit"],"latest_commit_sha":null,"homepage":"https://github.com/am1goo/unity-plugin-license-manager","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/am1goo.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}},"created_at":"2025-02-21T07:41:13.000Z","updated_at":"2025-04-30T08:17:43.000Z","dependencies_parsed_at":"2025-03-27T16:23:45.624Z","dependency_job_id":"c52ceda1-3fee-4703-9dcd-367e7314907d","html_url":"https://github.com/am1goo/unity-plugin-license-manager","commit_stats":null,"previous_names":["am1goo/unity-plugin-license-manager"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/am1goo/unity-plugin-license-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/am1goo%2Funity-plugin-license-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/am1goo%2Funity-plugin-license-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/am1goo%2Funity-plugin-license-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/am1goo%2Funity-plugin-license-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/am1goo","download_url":"https://codeload.github.com/am1goo/unity-plugin-license-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/am1goo%2Funity-plugin-license-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278712710,"owners_count":26032742,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["apache","collector","creativecommon","credits","gnu","gpl","license","manager","mit"],"created_at":"2025-03-01T13:17:35.103Z","updated_at":"2025-10-07T03:06:58.704Z","avatar_url":"https://github.com/am1goo.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# License Manager for Unity\nA simple tool to find all LICENSE files in Unity project and get a report on all these files. \\\nThis is might be very helpful if you need to reveal info about all third-party assets used in your project. \\\nWorks with Assets and Packages folders.\n\n#### How to use?\n1. Create `LicenseCollector` asset via `Create -\u003e License Manager -\u003e Collector` context menu somethere in project\n2. Press button **Refresh**\n3. To get runtime report use this code:\n```cs\n[SerializeField]\nprivate LicenseManager.LicenseCollector _collector;\n\nvoid Start()\n{\n    var report = _collector.GetReport();\n    foreach (var entry in report)\n    {\n        //do something here with each entry\n        string name = entry.name;\n        string content = entry.content;\n        string license = entry.license;\n        LicenseManager.LicenseRemarks remarks = entry.remarks;\n\n        if (remarks.HasFlag(LicenseManager.LicenseRemarks.NonCommercial))\n        {\n            Debug.LogWarning($\"{name} asset could be used but only in non-commercial projects, because it has {license}\");\n        }\n        if (remarks.HasFlag(LicenseManager.LicenseRemarks.Viral))\n        {\n            Debug.LogError($\"{name} asset has viral {license} and probably cannot be placed in this project\");\n        }\n    }\n}\n```\n\n#### Unity Plugin\nThe latest version can be installed via [package manager](https://docs.unity3d.com/Manual/upm-ui-giturl.html) using following git URL:\n```\nhttps://github.com/am1goo/unity-plugin-license-manager.git#0.0.9\n```\n\n## Screenshots\n1. `LicenseCollector` settings\n\u003cimg src=\"Readme/license_collector_settings.png\" alt=\"license_collector_settings\" width=auto height=auto/\u003e\n\n2. Visual report of all collected licenses in project\n\u003cimg src=\"Readme/license_report_example.png\" alt=\"license_report_example\" width=auto height=auto/\u003e\n\n## What next?\n- [x] Build post-process callback (to get correct report up-to-date)\n- [ ] More supported licenses (except the most popular ones)\n\n## Tested in\n- **Unity 2020.3.x**\n- **Unity 2022.3.x**\n\n## Contribute\nContribution in any form is very welcome. Bugs, feature requests or feedback can be reported in form of Issues.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fam1goo%2Funity-plugin-license-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fam1goo%2Funity-plugin-license-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fam1goo%2Funity-plugin-license-manager/lists"}