Repository: portapps/postman-portable Branch: master Commit: 362c03113845 Files: 24 Total size: 20.2 KB Directory structure: gitextract_9wbamg0n/ ├── .editorconfig ├── .github/ │ ├── CODEOWNERS │ ├── dependabot.yml │ ├── labels.yml │ ├── workflows/ │ │ ├── build.yml │ │ ├── labels.yml │ │ ├── released.yml │ │ └── zizmor.yml │ └── zizmor.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.properties ├── build.xml ├── go.mod ├── go.sum ├── main.go ├── main_386.go ├── main_amd64.go ├── main_arm.go ├── main_arm64.go └── res/ ├── papp.manifest └── run.iss ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # This file is for unifying the coding style for different editors and IDEs. # More information at http://editorconfig.org root = true [*] charset = utf-8 indent_size = 2 indent_style = space end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false [*.go] indent_style = tab ================================================ FILE: .github/CODEOWNERS ================================================ * @crazy-max ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "gomod" directory: "/" schedule: interval: "daily" cooldown: default-days: 2 labels: - ":game_die: dependencies" - ":robot: bot" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" cooldown: default-days: 2 labels: - ":game_die: dependencies" - ":robot: bot" ================================================ FILE: .github/labels.yml ================================================ ## more info https://github.com/crazy-max/ghaction-github-labeler - # bot name: ":robot: bot" color: "69cde9" description: "" - # broken name: ":zap: broken" color: "a3090e" description: "" - # bug name: ":bug: bug" color: "b60205" description: "" - # dependencies name: ":game_die: dependencies" color: "0366d6" description: "" - # documentation name: ":memo: documentation" color: "c5def5" description: "" - # duplicate name: ":busts_in_silhouette: duplicate" color: "cccccc" description: "" - # enhancement name: ":sparkles: enhancement" color: "0054ca" description: "" - # feature request name: ":bulb: feature request" color: "0e8a16" description: "" - # feedback name: ":mega: feedback" color: "03a9f4" description: "" - # future maybe name: ":rocket: future maybe" color: "fef2c0" description: "" - # good first issue name: ":hatching_chick: good first issue" color: "7057ff" description: "" - # help wanted name: ":pray: help wanted" color: "4caf50" description: "" - # hold name: ":hand: hold" color: "24292f" description: "" - # invalid name: ":no_entry_sign: invalid" color: "e6e6e6" description: "" - # maybe bug name: ":interrobang: maybe bug" color: "ff5722" description: "" - # needs more info name: ":thinking: needs more info" color: "795548" description: "" - # question name: ":question: question" color: "3f51b5" description: "" - # trademark-violation name: ":construction: trademark violation" color: "cfe524" description: "" - # upstream name: ":eyes: upstream" color: "fbca04" description: "" - # wontfix name: ":coffin: wontfix" color: "ffffff" description: "" ================================================ FILE: .github/workflows/build.yml ================================================ name: build concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true permissions: contents: read on: workflow_dispatch: push: branches: - 'master' tags: - '*' pull_request: jobs: build: uses: portapps/.github/.github/workflows/app-build.yml@9eaba04d36be175c7cc876ba5c57cdd9ee6d9536 # v1.1.0 permissions: contents: write # required to create a GitHub release on push with a tag ================================================ FILE: .github/workflows/labels.yml ================================================ name: labels concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true permissions: contents: read on: push: branches: - 'master' paths: - '.github/labels.yml' - '.github/workflows/labels.yml' pull_request: paths: - '.github/labels.yml' - '.github/workflows/labels.yml' jobs: labeler: runs-on: ubuntu-latest permissions: contents: read # same as global permissions issues: write # required to update labels steps: - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@548a7c3603594ec17c819e1239f281a3b801ab4d # v6.0.0 with: dry-run: ${{ github.event_name == 'pull_request' }} ================================================ FILE: .github/workflows/released.yml ================================================ name: released concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true permissions: contents: read on: release: types: [published] jobs: virustotal: uses: portapps/.github/.github/workflows/app-virustotal.yml@9eaba04d36be175c7cc876ba5c57cdd9ee6d9536 # v1.1.0 permissions: contents: write # required to write GitHub Release body secrets: vt_api_key: ${{ secrets.VT_API_KEY }} vt_monitor_api_key: ${{ secrets.VT_MONITOR_API_KEY }} ================================================ FILE: .github/workflows/zizmor.yml ================================================ name: zizmor concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true permissions: contents: read on: workflow_dispatch: push: branches: - 'master' pull_request: jobs: run: uses: crazy-max/.github/.github/workflows/zizmor.yml@d89fe92d808a15e2b2ed5cdb62db7c172c31410d # v1.6.0 permissions: actions: read contents: read security-events: write with: min-severity: medium min-confidence: medium persona: pedantic ================================================ FILE: .github/zizmor.yml ================================================ # https://docs.zizmor.sh/configuration/ rules: secrets-outside-env: disable: true ================================================ FILE: .gitignore ================================================ # Intellij /.idea /*.iml # App /.dev /bin /vendor /*.syso /*.exe /versioninfo.json ================================================ FILE: CHANGELOG.md ================================================ # Changelog ## 11.62.7-64 (2025/09/14) * Postman 11.62.7 * Portapps 3.17.0 ## 11.52.5-63 (2025/07/06) * Postman 11.52.5 ## 11.39.5-62 (2025/04/06) * Postman 11.39.5 * Portapps 3.16.0 ## 11.19.0-61 (2024/11/10) * Postman 11.19.0 * Portapps 3.14.1 ## 11.6.1-60 (2024/08/03) * Postman 11.6.1 * Portapps 3.11.0 ## 10.24.0-59 (2024/03/10) * Postman 10.24.0 * Portapps 3.10.0 ## 10.21.0-58 (2023/12/24) * Postman 10.21.0 * Portapps 3.9.0 ## 10.15.0-57 (2023/07/08) * Postman 10.15.0 * Portapps 3.8.0 ## 10.8.0-56 (2023/01/16) * Postman 10.8.0 * Portapps 3.7.0 ## 10.0.1-55 (2022/10/04) * Postman 10.0.1 ## 9.27.0-54 (2022/08/13) * Postman 9.27.0 ## 9.22.2-53 (2022/07/15) * Postman 9.22.2 * Portapps 3.6.0 ## 9.8.2-52 (2022/01/08) * Postman 9.8.2 * Portapps 3.4.0 ## 9.1.2-51 (2021/10/27) * Postman 9.1.2 * Portapps 3.3.1 ## 8.5.1-50 (2021/06/03) * Postman 8.5.1 ## 8.2.2-49 (2021/04/14) * Postman 8.2.2 * Portapps 3.3.0 * No more win32 release ## 8.0.5-48 (2021/02/15) * Postman 8.0.5 * Portapps 3.2.1 ## 7.36.0-47 (2020/12/03) * Postman 7.36.0 * Portapps 3.0.0 ## 7.34.0-46 (2020/11/16) * Postman 7.34.0 ## 7.33.1-45 (2020/09/24) * Postman 7.33.1 ## 7.31.1-44 (2020/09/04) * Postman 7.31.1 ## 7.30.1-43 (2020/08/24) * Postman 7.30.1 * Portapps 2.6.0 ## 7.29.0-42 (2020/08/03) * Postman 7.29.0 * Portapps 2.5.0 ## 7.28.0-41 (2020/07/15) * Postman 7.28.0 ## 7.27.0-40 (2020/07/04) * Postman 7.27.0 ## 7.26.1-39 (2020/06/21) * Postman 7.26.1 ## 7.25.3-38 (2020/06/07) * Postman 7.25.3 * Portapps 2.4.4 ## 7.24.0-37 (2020/05/19) * Postman 7.24.0 * Portapps 2.3.0 ## 7.23.0-36 (2020/05/03) * Postman 7.23.0 * Portapps 2.2.4 ## 7.22.0-35 (2020/04/13) * Postman 7.22.1 * Portapps 2.1.2 ## 7.21.1-34 (2020/03/25) * Postman 7.21.1 ## 7.20.1-33 (2020/03/18) * Postman 7.20.1 ## 7.19.1-32 (2020/03/02) * Postman 7.19.1 ## 7.18.1-31 (2020/02/20) * Postman 7.18.1 ## 7.18.0-30 (2020/02/12) * Postman 7.18.0 ## 7.17.0-29 (2020/02/03) * Postman 7.17.0 ## 7.16.1-28 (2020/01/23) * Postman 7.16.1 ## 7.14.0-27 (2019/12/18) * Postman 7.14.0 * Add `cleanup` config * Portapps 1.31.0 ## 7.13.0-26 (2019/12/05) * Postman 7.13.0 ## 7.12.0-25 (2019/11/25) * Postman 7.12.0 ## 7.11.0-24 (2019/11/09) * Postman 7.11.0 * Portapps 1.30.1 ## 7.10.0-23 (2019/10/24) * Postman 7.10.0 ## 7.9.0-22 (2019/10/11) * Postman 7.9.0 * Portapps 1.28.0 ## 7.8.0-21 (2019/09/27) * Postman 7.8.0 ## 7.7.3-20 (2019/09/23) * Postman 7.7.3 ## 7.7.2-19 (2019/09/18) * Postman 7.7.2 * Portapps 1.26.1 ## 7.6.0-18 (2019/08/29) * Postman 7.6.0 * Portapps 1.26.0 ## 7.5.0-17 (2019/08/12) * Postman 7.5.0 ## 7.3.6-16 (2019/08/06) * Postman 7.3.6 * Portapps 1.25.0 ## 7.3.5-15 (2019/08/03) * Postman 7.3.5 ## 7.3.4-14 (2019/07/22) * Postman 7.3.4 ## 7.2.2-13 (2019/06/20) * Postman 7.2.2 ## 7.2.1-12 (2019/06/18) * Postman 7.2.1 ## 7.2.0-11 (2019/06/13) * Postman 7.2.0 ## 7.1.1-10 (2019/05/20) * Postman 7.1.1 ## 7.1.0-9 (2019/05/16) * Postman 7.1.0 * Portapps 1.24.1 * Postman allows Portapps to use their logo (Issue #7) ## 7.0.9-8 (2019/05/14) * Trademark Policy violation report (Issue #6) * Portapps 1.23.0 ## 7.0.9-7 (2019/04/22) * Postman 7.0.9 * Portapps 1.22.1 ## 7.0.8-6 (2019/04/12) * Postman 7.0.8 ## 7.0.7-5 (2019/03/29) * Postman 7.0.7 * Portapps 1.21.0 ## 7.0.6-4 (2019/03/14) * Postman 7.0.6 ## 7.0.5-3 (2019/03/11) * Postman 7.0.5 * Portapps 1.20.2 ## 6.7.4-2 (2019/02/26) * Postman 6.7.4 ## 6.7.3-1 (2019/02/05) * Postman 6.7.3 * Switch to TravisCI ## 6.7.2-14 (2019/01/25) * Postman 6.7.2 ## 6.7.1-13 (2019/01/10) * Postman 6.7.1 ## 6.6.1-12 (2018/12/11) * Postman 6.6.1 ## 6.5.3-11 (2018/11/27) * Postman 6.5.3 ## 6.5.2-10 (2018/11/09) * Postman 6.5.2 ## 6.4.4-9 (2018/10/26) * Postman 6.4.4 ## 6.3.0-8 (2018/09/26) * Postman 6.3.0 * Go 1.11 * Use [go mod](https://golang.org/cmd/go/#hdr-Module_maintenance) instead of `dep` ## 6.2.4-7 (2018/08/11) * Postman 6.2.4 ## 6.2.3-6 (2018/08/03) * Postman 6.2.3 ## 6.1.4-5 (2018/07/05) * Postman 6.1.4 ## 6.1.3-4 (2018/05/26) * Postman 6.1.3 ## 6.1.2-3 (2018/05/23) * Postman 6.1.2 ## 6.0.10-2 (2018/04/20) * Postman 6.0.10 ## 6.0.9-1 (2018/03/07) * Initial version based on Postman 6.0.9 ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018-2026 CrazyMax Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================
## Notice of Non-Affiliation and Disclaimer Portapps is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Postman™, or any of its subsidiaries or its affiliates. The official Postman™ website can be found at https://www.getpostman.com/. The name Postman™ as well as related names, marks, emblems and images are registered trademarks of their respective owners. ## About Postman™ portable app made with 🚀 [Portapps](https://portapps.io).