├── .github └── workflows │ └── github_pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── donate.md ├── meshtxt.service ├── package-lock.json ├── package.json ├── postcss.config.js ├── screenshots ├── 1_connect.png ├── 2_channels.png ├── 3_nodes.png ├── 4_direct_messages.png ├── 5_trace_routes.png └── screenshot.png ├── server.js ├── src ├── components │ ├── App.vue │ ├── AppBar.vue │ ├── DropDownMenu.vue │ ├── DropDownMenuItem.vue │ ├── FetchingDataInfo.vue │ ├── Header.vue │ ├── IconButton.vue │ ├── RefreshButton.vue │ ├── SaveButton.vue │ ├── TextButton.vue │ ├── TraceRouteSnrLabel.vue │ ├── channels │ │ ├── ChannelListItem.vue │ │ ├── ChannelPskBadge.vue │ │ └── ChannelsList.vue │ ├── connect │ │ └── ConnectButtons.vue │ ├── messages │ │ └── MessageViewer.vue │ ├── nodes │ │ ├── NodeDropDownMenu.vue │ │ ├── NodeIcon.vue │ │ ├── NodeListItem.vue │ │ └── NodesList.vue │ └── pages │ │ ├── ChannelMessagesPage.vue │ │ ├── ConnectPage.vue │ │ ├── ConnectViaHttpPage.vue │ │ ├── MainPage.vue │ │ ├── NodeFilesPage.vue │ │ ├── NodeMessagesPage.vue │ │ ├── NodePage.vue │ │ ├── NodeRunTraceRoutePage.vue │ │ ├── NodeTraceRoutesPage.vue │ │ ├── Page.vue │ │ ├── TraceRoutePage.vue │ │ └── settings │ │ ├── NodeChannelSettingsPage.vue │ │ ├── NodeChannelsSettingsPage.vue │ │ ├── NodeSettingsList.vue │ │ ├── NodeSettingsPage.vue │ │ └── NodeUserSettingsPage.vue ├── index.html ├── js │ ├── ChannelUtils.js │ ├── Connection.js │ ├── Database.js │ ├── DeviceUtils.js │ ├── DialogUtils.js │ ├── FileTransferAPI.js │ ├── FileTransferrer.js │ ├── GlobalState.js │ ├── MessageUtils.js │ ├── NodeAPI.js │ ├── NodeUtils.js │ ├── PacketUtils.js │ ├── SecurityUtils.js │ ├── TimeUtils.js │ └── exceptions │ │ └── RoutingError.js ├── main.js ├── public │ ├── icon.png │ ├── manifest.json │ ├── protos │ │ └── file_transfer.proto │ └── service-worker.js └── style.css ├── tailwind.config.js └── vite.config.js /.github/workflows/github_pages.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to GitHub Pages 2 | 3 | on: 4 | # Runs on pushes targeting the default branch 5 | push: 6 | branches: ['master'] 7 | 8 | # Allows you to run this workflow manually from the Actions tab 9 | workflow_dispatch: 10 | 11 | # Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages 12 | permissions: 13 | contents: read 14 | pages: write 15 | id-token: write 16 | 17 | # Allow one concurrent deployment 18 | concurrency: 19 | group: 'pages' 20 | cancel-in-progress: true 21 | 22 | jobs: 23 | deploy: 24 | environment: 25 | name: github-pages 26 | url: ${{ steps.deployment.outputs.page_url }} 27 | runs-on: ubuntu-latest 28 | steps: 29 | 30 | - name: Checkout 31 | uses: actions/checkout@v4 32 | 33 | - name: Set up Node 34 | uses: actions/setup-node@v4 35 | with: 36 | node-version: 20 37 | cache: 'npm' 38 | 39 | - name: Install Dependencies 40 | run: npm ci 41 | 42 | - name: Build 43 | run: npm run build 44 | 45 | - name: Setup Pages 46 | uses: actions/configure-pages@v4 47 | 48 | - name: Upload Artifact 49 | uses: actions/upload-pages-artifact@v3 50 | with: 51 | # Upload dist folder 52 | path: './dist' 53 | 54 | - name: Deploy to GitHub Pages 55 | id: deployment 56 | uses: actions/deploy-pages@v4 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Liam Cottle 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 |
{{ JSON.stringify(traceRoute, null, 4) }}141 |