chore: publish PORTA Assist 0.6.5 (initial dist seed)
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
commit
3dcab64ab1
10 changed files with 241 additions and 0 deletions
BIN
PortaAssist-Setup-0.4.0.exe
Normal file
BIN
PortaAssist-Setup-0.4.0.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.0.exe
Normal file
BIN
PortaAssist-Setup-0.6.0.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.1.exe
Normal file
BIN
PortaAssist-Setup-0.6.1.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.2.exe
Normal file
BIN
PortaAssist-Setup-0.6.2.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.3.exe
Normal file
BIN
PortaAssist-Setup-0.6.3.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.4.exe
Normal file
BIN
PortaAssist-Setup-0.6.4.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.5-x64.exe
Normal file
BIN
PortaAssist-Setup-0.6.5-x64.exe
Normal file
Binary file not shown.
BIN
PortaAssist-Setup-0.6.5-x86.exe
Normal file
BIN
PortaAssist-Setup-0.6.5-x86.exe
Normal file
Binary file not shown.
28
README.md
Normal file
28
README.md
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
# PORTA Assist - Download
|
||||||
|
|
||||||
|
**Aktuelles Release: 0.6.5**
|
||||||
|
|
||||||
|
| Office | Datei | Download |
|
||||||
|
|--------|-------|----------|
|
||||||
|
| **64-Bit** | `PortaAssist-Setup-0.6.5-x64.exe` | [Download](https://git.poweron.swiss/PowerOn/service-porta-assist-dist/raw/branch/main/PortaAssist-Setup-0.6.5-x64.exe) |
|
||||||
|
| **32-Bit** | `PortaAssist-Setup-0.6.5-x86.exe` | [Download](https://git.poweron.swiss/PowerOn/service-porta-assist-dist/raw/branch/main/PortaAssist-Setup-0.6.5-x86.exe) |
|
||||||
|
|
||||||
|
## Office-Bitness
|
||||||
|
|
||||||
|
In Word/Outlook: **Datei -> Konto -> Info** -> "64-Bit" oder "32-Bit".
|
||||||
|
Das muss zur Setup-Datei passen (nicht die Windows-Bitness).
|
||||||
|
|
||||||
|
## SHA256
|
||||||
|
|
||||||
|
| Datei | SHA256 |
|
||||||
|
|-------|--------|
|
||||||
|
| `PortaAssist-Setup-0.6.5-x64.exe` | `3BA4ABE7D73BDE82014A1B5A2D45E5755BCA8C9E52E31F7AF3752F4AD79B3AEC` |
|
||||||
|
| `PortaAssist-Setup-0.6.5-x86.exe` | `60E7A5DC7E48C7A73C4E765006FC59AF740866A5887BD3AF4A42356FACD953A7` |
|
||||||
|
|
||||||
|
## Hinweise
|
||||||
|
|
||||||
|
- Word / Outlook / Excel / PowerPoint vor der Installation schliessen.
|
||||||
|
- Noch nicht code-signiert (IMS M-17) - SmartScreen-Warnung moeglich; Hash pruefen.
|
||||||
|
- HTML-Downloadseite: [index.html](https://git.poweron.swiss/PowerOn/service-porta-assist-dist/raw/branch/main/index.html) (Raw-URL im Browser oeffnen).
|
||||||
|
|
||||||
|
Aeltere Versionen liegen als weitere `.exe` in diesem Ordner (Archiv).
|
||||||
213
index.html
Normal file
213
index.html
Normal file
|
|
@ -0,0 +1,213 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>PORTA Assist - Download</title>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--ink: #0f1c2e;
|
||||||
|
--muted: #4a5a6d;
|
||||||
|
--line: #d5dde6;
|
||||||
|
--paper: #f3f6f9;
|
||||||
|
--card: #ffffff;
|
||||||
|
--accent: #0b6e4f;
|
||||||
|
--accent-ink: #ffffff;
|
||||||
|
--warn: #6b4f1d;
|
||||||
|
--warn-bg: #f7f0de;
|
||||||
|
}
|
||||||
|
* { box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
min-height: 100vh;
|
||||||
|
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
||||||
|
color: var(--ink);
|
||||||
|
background:
|
||||||
|
radial-gradient(1200px 500px at 10% -10%, #dce9f4 0%, transparent 55%),
|
||||||
|
radial-gradient(900px 400px at 100% 0%, #d8ebe3 0%, transparent 50%),
|
||||||
|
var(--paper);
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
width: min(720px, calc(100% - 2rem));
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 3.5rem 0 4rem;
|
||||||
|
}
|
||||||
|
.brand {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
letter-spacing: 0.14em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--muted);
|
||||||
|
margin: 0 0 0.75rem;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: clamp(2rem, 5vw, 2.75rem);
|
||||||
|
line-height: 1.1;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
}
|
||||||
|
.lead {
|
||||||
|
margin: 1rem 0 0;
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 1.05rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
max-width: 36rem;
|
||||||
|
}
|
||||||
|
.version {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: 1.25rem;
|
||||||
|
padding: 0.25rem 0.65rem;
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
border-radius: 999px;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
color: var(--muted);
|
||||||
|
background: var(--card);
|
||||||
|
}
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
gap: 1rem;
|
||||||
|
margin-top: 2.25rem;
|
||||||
|
}
|
||||||
|
@media (min-width: 640px) {
|
||||||
|
.grid { grid-template-columns: 1fr 1fr; }
|
||||||
|
}
|
||||||
|
a.card {
|
||||||
|
display: block;
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
background: var(--card);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
border-radius: 14px;
|
||||||
|
padding: 1.35rem 1.25rem 1.25rem;
|
||||||
|
transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
|
||||||
|
box-shadow: 0 1px 0 rgba(15, 28, 46, 0.04);
|
||||||
|
}
|
||||||
|
a.card:hover {
|
||||||
|
border-color: var(--accent);
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 10px 24px rgba(15, 28, 46, 0.08);
|
||||||
|
}
|
||||||
|
a.card h2 {
|
||||||
|
margin: 0 0 0.35rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
a.card p {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 0.95rem;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
a.card .cta {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: 1.1rem;
|
||||||
|
padding: 0.55rem 0.9rem;
|
||||||
|
border-radius: 8px;
|
||||||
|
background: var(--accent);
|
||||||
|
color: var(--accent-ink);
|
||||||
|
font-size: 0.92rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
a.card .file {
|
||||||
|
margin-top: 0.85rem;
|
||||||
|
font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
|
||||||
|
font-size: 0.72rem;
|
||||||
|
color: var(--muted);
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
.hint, .warn, .hash {
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
padding: 1rem 1.1rem;
|
||||||
|
border-radius: 12px;
|
||||||
|
font-size: 0.92rem;
|
||||||
|
line-height: 1.45;
|
||||||
|
}
|
||||||
|
.hint {
|
||||||
|
background: var(--card);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
color: var(--muted);
|
||||||
|
}
|
||||||
|
.warn {
|
||||||
|
background: var(--warn-bg);
|
||||||
|
border: 1px solid #e2d3a8;
|
||||||
|
color: var(--warn);
|
||||||
|
}
|
||||||
|
.hash {
|
||||||
|
background: var(--card);
|
||||||
|
border: 1px solid var(--line);
|
||||||
|
}
|
||||||
|
.hash code {
|
||||||
|
display: block;
|
||||||
|
margin-top: 0.35rem;
|
||||||
|
font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
|
||||||
|
font-size: 0.72rem;
|
||||||
|
word-break: break-all;
|
||||||
|
color: var(--ink);
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
margin-top: 2.5rem;
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 0.85rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
footer a { color: var(--accent); }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<p class="brand">PORTA · PowerOn</p>
|
||||||
|
<h1>PORTA Assist</h1>
|
||||||
|
<p class="lead">
|
||||||
|
Office-Add-in für Word, Outlook, Excel und PowerPoint.
|
||||||
|
Bitte die Version wählen, die zu Ihrer Office-Installation passt
|
||||||
|
(nicht zur Windows-Bitness).
|
||||||
|
</p>
|
||||||
|
<span class="version">Aktuelles Release 0.6.5</span>
|
||||||
|
|
||||||
|
<div class="grid">
|
||||||
|
<a class="card" href="https://git.poweron.swiss/PowerOn/service-porta-assist-dist/raw/branch/main/PortaAssist-Setup-0.6.5-x64.exe" download="PortaAssist-Setup-0.6.5-x64.exe">
|
||||||
|
<h2>64-Bit Office</h2>
|
||||||
|
<p>Standard bei den meisten Microsoft-365-Installationen.</p>
|
||||||
|
<span class="cta">Download x64</span>
|
||||||
|
<div class="file">PortaAssist-Setup-0.6.5-x64.exe</div>
|
||||||
|
</a>
|
||||||
|
<a class="card" href="https://git.poweron.swiss/PowerOn/service-porta-assist-dist/raw/branch/main/PortaAssist-Setup-0.6.5-x86.exe" download="PortaAssist-Setup-0.6.5-x86.exe">
|
||||||
|
<h2>32-Bit Office</h2>
|
||||||
|
<p>Wenn unter Datei → Konto → Info «32-Bit» steht.</p>
|
||||||
|
<span class="cta">Download x86</span>
|
||||||
|
<div class="file">PortaAssist-Setup-0.6.5-x86.exe</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="hint">
|
||||||
|
<strong>Office-Bitness prüfen:</strong> Word oder Outlook öffnen →
|
||||||
|
<em>Datei → Konto → Info zu Word/Outlook</em> → Zeile mit «64-Bit» oder «32-Bit».
|
||||||
|
Vor der Installation Word, Outlook, Excel und PowerPoint schliessen.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warn">
|
||||||
|
<strong>SmartScreen:</strong> Die Builds sind noch nicht code-signiert (IMS M-17).
|
||||||
|
Edge: «… → Behalten». Beim Start: «Weitere Informationen → Trotzdem ausführen».
|
||||||
|
Hash unten mit <code>Get-FileHash … -Algorithm SHA256</code> vergleichen.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="hash">
|
||||||
|
<strong>SHA256 (0.6.5)</strong>
|
||||||
|
<div style="margin-top:0.75rem">
|
||||||
|
<div>64-Bit</div>
|
||||||
|
<code>3BA4ABE7D73BDE82014A1B5A2D45E5755BCA8C9E52E31F7AF3752F4AD79B3AEC</code>
|
||||||
|
</div>
|
||||||
|
<div style="margin-top:0.75rem">
|
||||||
|
<div>32-Bit</div>
|
||||||
|
<code>60E7A5DC7E48C7A73C4E765006FC59AF740866A5887BD3AF4A42356FACD953A7</code>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
Generiert 2026-08-01 15:16 UTC · Quellordner
|
||||||
|
<a href="https://git.poweron.swiss/PowerOn/service-porta-assist-dist/src/branch/main">https://git.poweron.swiss/PowerOn/service-porta-assist-dist/src/branch/main</a><br />
|
||||||
|
Installationshilfe: <code>docs/INSTALL.md</code> im Repo
|
||||||
|
<code>service-porta-assist</code>.
|
||||||
|
</footer>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in a new issue