├── .github └── workflows │ └── publish-tar.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.zen_browser.zen.desktop ├── app.zen_browser.zen.metainfo.xml ├── icons └── app.zen_browser.zen.svg ├── launch-script.sh ├── policies.json └── version /.github/workflows/publish-tar.yml: -------------------------------------------------------------------------------- 1 | name: Publish Tar 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | version: 7 | description: 'Version to publish' 8 | required: true 9 | default: 'latest' 10 | push: 11 | branches: 12 | - main 13 | 14 | jobs: 15 | publish-tar: 16 | permissions: write-all 17 | name: Publish tar as release 18 | runs-on: ubuntu-latest 19 | 20 | steps: 21 | - name: Checkout repository 22 | uses: actions/checkout@v4 23 | 24 | - name: Archive 25 | run: tar -cf archive.tar ./* 26 | 27 | - name: Output version from file to variable 28 | id: version 29 | run: | 30 | echo "::set-output name=version::$(cat version)" 31 | 32 | - name: Create release 33 | id: create_release 34 | uses: softprops/action-gh-release@v2 35 | env: 36 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 37 | with: 38 | files: archive.tar 39 | tag_name: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }} 40 | name: Release for Zen - ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }} 41 | body: | 42 | ### Release ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }} 43 | - sha: `${{ github.sha }}` 44 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | archive.tar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Zen Browser 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # flatpak 2 | 📦 official flatpak packges for @zen-browser! 3 | -------------------------------------------------------------------------------- /app.zen_browser.zen.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Zen Browser 3 | Exec=launch-script.sh %u 4 | Icon=app.zen_browser.zen 5 | Type=Application 6 | MimeType=text/html;text/xml;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;application/x-xpinstall;application/pdf;application/json; 7 | StartupWMClass=zen 8 | Categories=Network;WebBrowser; 9 | StartupNotify=true 10 | Terminal=false 11 | X-MultipleArgs=false 12 | Keywords=Internet;WWW;Browser;Web;Explorer; 13 | Actions=new-window;new-private-window;profilemanager; 14 | 15 | [Desktop Action new-window] 16 | Name=Open a New Window 17 | Exec=launch-script.sh %u 18 | 19 | [Desktop Action new-private-window] 20 | Name=Open a New Private Window 21 | Exec=launch-script.sh --private-window %u 22 | 23 | [Desktop Action profilemanager] 24 | Name=Open the Profile Manager 25 | Exec=launch-script.sh --ProfileManager %u 26 | -------------------------------------------------------------------------------- /app.zen_browser.zen.metainfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MIT 4 | MPL-2.0 5 | app.zen_browser.zen 6 | Zen 7 | Stay focused, browse faster 8 | 9 | Zen Team 10 | 11 | 12 | io.github.zen_browser.zen 13 | 14 | 15 |

Zen is the best way to browse the web. Beautifully designed, privacy-focused, and packed with features. We care about your experience, not your data.

16 | 24 |
25 | https://zen-browser.app 26 | https://github.com/zen-browser/desktop/issues 27 | https://docs.zen-browser.app 28 | https://docs.zen-browser.app/faq 29 | https://www.patreon.com/zen_browser 30 | https://crowdin.com/project/zen-browser 31 | https://discord.gg/zen-browser 32 | https://github.com/zen-browser 33 | https://docs.zen-browser.app/contribute/CONTRIBUTING 34 | 35 | #d9d9d9 36 | #f5f5f5 37 | 38 | 39 | 40 | https://raw.githubusercontent.com/zen-browser/www/refs/heads/main/src/assets/browser.png 41 | 42 | 43 | https://raw.githubusercontent.com/zen-browser/www/refs/heads/main/src/assets/browser-splitview.png 44 | 45 | 46 | https://raw.githubusercontent.com/zen-browser/www/refs/heads/main/src/assets/browser-compactmode.png 47 | 48 | 49 | 50 | app.zen_browser.zen.desktop 51 | 52 | 450 53 | 54 | 55 | always 56 | 57 | 58 | pointing 59 | keyboard 60 | 61 | 62 | 63 | https://zen-browser.app/release-notes/1.12.10b 64 | 65 | 66 | https://zen-browser.app/release-notes/1.12.9b 67 | 68 | 69 | https://zen-browser.app/release-notes/1.12.8b 70 | 71 | 72 | https://zen-browser.app/release-notes/1.12.7b 73 | 74 | 75 | https://zen-browser.app/release-notes/1.12.6b 76 | 77 | 78 | https://zen-browser.app/release-notes/1.12.5b 79 | 80 | 81 | https://zen-browser.app/release-notes/1.12.4b 82 | 83 | 84 | https://zen-browser.app/release-notes/1.12.3b 85 | 86 | 87 | https://zen-browser.app/release-notes/1.12.2b 88 | 89 | 90 | https://zen-browser.app/release-notes/1.12.1b 91 | 92 | 93 | https://zen-browser.app/release-notes/1.12b 94 | 95 | 96 | https://zen-browser.app/release-notes/1.11.5b 97 | 98 | 99 | https://zen-browser.app/release-notes/1.11.4b 100 | 101 | 102 | https://zen-browser.app/release-notes/1.11.3b 103 | 104 | 105 | https://zen-browser.app/release-notes/1.11.2b 106 | 107 | 108 | https://zen-browser.app/release-notes/1.11.1b 109 | 110 | 111 | https://zen-browser.app/release-notes/1.11b 112 | 113 | 114 | https://zen-browser.app/release-notes/1.10.3b 115 | 116 | 117 | https://zen-browser.app/release-notes/1.10.2b 118 | 119 | 120 | https://zen-browser.app/release-notes/1.10.1b 121 | 122 | 123 | https://zen-browser.app/release-notes/1.10b 124 | 125 | 126 | https://zen-browser.app/release-notes/1.9.1b 127 | 128 | 129 | https://zen-browser.app/release-notes/1.9b 130 | 131 | 132 | https://zen-browser.app/release-notes/1.8.2b 133 | 134 | 135 | https://zen-browser.app/release-notes/1.8.1b 136 | 137 | 138 | https://zen-browser.app/release-notes/1.8b 139 | 140 | 141 | https://zen-browser.app/release-notes/1.7.6b 142 | 143 | 144 | https://zen-browser.app/release-notes/1.7.5b 145 | 146 | 147 | https://zen-browser.app/release-notes/1.7.4b 148 | 149 | 150 | https://zen-browser.app/release-notes/1.7.3b 151 | 152 | 153 | https://zen-browser.app/release-notes/1.7.2b 154 | 155 | 156 | https://zen-browser.app/release-notes/1.7.1b 157 | 158 | 159 | https://zen-browser.app/release-notes/1.7b 160 | 161 | 162 | https://zen-browser.app/release-notes/1.6b 163 | 164 | 165 | https://zen-browser.app/release-notes/1.0.2-b.5 166 | 167 | 168 | https://zen-browser.app/release-notes/1.0.2-b.4 169 | 170 | 171 | https://zen-browser.app/release-notes/1.0.2-b.3 172 | 173 | 174 | https://zen-browser.app/release-notes/1.0.2-b.2 175 | 176 | 177 | https://zen-browser.app/release-notes/1.0.2-b.1 178 | 179 | 180 | https://zen-browser.app/release-notes/1.0.2-b.0 181 | 182 | 183 | https://zen-browser.app/release-notes/1.0.1-a.22 184 | 185 | 186 | https://zen-browser.app/release-notes/1.0.1-a.21 187 | 188 | 189 | https://zen-browser.app/release-notes/1.0.1-a.20 190 | 191 | 192 | https://zen-browser.app/release-notes/1.0.1-a.19 193 | 194 | 195 | https://zen-browser.app/release-notes/1.0.1-a.18 196 | 197 | 198 | https://zen-browser.app/release-notes/1.0.1-a.17 199 | 200 | 201 | https://zen-browser.app/release-notes/1.0.1-a.16 202 | 203 | 204 | https://zen-browser.app/release-notes/1.0.1-a.15 205 | 206 | 207 | https://zen-browser.app/release-notes/1.0.1-a.14 208 | 209 | 210 | https://zen-browser.app/release-notes/1.0.1-a.13 211 | 212 | 213 | https://zen-browser.app/release-notes/1.0.1-a.12 214 | 215 | 216 | https://zen-browser.app/release-notes/1.0.1-a.11 217 | 218 | 219 | https://zen-browser.app/release-notes/1.0.1-a.10 220 | 221 | 222 | https://zen-browser.app/release-notes/1.0.1-a.9 223 | 224 | 225 | https://zen-browser.app/release-notes/1.0.1-a.8 226 | 227 | 228 | https://zen-browser.app/release-notes/1.0.1-a.7 229 | 230 | 231 | https://zen-browser.app/release-notes/1.0.1-a.6 232 | 233 | 234 | https://zen-browser.app/release-notes/1.0.1-a.5 235 | 236 | 237 | https://zen-browser.app/release-notes/1.0.1-a.4 238 | 239 | 240 | https://zen-browser.app/release-notes/1.0.1-a.3 241 | 242 | 243 | https://zen-browser.app/release-notes/1.0.1-a.2 244 | 245 | 246 | https://zen-browser.app/release-notes/1.0.1-a.1 247 | 248 | 249 | https://zen-browser.app/release-notes/1.0.1-a 250 | 251 | 252 | https://zen-browser.app/release-notes/1.0.0-a.39 253 | 254 | 255 | https://zen-browser.app/release-notes/1.0.0-a.37 256 | 257 | 258 | https://zen-browser.app/release-notes/1.0.0-a.35 259 | 260 | 261 | https://zen-browser.app/release-notes/1.0.0-a.34 262 | 263 | 264 | https://zen-browser.app/release-notes/1.0.0-a.32 265 | 266 | 267 |
-------------------------------------------------------------------------------- /icons/app.zen_browser.zen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /launch-script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export TMPDIR=$XDG_CACHE_HOME/tmp 3 | 4 | exec /app/zen/zen "$@" -------------------------------------------------------------------------------- /policies.json: -------------------------------------------------------------------------------- 1 | { 2 | "policies": { 3 | "DisableAppUpdate": true, 4 | "DontCheckDefaultBrowser": true 5 | } 6 | } -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 1.12.10b --------------------------------------------------------------------------------