{"id":32301153,"url":"https://github.com/aswinmurali-io/flutter_innosetup","last_synced_at":"2026-02-22T03:42:11.584Z","repository":{"id":41495601,"uuid":"508739389","full_name":"aswinmurali-io/flutter_innosetup","owner":"aswinmurali-io","description":"Make windows installer 🪟 for flutter powered apps💻.","archived":false,"fork":false,"pushed_at":"2024-07-06T11:40:44.000Z","size":44,"stargazers_count":13,"open_issues_count":3,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T05:42:41.290Z","etag":null,"topics":["dart","flutter","innosetup","library","windows"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/innosetup","language":"Dart","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/aswinmurali-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-29T15:05:13.000Z","updated_at":"2025-08-14T00:30:16.000Z","dependencies_parsed_at":"2022-09-21T10:52:16.957Z","dependency_job_id":null,"html_url":"https://github.com/aswinmurali-io/flutter_innosetup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aswinmurali-io/flutter_innosetup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aswinmurali-io%2Fflutter_innosetup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aswinmurali-io%2Fflutter_innosetup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aswinmurali-io%2Fflutter_innosetup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aswinmurali-io%2Fflutter_innosetup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aswinmurali-io","download_url":"https://codeload.github.com/aswinmurali-io/flutter_innosetup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aswinmurali-io%2Fflutter_innosetup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29704419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T03:17:42.375Z","status":"ssl_error","status_checked_at":"2026-02-22T03:17:31.622Z","response_time":110,"last_error":"SSL_read: 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":["dart","flutter","innosetup","library","windows"],"created_at":"2025-10-23T05:37:02.171Z","updated_at":"2026-02-22T03:42:11.579Z","avatar_url":"https://github.com/aswinmurali-io.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Inno Setup\n\nMake windows installer for Flutter \u0026 vanilla Dart powered apps powered by Inno Setup.\n\n## Installing\n\nRun this command:\n\nWith Dart:\n\n```sh\ndart pub add -d innosetup\n```\n\nWith Flutter:\n\n```sh\nflutter pub add -d innosetup\n```\n\n## Usage\n\nCreate a dart file in your project root directory to store the build instructions and type the below code.\n\n```dart\nInnoSetup(\n  app: InnoSetupApp(\n    name: 'Test App',\n    version: Version.parse('0.1.0'),\n    publisher: 'author',\n    urls: InnoSetupAppUrls(\n      homeUrl: Uri.parse('https://example.com/'),\n    ),\n  ),\n  files: InnoSetupFiles(\n    executable: File('build/windows/runner/test_app.exe'),\n    location: Directory('build/windows/runner'),\n  ),\n  name: const InnoSetupName('windows_installer'),\n  location: InnoSetupInstallerDirectory(\n    Directory('build/windows'),\n  ),\n  icon: InnoSetupIcon(\n    File('assets/icon.ico'),\n  ),\n).make();\n```\n\nFinal step is to execute this build script by running this command:\n\n```bash\ndart build.dart\n```\n\n## Advanced Usage\n\nFor full customisation of the installer.\n\n```dart\nInnoSetup(\n  name: const InnoSetupName(\n    'windows_installer',\n  ),\n  app: InnoSetupApp(\n    name: 'Test App',\n    version: Version.parse('0.1.0'),\n    publisher: 'author',\n    urls: InnoSetupAppUrls(\n      homeUrl: Uri.parse('https://example.com/home'),\n      publisherUrl: Uri.parse('https://example.com/author'),\n      supportUrl: Uri.parse('https://example.com/support'),\n      updatesUrl: Uri.parse('https://example.com/updates'),\n    ),\n  ),\n  files: InnoSetupFiles(\n    executable: File('build/windows/runner/test_app.exe'),\n    location: Directory('build/windows/runner'),\n  ),\n  location: InnoSetupInstallerDirectory(\n    Directory('build/windows'),\n  ),\n  icon: InnoSetupIcon(\n    File('assets/icon.ico'),\n  ),\n  runAfterInstall: false,\n  compression: InnoSetupCompressions().lzma2(\n    InnoSetupCompressionLevel.ultra64,\n  ),\n  languages: InnoSetupLanguages().all,\n  license: InnoSetupLicense(\n    File('LICENSE'),\n  ),\n).make();\n```\n\n## Source\n\n```sh\ngit clone https://github.com/aswinmurali-io/flutter_innosetup.git\ncd flutter_innosetup\ndart pub get\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faswinmurali-io%2Fflutter_innosetup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faswinmurali-io%2Fflutter_innosetup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faswinmurali-io%2Fflutter_innosetup/lists"}