-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f01132f
commit ab23cbf
Showing
4 changed files
with
118 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Import CSS and Scripts--> | ||
<link rel="stylesheet" href="/css/main.css"> | ||
<link rel="stylesheet" href="/css/light-theme.css"> | ||
<link rel="stylesheet" href="/css/dark-theme.css"> | ||
<script src="/scripts/theme.js"></script> | ||
<!-- Scale page to display width --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<!-- Page Title --> | ||
<title>Desktop v7.4 - Signal Update Info</title> | ||
<!-- Favicons --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicons/favicon-16x16.png"> | ||
<!-- Meta --> | ||
<meta name="title" property="og:title" content="Signal for Desktop v7.4" /> | ||
<meta name="description" property="og:description" | ||
content="Signal news and updates. We post about new and upcoming features to keep you up-to-date with your favorite E2EE messaging app." /> | ||
<meta name="keywords" content="signal update info,signal updates,signal" /> | ||
<meta name="image" property="og:image" content="https://signalupdateinfo.com/assets/images/ogimage.jpg" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://signalupdateinfo.com/releases/desktop/desktop-v7.4.html" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Site Header and Navigation--> | ||
<header> | ||
<a href="/index.html"> | ||
<h1 class="site-title">Signal Update Info</h1> | ||
</a> | ||
<img class="theme-button-desktop" id="theme-button-desktop" src="/assets/images/icons/theme-auto.svg"> | ||
<div class="site-navigation"> | ||
<a class="selected-page" href="/releases.html#desktop"> | ||
Releases | ||
</a> | ||
<a href="/news.html"> | ||
News | ||
</a> | ||
<a href="/about.html"> | ||
About | ||
</a> | ||
<a href="/donate.html"> | ||
Donate | ||
</a> | ||
</div> | ||
</header> | ||
<!-- Main Page --> | ||
<main> | ||
<div class="release-page-card-container"> | ||
<!-- Release Info Card --> | ||
<div class="card"> | ||
<h1>Desktop v7.4</h1> | ||
<div class="card-content"> | ||
<p>Official Release Notes</p> | ||
<ul> | ||
<li>This update clears out a few bugs just in time for spring cleaning, including more | ||
consistent conversation sort logic and improved behavior if the app encounters DNS lookup | ||
timeouts due to poor network connectivity. | ||
</li> | ||
</ul> | ||
<!-- <br> | ||
<p>Other Changes</p> | ||
<ul> | ||
<li> <a target="_blank" | ||
href="https://github.com/signalapp/Signal-Desktop/commit/e736470f92374cc618af1a02c450062c9ec567b1">[src]</a> | ||
</li> | ||
</ul> --> | ||
<!-- <br> | ||
<p>Upcoming Features</p> | ||
<ul> | ||
<li> | ||
<a target="_blank" | ||
href="https://github.com/signalapp/Signal-Desktop/commit/96b3413febf007981579afb399ee6ddfa5300dc4">[src]</a> | ||
</li> | ||
</ul> --> | ||
</div> | ||
</div> | ||
<!-- Resources Card --> | ||
<div class="slim-card"> | ||
<h1>Resources</h1> | ||
<div class="card-content"> | ||
<a target="_blank" | ||
href="https://community.signalusers.org/t/beta-feedback-for-the-upcoming-desktop-7-4-release/59773?u=salt505">Beta | ||
thread</a> | ||
<a target="_blank" | ||
href="https://github.com/signalapp/Signal-Desktop/compare/v7.3.0-beta.1...v7.4.0-beta.1">Commits</a> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
<div class="spacer"></div> | ||
<footer> | ||
<a rel="me" target="_blank" href="https://mastodon.world/@SignalUpdateInfo">Mastodon</a> | ||
<p>-</p> | ||
<a target="_blank" href="https://github.com/tedgravlin/signal-update-info">GitHub</a> | ||
<br> | ||
<div class="theme-button-mobile " id="theme-button-mobile"> | ||
<p>Theme:</p> | ||
<img class="theme-icon-mobile" id="theme-icon-mobile" src="/assets/images/icons/theme-auto.svg"> | ||
</div> | ||
<p class="disclaimer">Signal Update Info is not affiliated with Signal and is not an official Signal website. | ||
</p> | ||
</footer> | ||
</body> | ||
|
||
</html> |