{"id":16854579,"url":"https://github.com/davispuh/acf-manager","last_synced_at":"2025-04-11T07:21:33.865Z","repository":{"id":10964687,"uuid":"13278864","full_name":"davispuh/ACF-Manager","owner":"davispuh","description":"Simple application to work with Steam ACF files.","archived":false,"fork":false,"pushed_at":"2013-10-02T18:29:13.000Z","size":116,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T06:42:36.856Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davispuh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-10-02T18:15:16.000Z","updated_at":"2025-01-09T11:21:34.000Z","dependencies_parsed_at":"2022-08-28T17:02:30.813Z","dependency_job_id":null,"html_url":"https://github.com/davispuh/ACF-Manager","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davispuh%2FACF-Manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davispuh%2FACF-Manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davispuh%2FACF-Manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davispuh%2FACF-Manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davispuh","download_url":"https://codeload.github.com/davispuh/ACF-Manager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248358614,"owners_count":21090406,"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-10-13T13:56:02.513Z","updated_at":"2025-04-11T07:21:33.836Z","avatar_url":"https://github.com/davispuh.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ACF Manager\n\nSimple application to work with Steam ACF files.\n\n\n## Features\n\n* Export data from ACF files to several formats (csv, yml, json, xml, vdf)\n* Support for multiple Steam libraries\n* Locate unused steam game directories (those which aren't referenced in any ACF)\n* Supports Windows, Linux, Mac OS X\n\n\n## Installation\n\n`git clone https://github.com/davispuh/ACF-Manager.git`\n\n### Dependencies\n\ngems:\n\n* `steam_codec` (required)\n* `json` (optional, to export in JSON format)\n* `gyoku` (optional, to export in XML format)\n\ninstall manually (`gem install`) or with\n\n`bundle install`\n\n## Usage\n\nfor command information use `-h` or `--help` flag\n\n`ruby acf_manager.rb -h`\n\n```\nUsage: acf_manager.rb [options]\n    -p, --paths steam                Paths to Steam directories\n    -a, --apps paths                 Paths to SteamApps directories\n    -e, --execute ACTION             Execute specified action (export, list)\n    -f, --fields fields              Specify which fields to export\n    -m, --mode MODE                  Mode for `list` (downloaded, installed,\n                                     unreferenced)\n    -o, --output FORMAT              Output format (csv, yml, json, xml, vdf)\n    -s, --save FILE                  File where to save output\n    -h, --help                       Show this message\n```\n\n* `-p, --paths` comma separated list of locations to Steam directories, example `-p \"C:\\Steam\",\"D:\\Steam\"`\n* `-a, --apps` comma separated list of locations to SteamApps directories, example `-p \"C:\\Steam\\SteamApps\",\"D:\\Steam\\SteamApps\"`\n* `-e, --execute ACTION`, example `-e export` or `-e list`\n* `-f, --fields fields`, comma separated list of fields, example `-f AppID,InstallDir,UserConfig.Name` (used only for `export`)\n* `-m, --mode MODE`, comma separated list of fields, example `-m installed`  (used only for `list`)\n* `-o, --output FORMAT`, file format for output, example `-o json`\n* `-s, --save FILE`, file path where to save, example `-s C:\\apps.json`\n\nWhen run without parameters default options will be used. It will try to detect Steam location automatically.\nDefault action is _export_ with fields _AppID_, _StateFlags_, _InstallDir_, _SizeOnDisk_, _BuildId_, _UserConfig.Name_, _UserConfig.Installed_, _UserConfig.AppInstallDir_\nand output in CSV format.\n\n### In action\n\n```bash\n[Davis@Fedora ~]$  ruby acf_manager.rb \nAppID,StateFlags,InstallDir,SizeOnDisk,BuildId,UserConfig.Name,UserConfig.Installed,UserConfig.AppInstallDir\n1510,4,Uplink,46107609,41610,Uplink,true,/home/Dāvis/.local/share/Steam/steamapps/common/Uplink\n38700,4,Toki Tori,92024519,92189,Toki Tori,true,/home/Dāvis/.local/share/Steam/SteamApps/common/Toki Tori\n```\n\n\n## Documentation\n\nYARD with markdown is used for documentation (`redcarpet` required)\n\n## Specs\n\nRSpec and simplecov are required, to run tests just `rake spec`\ncode coverage will also be generated\n\n## Unlicense\n\n![Copyright-Free](http://unlicense.org/pd-icon.png)\n\nAll text, documentation, code and files in this repository are in public domain (including this text, README).\nIt means you can copy, modify, distribute and include in your own work/code, even for commercial purposes, all without asking permission.\n\n[About Unlicense](http://unlicense.org/)\n\n## Contributing\n\nFeel free to improve anything.\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n\n**Warning**: By sending pull request to this repository you dedicate any and all copyright interest in pull request (code files and all other) to the public domain. (files will be in public domain even if pull request doesn't get merged)\n\nAlso before sending pull request you acknowledge that you own all copyrights or have authorization to dedicate them to public domain.\n\nIf you don't want to dedicate code to public domain or if you're not allowed to (eg. you don't own required copyrights) then DON'T send pull request.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavispuh%2Facf-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavispuh%2Facf-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavispuh%2Facf-manager/lists"}