{"id":30219823,"url":"https://github.com/nowalone/twitchmemealertsauto","last_synced_at":"2026-02-01T05:15:16.551Z","repository":{"id":308072504,"uuid":"1019149634","full_name":"NowaLone/TwitchMemeAlertsAuto","owner":"NowaLone","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-27T20:14:03.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-28T07:48:02.020Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/NowaLone.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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":"2025-07-13T21:06:27.000Z","updated_at":"2026-01-27T20:13:36.000Z","dependencies_parsed_at":"2025-08-04T01:38:40.741Z","dependency_job_id":"02d21ad2-c0f5-4bed-b1eb-cca2c6f7f665","html_url":"https://github.com/NowaLone/TwitchMemeAlertsAuto","commit_stats":null,"previous_names":["nowalone/twitchmemealertsauto"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/NowaLone/TwitchMemeAlertsAuto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NowaLone%2FTwitchMemeAlertsAuto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NowaLone%2FTwitchMemeAlertsAuto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NowaLone%2FTwitchMemeAlertsAuto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NowaLone%2FTwitchMemeAlertsAuto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NowaLone","download_url":"https://codeload.github.com/NowaLone/TwitchMemeAlertsAuto/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NowaLone%2FTwitchMemeAlertsAuto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28969113,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T04:44:20.970Z","status":"ssl_error","status_checked_at":"2026-02-01T04:44:19.994Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-08-14T08:56:40.759Z","updated_at":"2026-02-01T05:15:16.535Z","avatar_url":"https://github.com/NowaLone.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# TwitchMemeAlertsAuto\n\nThis repository contains two related projects for automatically rewarding MemeAlerts supporters via Twitch channel point redemptions:\n\n- `TwitchMemeAlertsAuto.CLI` — a command-line utility\n- `TwitchMemeAlertsAuto.WPF` — a WPF GUI application\n\nBoth projects target .NET 10.\n\n## Features\n\n- Listens to Twitch chat for custom reward redemptions.\n- Matches Twitch users to MemeAlerts supporters.\n- Automatically grants MemeAlerts bonuses based on reward configuration.\n- Configurable via command-line options.\n- Publishes as a self-contained Windows x64 executable.\n\n- ## Requirements\n\n- .NET 10 SDK (for building; published EXE is self-contained)\n- Twitch channel with custom rewards configured\n- MemeAlerts account and API token\n\n## Usage\n\nCLI usage\n\nAfter building or downloading the published CLI EXE, run:\n\n```cmd\ntmaa.exe --channel \u003ctwitch_channel\u003e --token \u003cmemealerts_token\u003e --rewards \u003creward_id1:value1,reward_id2:value2,...\u003e\n```\n\nWPF usage\n\nThe WPF application provides a graphical interface for connecting to Twitch and configuring reward mappings. It is a standalone GUI and can be launched by double-clicking the published EXE (no command line required). To build and run from source use Visual Studio or:\n\n```cmd\ndotnet run --project src/TwitchMemeAlertsAuto.WPF\n```\n\nAfter publishing, launch the GUI by double-clicking the executable at:\n\n```cmd\nsrc/TwitchMemeAlertsAuto.WPF/bin/Release/net10.0/win-x64/publish/TwitchMemeAlertsAuto.WPF.exe\n```\n\n### Options\n\n- `--channel`, `-c`  \n  Twitch channel name to monitor (required).\n\n- `--token`, `-t`  \n  MemeAlerts API token (required).\n\n- `--rewards`, `-r`  \n  Comma-separated list of reward IDs and their values, e.g. `id1:100,id2:200` (required).\n\n## Example\n```cmd\ntmaa.exe -c mychannel -t mytoken -s 123456 -r reward1:100,reward2:200\n```\n\n## Build \u0026 Publish\n\nTo build and publish the CLI using the provided profile:\n\n```cmd\ndotnet publish src/TwitchMemeAlertsAuto.CLI/TwitchMemeAlertsAuto.CLI.csproj /p:PublishProfile=FolderProfile\n```\n\nThe CLI executable will be located at:\n\n```cmd\nsrc/TwitchMemeAlertsAuto.CLI/bin/Release/net10.0/publish/win-x64/tmaa.exe\n```\n\nTo build and publish the WPF application (self-contained Windows x64):\n\n```cmd\ndotnet publish src/TwitchMemeAlertsAuto.WPF/TwitchMemeAlertsAuto.WPF.csproj -c Release -r win-x64 /p:PublishSingleFile=true /p:PublishTrimmed=true\n```\n\nThe WPF executable will be located at:\n\n```cmd\nsrc/TwitchMemeAlertsAuto.WPF/bin/Release/net10.0/win-x64/publish/TwitchMemeAlertsAuto.WPF.exe\n```\n\n## GitHub Actions Release\n\nOn every push of a tag starting with `v` (e.g., `v1.0.0`), a GitHub Release is created with the published EXE attached.\n\n## License\n\nSee [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnowalone%2Ftwitchmemealertsauto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnowalone%2Ftwitchmemealertsauto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnowalone%2Ftwitchmemealertsauto/lists"}