* Rename logo and add 32x32 version * Set timer icon if a timer is running * Do not query activities on initialization * Show timer in bubble if timed activity exists * Pass timed activity to App * Code cleanup * Show timer view and stop timer * Make hours optional * Use booked seconds instead of hours * Add type submit to form button * Define colors as sass variables⎄ * Style timer view * Show start timer submit label * Update view layouts and content * Update version and changelog * Dyanically set iframe height * Reduce h1 font size * Add svg webpack loader * Parse empty string (TimeInputParser) * Forward ref in Popup component * Start time on current day only, format buttons * Improve styling * Set standard height as iframe default height, validate form * Upgrade packages to supress react warning * Show activity form in popup after timer was stoped * Use stop-watch icon in timer view * Fix empty description * Close TimerView if timer stopped for current service * Style timerview * Improve timer view styling * qw/setting-time-tracking-hh-mm (#24) * Format duration depending on settingTimeTrackingHHMM * Fix formatDuation without second argument * Fix time format after updating bubble * Add tests for formatDuration
38 lines
1008 B
JavaScript
38 lines
1008 B
JavaScript
import React from "react"
|
|
import { isChrome } from "utils/browser"
|
|
import logo from "images/moco-159x159.png"
|
|
import firefoxAddons from "images/firefox_addons.png"
|
|
|
|
const UpgradeRequiredError = () => (
|
|
<div className="moco-bx-error-container">
|
|
<img
|
|
className="moco-bx-logo"
|
|
src={logo}
|
|
style={{ width: "48px", height: "48px" }}
|
|
alt="MOCO logo"
|
|
/>
|
|
<h1>Bitte aktualisieren</h1>
|
|
<p>Die installierte MOCO Browser-Erweiterung ist veraltet — bitte aktualisieren.</p>
|
|
{isChrome() ? (
|
|
<button
|
|
className="moco-bx-btn"
|
|
onClick={() => chrome.runtime.sendMessage({ type: "openExtensions" })}
|
|
>
|
|
Browser-Erweiterungen öffnen
|
|
</button>
|
|
) : (
|
|
<>
|
|
<p>Unter folgender URL:</p>
|
|
<img
|
|
className="firefox-addons"
|
|
src={firefoxAddons}
|
|
style={{ width: "292px", height: "40px" }}
|
|
alt="about:addons"
|
|
/>
|
|
</>
|
|
)}
|
|
</div>
|
|
)
|
|
|
|
export default UpgradeRequiredError
|