Skip to content

Commit 7f524d9

Browse files
authored
Merge branch 'master' into debug-detail
2 parents 962c231 + 67f9cba commit 7f524d9

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ With GSConnect you can securely connect to mobile devices and other desktops to:
1818
Please see the **[Wiki][wiki]** for more information about
1919
**[Features][features]** and **[Help][help]**.
2020

21-
[<img src="https://raw.githubusercontent.com/andyholmes/gnome-shell-extensions-badge/master/get-it-on-ego.svg?sanitize=true" alt="Get it on GNOME Extensions" height="100" align="middle">][ego] [<img alt="Available in the Chrome Web Store" src="https://storage.googleapis.com/chrome-gcs-uploader.appspot.com/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/UV4C4ybeBTsZt43U4xis.png" align="middle" hspace="12"/>][chrome] [<img src="https://addons.cdn.mozilla.net/static/img/addons-buttons/AMO-button_1.png" alt="Get the Add-On" align="middle">][firefox]
21+
[<img src="https://raw.githubusercontent.com/andyholmes/gnome-shell-extensions-badge/master/get-it-on-ego.svg?sanitize=true" alt="Get it on GNOME Extensions" height="100" align="middle">][ego] [<img alt="Available in the Chrome Web Store" src="https://storage.googleapis.com/chrome-gcs-uploader.appspot.com/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/UV4C4ybeBTsZt43U4xis.png" align="middle" hspace="12"/>][chrome] [<img src="https://ffp4g1ylyit3jdyti1hqcvtb-wpengine.netdna-ssl.com/addons/files/2015/11/get-the-addon.png" alt="Get the Add-On" align="middle">][firefox]
2222

2323
[ego]: https://extensions.gnome.org/extension/1319/gsconnect/
2424
[chrome]: https://chrome.google.com/webstore/detail/gsconnect/jfnifeihccihocjbfcfhicmmgpjicaec

data/metainfo/org.gnome.Shell.Extensions.GSConnect.metainfo.xml.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@
4949
</description>
5050

5151
<releases>
52+
<release version="50" date="2022-03-19">
53+
<url>https://github.com/GSConnect/gnome-shell-extension-gsconnect/releases/tag/v50</url>
54+
</release>
55+
<release version="49" date="2022-03-19">
56+
<url>https://github.com/GSConnect/gnome-shell-extension-gsconnect/releases/tag/v49</url>
57+
</release>
5258
<release version="48" date="2021-10-03">
5359
<url>https://github.com/GSConnect/gnome-shell-extension-gsconnect/releases/tag/v48</url>
5460
</release>

src/service/plugins/connectivity_report.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,8 @@ var Plugin = GObject.registerClass({
9090
return 'network-cellular-gprs-symbolic';
9191
else if (this.network_type === 'HSPA')
9292
return 'network-cellular-hspa-symbolic';
93-
// FIXME: No icon for this!
94-
// https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/issues/114
9593
else if (this.network_type === '5G')
96-
return 'network-cellular-symbolic';
94+
return 'network-cellular-5g-symbolic';
9795

9896
return 'network-cellular-symbolic';
9997
}

0 commit comments

Comments
 (0)