Skip to content

Commit

Permalink
Merge branch 'main' into raise-python-level
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc authored Jun 1, 2024
2 parents 7589a18 + 6729b2f commit a17313e
Show file tree
Hide file tree
Showing 8 changed files with 372 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@

[flake8]
extend-ignore = E402
max-line-length = 80

2 changes: 1 addition & 1 deletion .github/workflows/label-conflicts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
pull-requests: write
steps:
- name: check if PRs are mergeable
uses: eps1lon/[email protected].1
uses: eps1lon/[email protected].2
with:
dirtyLabel: "conflicts"
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
6 changes: 5 additions & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ Source: https://github.com/GSConnect/gnome-shell-extension-gsconnect
# Copyright: $YEAR $NAME <$CONTACT>
# License: ...

Files: data/icons/* data/images/* data/metainfo/*.png
Files: data/icons/* data/images/chrome-badge.png data/images/enter-keyboard-shortcut.svg data/metainfo/*.png
Copyright: GSConnect Developers <>
License: GPL-2.0-or-later

Files: data/images/firefox-badge.png
Copyright: 1998–2024 by individual mozilla.org contributors <>
License: CC-BY-SA-3.0

Files: po/*.po po/*.pot
Copyright: GSConnect Community
License: GPL-2.0-or-later
Expand Down
359 changes: 359 additions & 0 deletions LICENSES/CC-BY-SA-3.0.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SPDX-License-Identifier: GPL-2.0-or-later

# GSConnect

[<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]
[<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://raw.githubusercontent.com/GSConnect/gnome-shell-extension-gsconnect/main/data/images/chrome-badge.png" align="middle" hspace="12"/>][chrome] [<img src="https://raw.githubusercontent.com/GSConnect/gnome-shell-extension-gsconnect/main/data/images/firefox-badge.png" alt="Get the Add-On" align="middle">][firefox]

## Overview

Expand Down
Binary file modified data/images/firefox-badge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/service/components/clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const Clipboard = GObject.registerClass({
if (!globalThis.HAVE_GNOME) {
// Directly subscrible signal
this.signalHandler = Gio.DBus.session.signal_subscribe(
DBUS_NAME,
null,
DBUS_NAME,
'OwnerChange',
DBUS_PATH,
Expand Down
3 changes: 3 additions & 0 deletions src/service/plugins/share.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ const SharePlugin = GObject.registerClass({
];
iconName = 'document-save-symbolic';

const gtk_recent_manager = Gtk.RecentManager.get_default();
gtk_recent_manager.add_item(file.get_uri());

if (packet.body.open) {
const uri = file.get_uri();
Gio.AppInfo.launch_default_for_uri_async(uri, null, null, null);
Expand Down

0 comments on commit a17313e

Please sign in to comment.