krz/hutch

an ios client for sourcehut

clone: git clone https://gitbay.org/krz/hutch.git

v2: website/privacy.html · raw

  1<!doctype html>
  2<html lang="en">
  3
  4<head>
  5    <meta charset="utf-8" />
  6    <meta name="viewport" content="width=device-width, initial-scale=1" />
  7    <title>Privacy Policy — Hutch</title>
  8    <link rel="stylesheet" href="styles.css" />
  9</head>
 10
 11<body>
 12    <div class="page">
 13        <header class="site-header">
 14            <div class="brand-row">
 15                <a class="brand" href="index.html">
 16                    <img class="app-icon" src="https://img.cleberg.net/apps/hutch/logo/hutch_light.png"
 17                        alt="Hutch icon" />
 18                    <div>
 19                        <h1>Hutch</h1>
 20                        <p class="subtitle">A native sourcehut client for iPhone</p>
 21                    </div>
 22                </a>
 23
 24                <div class="hero-actions">
 25                    <a href="#" class="store-link">
 26                        <img src="storebutton.svg" class="store-img" alt="Download on the App Store" />
 27                    </a>
 28
 29                    <nav class="header-links">
 30                        <a href="https://sr.ht/~ccleberg/Hutch/">Source Code</a>
 31                        <span>·</span>
 32                        <a href="mailto:hello@cleberg.net">Email</a>
 33                    </nav>
 34                </div>
 35            </div>
 36        </header>
 37
 38        <main>
 39            <section class="privacy">
 40                <h2>Privacy Policy</h2>
 41
 42                <p><strong>Hutch</strong><br>
 43                    Last updated: March 17, 2026</p>
 44
 45                <h3>Overview</h3>
 46                <p>
 47                    Hutch is a client for SourceHut. This app allows users to browse repositories,
 48                    tickets, and builds using their own SourceHut account.
 49                </p>
 50
 51                <h3>Data Collection</h3>
 52                <p>
 53                    Hutch does not collect, store, or transmit personal data to the developer.
 54                </p>
 55                <p>
 56                    All data displayed in the app is retrieved directly from SourceHut using
 57                    user-provided authentication credentials.
 58                </p>
 59
 60                <h3>Authentication</h3>
 61                <p>
 62                    Hutch uses a SourceHut Personal Access Token (PAT) provided by the user.
 63                </p>
 64                <p>
 65                    The token is stored securely on-device and is used only to authenticate requests
 66                    to SourceHut. The developer does not have access to this token.
 67                </p>
 68
 69                <h3>Data Usage</h3>
 70                <p>The app communicates with SourceHut servers to:</p>
 71                <ul>
 72                    <li>fetch repositories, files, and commits</li>
 73                    <li>retrieve and update tickets</li>
 74                    <li>submit and monitor builds</li>
 75                </ul>
 76                <p>
 77                    No data is transmitted to any servers operated by the developer.
 78                </p>
 79
 80                <h3>Third-Party Services</h3>
 81                <p>
 82                    Hutch communicates with SourceHut services (sr.ht) to retrieve user data.
 83                </p>
 84                <p>
 85                    No analytics, advertising, or tracking SDKs are used.
 86                </p>
 87
 88                <h3>User-Generated Content</h3>
 89                <p>
 90                    The app displays content from SourceHut, including repositories, tickets, and
 91                    builds. This content is accessed based on the user’s authentication and
 92                    permissions.
 93                </p>
 94
 95                <h3>Device Permissions</h3>
 96                <p>
 97                    Hutch does not request access to sensitive device data such as location,
 98                    contacts, camera, or microphone.
 99                </p>
100
101                <h3>Changes to This Policy</h3>
102                <p>
103                    This policy may be updated in future versions. Updates will be reflected on this page.
104                </p>
105
106                <h3>Contact</h3>
107                <p>
108                    For questions, contact:
109                    <a href="mailto:privacy@cleberg.net">privacy@cleberg.net</a>
110                </p>
111            </section>
112        </main>
113
114        <footer class="site-footer">
115      © 2026 <a href="https://cleberg.net">Christian Cleberg</a>
116        </footer>
117    </div>
118</body>
119
120</html>