{"id":21382391,"url":"https://github.com/zewaka/meta-yoinker","last_synced_at":"2025-07-13T13:31:34.095Z","repository":{"id":190929744,"uuid":"683611585","full_name":"ZeWaka/meta-yoinker","owner":"ZeWaka","description":"DMI metadata yoinking and yeeting tool","archived":false,"fork":false,"pushed_at":"2023-10-09T02:16:40.000Z","size":2612,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-11-15T23:41:54.452Z","etag":null,"topics":["byond","dmi","ss13","tool","yoink"],"latest_commit_sha":null,"homepage":"https://zewaka.github.io/meta-yoinker/","language":"Rust","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/ZeWaka.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}},"created_at":"2023-08-27T06:14:52.000Z","updated_at":"2023-10-28T19:15:26.000Z","dependencies_parsed_at":"2023-08-27T07:29:48.495Z","dependency_job_id":"320d1615-28ae-4f4e-afb6-d15006b2c2fe","html_url":"https://github.com/ZeWaka/meta-yoinker","commit_stats":null,"previous_names":["zewaka/meta-yoinker"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeWaka%2Fmeta-yoinker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeWaka%2Fmeta-yoinker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeWaka%2Fmeta-yoinker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeWaka%2Fmeta-yoinker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZeWaka","download_url":"https://codeload.github.com/ZeWaka/meta-yoinker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225885471,"owners_count":17539641,"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":["byond","dmi","ss13","tool","yoink"],"created_at":"2024-11-22T10:59:12.641Z","updated_at":"2024-11-22T10:59:13.416Z","avatar_url":"https://github.com/ZeWaka.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MetaYoinker\n\n[![dependency status](https://deps.rs/repo/github/zewaka/meta-yoinker/status.svg)](https://deps.rs/repo/github/zewaka/meta-yoinker)\n[![Build Status](https://github.com/zewaka/meta-yoinker/workflows/CI/badge.svg)](https://github.com/zewaka/meta-yoinker/actions?workflow=CI)\n\nNative/Web tool to yoink DMI metadata from files and yeet it into another file\n\nSupported platforms:\n* Windows\n* macOS\n* Linux\n* Web\n\n## Downloading\n\nCheck out the web version: https://zewaka.github.io/meta-yoinker\n\nIf you're on windows, download from the [latest release](https://github.com/ZeWaka/meta-yoinker/releases).\n\nIf you're on Linux or Mac, you will need to build it yourself. Follow the development instructions below.\n\n## Developing\n\nThis tool is written in [Rust](https://rust-lang.org/).\n\n1. Install the Rust compiler's dependencies (primarily the system linker):\n\n   * Ubuntu: `sudo apt-get install gcc-multilib`\n   * Windows (MSVC): [Build Tools for Visual Studio 2017](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools)\n   * Windows (GNU): No action required\n\n2. Use [the Rust installer](https://rustup.rs/), or another Rust installation method.\n\n\n### Testing locally\n\nMake sure you are using the latest version of stable rust by running `rustup update`.\n\n`cargo run --release`\n\nOn Linux you need to first run:\n\n`sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev`\n\nOn Fedora Rawhide you need to run:\n\n`dnf install clang clang-devel clang-tools-extra libxkbcommon-devel pkg-config openssl-devel libxcb-devel gtk3-devel atk fontconfig-devel`\n\nThe executable will be located in the `target/release` folder.\n\n### Web Locally\n\nThis application can be compiled to [WASM](https://en.wikipedia.org/wiki/WebAssembly), and published as a web page.\n\nWe use [Trunk](https://trunkrs.dev/) to build for the web target.\n1. Install the required target with `rustup target add wasm32-unknown-unknown`.\n2. Install Trunk with `cargo install --locked trunk`.\n3. Run `trunk serve` to build and serve on `http://127.0.0.1:8080`. Trunk will rebuild automatically if you edit the project.\n4. Open `http://127.0.0.1:8080/index.html#dev` in a browser. See the warning below.\n\n\u003e `assets/sw.js` script will try to cache our app, and loads the cached version when it cannot connect to server allowing your app to work offline (like PWA).\n\u003e appending `#dev` to `index.html` will skip this caching, allowing us to load the latest builds during development.\n\n### Web Deploy\n1. Just run `trunk build --release`.\n2. It will generate a `dist` directory as a \"static html\" website\n3. Upload the `dist` directory to any of the numerous free hosting websites including [GitHub Pages](https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site).\n4. we already provide a workflow that auto-deploys our app to GitHub pages if you enable it.\n\u003e To enable Github Pages, you need to go to Repository -\u003e Settings -\u003e Pages -\u003e Source -\u003e set to `gh-pages` branch and `/` (root).\n\u003e\n\u003e If `gh-pages` is not available in `Source`, just create and push a branch called `gh-pages` and it should be available.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzewaka%2Fmeta-yoinker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzewaka%2Fmeta-yoinker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzewaka%2Fmeta-yoinker/lists"}