Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,21 @@ jobs:
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
with:
tagName: ${{ github.ref_name }}
releaseName: PoPManager ${{ github.ref_name }}
releaseName: OverManager ${{ github.ref_name }}
releaseBody: |
See the [full changelog](https://github.com/proofofprints/PoPManager/compare/v0.1.0...${{ github.ref_name }}) for all changes in this release.
See the [full changelog](https://github.com/overbuildlabs/OverManager/commits/${{ github.ref_name }}) for all changes in this release.

## Installation

| Platform | Download |
|---|---|
| **Windows** (x64) | `.msi` installer |
| **Windows** (x64) | `.exe` installer |
| **macOS** (Apple Silicon) | `.dmg` (aarch64) |
| **macOS** (Intel) | `.dmg` (x64) |
| **Linux** (x64) | `.deb` or `.AppImage` |

### Windows first-launch notes
- **SmartScreen warning:** PoPManager is not yet code-signed. Click "More info" → "Run anyway" on the SmartScreen dialog.
- **SmartScreen warning:** OverManager is not yet code-signed. Click "More info" → "Run anyway" on the SmartScreen dialog.
- **Firewall prompt:** If you enable the mobile miner server (Settings → Mobile Miner Server), Windows will prompt to allow connections on port 8787.

> **Note:** Only Windows has been extensively tested. macOS and Linux builds are provided as-is — please report any platform-specific issues.
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ export default function Dashboard() {
)}
</div>
</div>
<div className="grid grid-cols-2 sm:grid-cols-4 gap-3">
<div className="grid grid-cols-2 gap-3">
<div className="bg-dark-900 rounded-lg p-3">
<p className="text-xs text-slate-400 mb-1">Total Miners</p>
<p className="text-xl font-bold text-white">{count}</p>
Expand All @@ -870,7 +870,7 @@ export default function Dashboard() {
</p>
</div>
</div>
<div className="grid grid-cols-2 sm:grid-cols-4 gap-3 mt-3">
<div className="grid grid-cols-2 gap-3 mt-3">
<div className="bg-dark-900 rounded-lg p-3">
<p className="text-xs text-slate-400 mb-1">Hashrate</p>
<p className="text-xl font-bold text-white">{totalHashrate.toFixed(1)}</p>
Expand Down
Loading