pax_global_header 0000666 0000000 0000000 00000000064 14215434441 0014514 g ustar 00root root 0000000 0000000 52 comment=a126eef49f27f0c704f93ab93f40d4cc78ce47fd
gnome-shell-extension-gsconnect-50/ 0000775 0000000 0000000 00000000000 14215434441 0017507 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/.editorconfig 0000664 0000000 0000000 00000001237 14215434441 0022167 0 ustar 00root root 0000000 0000000 # Topmost editorconfig for project, don't ascend
# to parent directories when scanning configs
root = true
# All files: UTF-8 with Unix-style newlines,
# and a newline at the end of the file
[*]
insert_final_newline = true
end_of_line = lf
charset = utf-8
# JavaScript, Python, CSS: 4-space indents
[*.{js,py,css}]
indent_style = space
indent_size = 4
# XML, Meson, Glade: 2-space indents
[*.{xml,build,ui}]
indent_style = space
indent_size = 2
# Most JSON: 2-space indents
[*.json]
indent_style = space
indent_size = 2
# WebExtension templates: 4-space indents
[data/org.gnome.shell.extensions.gsconnect.json-{chrome,mozilla}]
indent_style = space
indent_size = 4
gnome-shell-extension-gsconnect-50/.eslintrc.json 0000664 0000000 0000000 00000017516 14215434441 0022315 0 ustar 00root root 0000000 0000000 {
"env": {
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"array-bracket-newline": [
"error",
"consistent"
],
"array-bracket-spacing": [
"error",
"never"
],
"array-callback-return": "error",
"arrow-spacing": "error",
"block-scoped-var": "error",
"block-spacing": "error",
"brace-style": "error",
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"functions": "never"
}
],
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"comma-style": [
"error",
"last"
],
"computed-property-spacing": "error",
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"dot-location": [
"error",
"property"
],
"eol-last": "error",
"eqeqeq": "error",
"func-call-spacing": "error",
"func-name-matching": "error",
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
],
"indent": [
"error",
4,
{
"ignoredNodes": [
"CallExpression[callee.object.name=GObject][callee.property.name=registerClass] > ClassExpression:first-child"
],
"MemberExpression": "off",
"SwitchCase": 1
}
],
"key-spacing": [
"error",
{
"beforeColon": false,
"afterColon": true
}
],
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"linebreak-style": [
"error",
"unix"
],
"lines-between-class-members": "error",
"max-nested-callbacks": "error",
"max-statements-per-line": "error",
"new-parens": "error",
"no-array-constructor": "error",
"no-caller": "error",
"no-constant-condition": [
"error",
{
"checkLoops": false
}
],
"no-empty": [
"error",
{
"allowEmptyCatch": true
}
],
"no-extra-bind": "error",
"no-implicit-coercion": [
"error",
{
"allow": [
"!!"
]
}
],
"no-iterator": "error",
"no-label-var": "error",
"no-lonely-if": "error",
"no-loop-func": "error",
"no-nested-ternary": "error",
"no-new-object": "error",
"no-new-wrappers": "error",
"no-octal-escape": "error",
"no-proto": "error",
"no-prototype-builtins": "off",
"no-restricted-properties": [
"error",
{
"object": "Lang",
"property": "bind",
"message": "Use arrow notation or Function.prototype.bind()"
},
{
"object": "Lang",
"property": "Class",
"message": "Use ES6 classes"
},
{
"object": "imports",
"property": "mainloop",
"message": "Use GLib main loops and timeouts"
}
],
"no-restricted-syntax": [
"error",
{
"selector": "MethodDefinition[key.name=\"_init\"] > FunctionExpression[params.length=1] > BlockStatement[body.length=1] CallExpression[arguments.length=1][callee.object.type=\"Super\"][callee.property.name=\"_init\"] > Identifier:first-child",
"message": "_init() that only calls super._init() is unnecessary"
},
{
"selector": "MethodDefinition[key.name=\"_init\"] > FunctionExpression[params.length=0] > BlockStatement[body.length=1] CallExpression[arguments.length=0][callee.object.type=\"Super\"][callee.property.name=\"_init\"]",
"message": "_init() that only calls super._init() is unnecessary"
}
],
"no-return-assign": "error",
"no-return-await": "error",
"no-self-compare": "error",
"no-shadow-restricted-names": "error",
"no-spaced-func": "error",
"no-tabs": "error",
"no-template-curly-in-string": "error",
"no-throw-literal": "error",
"no-trailing-spaces": "error",
"no-undef-init": "error",
"no-unneeded-ternary": "error",
"no-unused-expressions": "error",
"no-unused-vars": [
"error",
{
"args": "none",
"vars": "local"
}
],
"no-useless-call": "error",
"no-useless-computed-key": "error",
"no-useless-concat": "error",
"no-useless-constructor": "error",
"no-useless-rename": "error",
"no-useless-return": "error",
"no-whitespace-before-property": "error",
"no-with": "error",
"nonblock-statement-body-position": [
"error",
"below"
],
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"object-curly-spacing": "error",
"operator-assignment": "error",
"operator-linebreak": "error",
"prefer-const": "error",
"prefer-numeric-literals": "error",
"prefer-promise-reject-errors": "error",
"prefer-rest-params": "error",
"prefer-spread": "error",
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"require-await": "error",
"rest-spread-spacing": "error",
"semi": [
"error",
"always"
],
"semi-spacing": [
"error",
{
"before": false,
"after": true
}
],
"semi-style": "error",
"space-before-blocks": "error",
"space-before-function-paren": [
"error",
{
"named": "never",
"anonymous": "always",
"asyncArrow": "always"
}
],
"space-in-parens": "error",
"space-infix-ops": [
"error",
{
"int32Hint": false
}
],
"space-unary-ops": "error",
"spaced-comment": "error",
"switch-colon-spacing": "error",
"symbol-description": "error",
"template-curly-spacing": "error",
"template-tag-spacing": "error",
"unicode-bom": "error",
"valid-jsdoc": [
"error",
{
"requireReturn": false
}
],
"wrap-iife": [
"error",
"inside"
],
"yield-star-spacing": "error",
"yoda": "error"
},
"globals": {
"ARGV": "readonly",
"Debugger": "readonly",
"GIRepositoryGType": "readonly",
"globalThis": "readonly",
"imports": "readonly",
"Intl": "readonly",
"log": "readonly",
"logError": "readonly",
"print": "readonly",
"printerr": "readonly",
"global": false,
"debug": false,
"_": false,
"_C": false,
"_N": false,
"ngettext": false,
"HAVE_WAYLAND": false,
"HAVE_REMOTEINPUT": false
},
"parserOptions": {
"ecmaVersion": 2017
}
}
gnome-shell-extension-gsconnect-50/.github/ 0000775 0000000 0000000 00000000000 14215434441 0021047 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/.github/ISSUE_TEMPLATE/ 0000775 0000000 0000000 00000000000 14215434441 0023232 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/.github/ISSUE_TEMPLATE/bug_report.md 0000664 0000000 0000000 00000003041 14215434441 0025722 0 ustar 00root root 0000000 0000000 ---
name: Bug report
about: Report an issue to help us improve GSConnect
title: ''
labels: ''
assignees: ''
---
> ***ATTENTION**: GSConnect only supports the latest, stable version of GNOME. We are no longer accepting bug reports for previous versions.*
**Describe the bug**
A clear and concise description of what the bug is.
**Steps To Reproduce:**
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem. You can drag-and-drop or cut-and-paste images directly into this edit window, to include them in your report.
**Support Log**
Please generate a support log ([Instructions](../wiki/Help#generate-support-log)) and paste any messages related to this issue between the two ``` lines below.
```
```
**System Details (please complete the following information):**
- **GSConnect version:** [e.g. 35, 36, ... (displayed in the GSConnect "About" window)]
- **Installed from:** [e.g. GNOME Extensions Website, GitHub, Package Manager, ...]
- **GNOME/Shell version:** [e.g. 3.36, ...]
- **Distro/Release:** [e.g. Ubuntu 18.04, Fedora 29, Arch, ...]
**GSConnect environment (if applicable):**
- **Paired Device(s):** [e.g. Galaxy Note 8, Pixel 2, Honor 9, ...]
- **KDE Connect app version:** [e.g. 1.12.7]
- **Plugin(s):** [if the issue only occurs when using certain plugin(s)]
**Additional Notes:**
Add any additional information about the problem or your system.
gnome-shell-extension-gsconnect-50/.github/ISSUE_TEMPLATE/feature-request-or-idea.md 0000664 0000000 0000000 00000002742 14215434441 0030220 0 ustar 00root root 0000000 0000000 ---
name: Feature request or idea
about: Suggest an improvement to GSConnect
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**System Details (please complete the following information):**
- GSConnect version: [e.g. 16, 15, ... (displayed in the GSConnect "About" window)]
- Installed from: [e.g. extensions.gnome.org, GitHub Release download, distro package, ...]
**Additional context**
Add any other context for your suggestion here, including screenshots if applicable.
#### Please delete this line and everything below before submitting your request
GSConnect works in concert with the [KDE Connect][1] app on paired Android devices. Communication between GSConnect and the device is controlled by **KDE Connect**, _not_ GSConnect.
Any request that would require features not supported in KDE Connect, or would require GSConnect to deviate from the KDE Connect protocols, cannot be implemented. Any such requests should be made to the KDE Connect project. The requested functionality can only be implemented in GSConnect after support is added to KDE Connect.
[1]: (https://community.kde.org/KDEConnect)
gnome-shell-extension-gsconnect-50/.github/workflows/ 0000775 0000000 0000000 00000000000 14215434441 0023104 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/.github/workflows/gnome-3-36.yml 0000664 0000000 0000000 00000002411 14215434441 0025320 0 ustar 00root root 0000000 0000000 name: gnome-3-36
on:
push:
branches: [ gnome-3-36 ]
pull_request:
branches: [ gnome-3-36 ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: andyholmes/gsconnect-ci:3.36
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
meson --prefix=/usr \
--libdir=lib/ \
-Dgnome_shell_libdir=/usr/lib64/ \
-Dpost_install=true \
_build
- name: Uninstalled Tests
run: |
meson test -C _build --suite gsconnect:data \
--suite gsconnect:lint \
--print-errorlogs
- name: Installed Tests
run: |
ninja -C _build install
xvfb-run -a dbus-run-session -- \
gnome-desktop-testing-runner gsconnect -L _build/meson-logs
- name: Upload Test Logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: test-logs
path: _build/meson-logs
- name: Test Build
run: |
ninja -C _build make-zip
- name: Upload Test Build
uses: actions/upload-artifact@v2
with:
name: test-build
path: _build/gsconnect@andyholmes.github.io.zip
gnome-shell-extension-gsconnect-50/.github/workflows/gnome-3-38.yml 0000664 0000000 0000000 00000002410 14215434441 0025321 0 ustar 00root root 0000000 0000000 name: gnome-3-38
on:
push:
branches: [ gnome-3-38 ]
pull_request:
branches: [ gnome-3-38 ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: gsconnect/gsconnect-ci:3.38
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
meson --prefix=/usr \
--libdir=lib/ \
-Dgnome_shell_libdir=/usr/lib64/ \
-Dpost_install=true \
_build
- name: Uninstalled Tests
run: |
meson test -C _build --suite gsconnect:data \
--suite gsconnect:lint \
--print-errorlogs
- name: Installed Tests
run: |
ninja -C _build install
xvfb-run -a dbus-run-session -- \
gnome-desktop-testing-runner gsconnect -L _build/meson-logs
- name: Upload Test Logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: test-logs
path: _build/meson-logs
- name: Test Build
run: |
ninja -C _build make-zip
- name: Upload Test Build
uses: actions/upload-artifact@v2
with:
name: test-build
path: _build/gsconnect@andyholmes.github.io.zip
gnome-shell-extension-gsconnect-50/.github/workflows/main.yml 0000664 0000000 0000000 00000002431 14215434441 0024553 0 ustar 00root root 0000000 0000000 name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
container:
image: gsconnect/gsconnect-ci:latest
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
meson --prefix=/usr \
--libdir=lib/ \
-Dgnome_shell_libdir=/usr/lib64/ \
-Dpost_install=true \
_build
- name: Uninstalled Tests
run: |
meson test -C _build --suite gsconnect:data \
--suite gsconnect:lint \
--print-errorlogs
- name: Installed Tests
run: |
ninja -C _build install
xvfb-run -a dbus-run-session -- \
gnome-desktop-testing-runner gsconnect -L _build/meson-logs
- name: Upload Test Logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: test-logs
path: _build/meson-logs
- name: Test Build
run: |
ninja -C _build make-zip
- name: Upload Test Build
uses: actions/upload-artifact@v2
with:
name: test-build
path: _build/gsconnect@andyholmes.github.io.zip
gnome-shell-extension-gsconnect-50/.gitignore 0000664 0000000 0000000 00000000012 14215434441 0021470 0 ustar 00root root 0000000 0000000 _build
*~
gnome-shell-extension-gsconnect-50/CODE_OF_CONDUCT.md 0000664 0000000 0000000 00000000330 14215434441 0022302 0 ustar 00root root 0000000 0000000 # Code of Conduct
While taking part in this project, all that is required is to stay on topic.
Note that you are still bound by the Code of Conduct for whichever platform you
use to access the project repository.
gnome-shell-extension-gsconnect-50/CONTRIBUTING.md 0000664 0000000 0000000 00000014052 14215434441 0021742 0 ustar 00root root 0000000 0000000 # Contributing
Thank you for considering contributing to this project. It means that you not
only find it useful, but that you think there's something that could be done to
make it more useful, or useful to more people.
The goal is to create an implementation of KDE Connect that integrates with the
GNOME desktop more than is appropriate for the original implementation.
## Code of Conduct
While taking part in this project, all that is required is to stay on topic.
Note that you are still bound by the Code of Conduct for whichever platform you
use to access the project repository.
## Overview
This document is mostly about code contributions. There are pages in the Wiki
for [Translating][translating], [Theming][theming] and [Packaging][packaging].
You can open a [New Issue][issue] or [Pull Request][pr] for anything you like
and it will be reviewed.
### Code Guidelines
* Code MUST be written in [GJS][gjs] if at all possible
Obvious exceptions are code that help integrate with other programs, like the
Nautilus extension.
* Code MUST run anywhere GNOME Shell runs
It is acceptable and sometimes necessary to use resources that may be specific
to Linux, but fallbacks must be available for other systems like BSD. Virtual
machines may be supported, but not at any expense to real systems.
* Code MUST NOT break compatibility with the KDE Connect project
Under no circumstances may code break protocol compatibility or introduce new
protocol features. Any protocol related discussion must happen directly with
the KDE Connect team and changes or additions are subject to their approval.
### Code Style
GSConnect ships with an ESLint file, which is run on all code by the CI and can
be run on code simply with `eslint src/`. When in doubt, copy the existing code
style.
## Developing
### Architecture
GSConnect is composed of three relatively distinct components:
* Service (`/service`)
The service runs as a separate process in the background and does all the
heavy lifting, including connecting and communicating with remote devices. It
also exposes several DBus interfaces.
* Shell Extension (`extension.js`, `/shell`)
The GNOME Shell extension controls starting and stopping the service, and
consumes the DBus interfaces exposed by the service. It also helps GSConnect
to integrate into GNOME Shell.
* Preferences (`gsconnect-preferences`, `/preferences`)
Unlike most extensions, GSConnect has it's own process for configuring the
service and devices, which also communicates with the service over DBus.
### Building and Installing
GSConnect uses a [`meson`][meson] build system which can accomodate system or
user installs. Typically, GSConnect should be developed and installed as a user
extension, while support for system installs exists primarily for distributions
that want to package GSConnect.
#### User Install
When installing as a user extension, GSConnect will try its best to detect
necessary paths and automatically install required files required for the
service to run. The example below will build a user extension ZIP, then install
it:
```sh
$ meson _build
$ ninja -C _build install-zip
```
Use the `make-zip` target instead to simple build a distributable ZIP, which
will be output as `_build/gsconnect@andyholmes.github.io.zip`:
```sh
$ meson _build
$ ninja -C _build make-zip
```
#### System Install
When installing as a system extension, the build must be configured to ensure
GSConnect can function properly when run (details in `meson_options.txt`). Below
is a typical example for Fedora:
```sh
$ meson --prefix=/usr \
--libdir=lib/ \
-Dgnome_shell_libdir=/usr/lib64/ \
-Dfirewalld=true \
-Dpost_install=true \
_build
$ ninja -C _build install
```
### Typical Workflow
The typical workflow for developing GSConnect will mainly involve working on the
service. First build and install the extension:
```sh
$ meson _build
$ ninja -C _build install-zip
```
Next restart GNOME Shell and enable the extension. While developing you should
enable debugging output and watch the output with `journalctl`:
```sh
$ dconf write /org/gnome/shell/extensions/gsconnect/debug true
$ journalctl -f -o cat /usr/bin/gjs
```
After making changes to the service, you should run the `install-zip` target
again. The service will automatically restart and there is no need to restart
GNOME Shell unless you have made changes to the shell extension:
```sh
$ ninja -C _build install-zip
```
#### Preferences
When working on the Preferences application, you must close and reopen the
window after running the `install-zip` target. You can use `journalctl` to watch
the output or if it's more convenient simply run the application from the shell:
```sh
$ cd ~/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io
$ ./gsconnect-preferences
```
#### Shell Extension
When developing the Shell extension, you must restart GNOME Shell after making
any changes. Note that the `debug()` function is not available in the Shell
extension and you should watch `gnome-shell` with `journalctl` instead of GJS:
```sh
$ journalctl -f -o cat /usr/bin/gnome-shell
```
## Questions
For general discussion, there is an IRC/Matrix channel for GSConnect:
* Matrix: https://matrix.to/#/#_gimpnet_#gsconnect:matrix.org
* IRC: irc://irc.gimp.org/#gsconnect
If that's not convenient, discussion can happen in the comments to your
[Pull Request][pr] or you can open a [New Issue][issue] for more public
discussion and mark the Pull Request as a fix for it.
[design]: https://wiki.gnome.org/Projects/GnomeShell/Design/Principles
[hig]: https://developer.gnome.org/hig/stable/
[translating]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/Translating
[packaging]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/Packaging
[theming]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/Theming
[issue]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/issues
[pr]: https://github.com/GNOME/gnome-shell/pulls
[gjs]: https://gitlab.gnome.org/GNOME/gjs/wikis/home
[meson]: https://mesonbuild.com/
gnome-shell-extension-gsconnect-50/LICENSE 0000664 0000000 0000000 00000043176 14215434441 0020527 0 ustar 00root root 0000000 0000000 GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
{description}
Copyright (C) {year} {fullname}
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
{signature of Ty Coon}, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
gnome-shell-extension-gsconnect-50/README.md 0000664 0000000 0000000 00000003264 14215434441 0020773 0 ustar 00root root 0000000 0000000 [GSConnect][ego] is a complete implementation of [KDE Connect][kdeconnect]
especially for GNOME Shell with Nautilus, [Chrome][chrome] and
[Firefox][firefox] integration. The KDE Connect team has applications for Linux,
BSD, Android, Sailfish, macOS and Windows.
With GSConnect you can securely connect to mobile devices and other desktops to:
* Share files, links and text
* Send and receive messages
* Sync clipboard content
* Sync contacts
* Sync notifications
* Control media players
* Control system volume
* Execute predefined commands
* And moreā¦
Please see the **[Wiki][wiki]** for more information about
**[Features][features]** and **[Help][help]**.
[][ego] [][chrome] [][firefox]
[ego]: https://extensions.gnome.org/extension/1319/gsconnect/
[chrome]: https://chrome.google.com/webstore/detail/gsconnect/jfnifeihccihocjbfcfhicmmgpjicaec
[firefox]: https://addons.mozilla.org/firefox/addon/gsconnect/
[kdeconnect]: https://userbase.kde.org/KDEConnect
[wiki]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/
[features]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/Features
[help]: https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/Help
gnome-shell-extension-gsconnect-50/RELEASE_CHECKLIST.md 0000664 0000000 0000000 00000001313 14215434441 0022500 0 ustar 00root root 0000000 0000000 # Release Checklist
## Preparing for a new release
- [ ] Bump version in `meson.build`
- [ ] Bump version in `data/metainfo/org.gnome.Shell.Extensions.GSConnect.metainfo.xml.in`
- [ ] Run `meson _build`
- [ ] Run `meson test -C _build`
- [ ] Make a commit and push it
## Release: Github
- [ ] Run `meson _build`
- [ ] Run `ninja -C _build make-zip`
- [ ] Tag a new release with notes at `https://github.com/GSConnect/gnome-shell-extension-gsconnect/releases/new`
- [ ] Add `_build/gsconnect@andyholmes.github.io.zip` to the release
## Release: EGO
- [ ] Run `meson _build`
- [ ] Run `ninja -C _build make-zip`
- [ ] Upload `_build/gsconnect@andyholmes.github.io.zip` to `https://extensions.gnome.org/upload`
gnome-shell-extension-gsconnect-50/build-aux/ 0000775 0000000 0000000 00000000000 14215434441 0021401 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/build-aux/ego/ 0000775 0000000 0000000 00000000000 14215434441 0022153 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/build-aux/ego/mkzip.sh 0000775 0000000 0000000 00000001677 14215434441 0023657 0 ustar 00root root 0000000 0000000 #!/bin/sh
export DESTDIR="${MESON_BUILD_ROOT}/_zip"
ZIP_DIR="${MESON_BUILD_ROOT}/${UUID}"
ZIP_FILE="${MESON_BUILD_ROOT}/${UUID}.zip"
# PRE-CLEAN
rm -rf ${DESTDIR} ${ZIP_DIR} ${ZIP_FILE}
# BUILD
if ! ninja -C ${MESON_BUILD_ROOT} install > /dev/null; then
exit 1;
fi
# COPY
mkdir -p ${ZIP_DIR}
cp -pr ${DESTDIR}/${DATADIR}/gnome-shell/extensions/${UUID}/* ${ZIP_DIR}
cp -pr ${DESTDIR}/${DATADIR}/nautilus-python/extensions/* ${ZIP_DIR}
cp -pr ${DESTDIR}/${LOCALEDIR} ${ZIP_DIR}
cp -pr ${DESTDIR}/${GSCHEMADIR} ${ZIP_DIR}
glib-compile-schemas ${ZIP_DIR}/schemas
# COMPRESS
cd ${ZIP_DIR}
zip -qr ${ZIP_FILE} .
echo "Extension saved to ${ZIP_FILE}"
# INSTALL
if [ "$INSTALL" = true ]; then
EXTENSIONS_DIR="${HOME}/.local/share/gnome-shell/extensions"
INSTALL_DIR="${EXTENSIONS_DIR}/${UUID}"
mkdir -p ${EXTENSIONS_DIR}
rm -rf ${INSTALL_DIR}
unzip -q ${ZIP_FILE} -d ${INSTALL_DIR}
echo "Extension installed to ${INSTALL_DIR}"
fi
gnome-shell-extension-gsconnect-50/build-aux/meson/ 0000775 0000000 0000000 00000000000 14215434441 0022522 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/build-aux/meson/post-install.sh 0000775 0000000 0000000 00000000131 14215434441 0025505 0 ustar 00root root 0000000 0000000 #!/bin/sh
GSCHEMA_DIR="${DESTDIR}/${GSCHEMADIR}"
glib-compile-schemas "${GSCHEMA_DIR}"
gnome-shell-extension-gsconnect-50/crowdin.yml 0000664 0000000 0000000 00000001151 14215434441 0021675 0 ustar 00root root 0000000 0000000 project_identifier: org.gnome.Shell.Extensions.GSConnect
files:
- source: /po/org.gnome.Shell.Extensions.GSConnect.pot
translation: /po/%locale%.po
languages_mapping:
locale:
ar-SA: ar
ca-ES: ca
ca: ca
fr: fr
da: da
de: de
pt-BR: pt_BR
nl: nl_NL
nl-BE: nl_BE
es-ES: es
be: be
cs: cs
et: et
gl: gl
hu: hu
it: it
ja: ja
lt: lt
pl: pl
ru: ru
sk: sk
sr: sr
tr: tr
uk: uk
zh-CN: zh_CN
zh-TW: zh_TW
gnome-shell-extension-gsconnect-50/data/ 0000775 0000000 0000000 00000000000 14215434441 0020420 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/data/application.css 0000664 0000000 0000000 00000003772 14215434441 0023446 0 ustar 00root root 0000000 0000000
/**
* Chrome/Firefox buttons in Settings Window
*/
.badge-button {
border: 0px;
padding: 0px;
background: transparent;
}
/**
* Placeholders
*/
.placeholder {
background: @content_view_bg_color;
margin-bottom: 30px;
}
.placeholder-image {
margin-bottom: 16px;
opacity: 0.5;
}
.placeholder-title {
font-size: larger;
font-weight: bold;
margin-bottom: 3px;
opacity: 0.5;
}
.placeholder-description {
font-size: smaller;
opacity: 0.5;
}
/**
* GSConnectContactChooser
*/
.contact-window {
border-top: 1px solid @borders;
}
.contact-list row {
padding: 0px;
}
/**
* GSConnectConversationWidget
*/
.message-scrolled {
border-bottom: 1px solid @borders;
}
/**
* GSConnectMessagingWindow
*/
.message-list > label {
font-size: small;
margin-bottom: 1em;
}
.thread-list {
background: @content_view_bg_color;
}
/**
* Incoming Message Bubbles (GtkLabel subclass)
*/
.message-in {
color: @theme_fg_color;
background: alpha(@theme_selected_bg_color, 0.2);
border: 1px solid alpha(@theme_selected_bg_color, 0.2);
border-radius: 5px;
box-shadow: 2px 2px 3px -2px rgba(0, 0, 0, 0.75);
padding: 6px 9px 6px 9px;
}
.message-in selection {
color: @theme_selected_bg_color;
background-color: @theme_selected_fg_color;
}
/**
* Outgoing Message Bubbles (GtkLabel subclass)
*/
.message-out {
color: @theme_fg_color;
background-color: @theme_bg_color;
border: 1px solid alpha(@theme_fg_color, 0.1);
border-radius: 5px;
box-shadow: 2px 2px 3px -2px rgba(0, 0, 0, 0.75);
caret-color: currentColor;
-gtk-secondary-caret-color: currentColor;
padding: 6px 9px 6px 9px;
}
.message-out selection {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
/**
* Must contrast with message background
*/
.message-in *:link,
.message-out *:link {
color: @theme_fg_color;
}
/**
* Special case for pending messages
*/
.message-pending .message-out {
opacity: 0.5;
}
/**
* Error Dialog
*/
.error-stack-frame > * {
border-top-width: 0;
}
gnome-shell-extension-gsconnect-50/data/config.js.in 0000664 0000000 0000000 00000001107 14215434441 0022627 0 ustar 00root root 0000000 0000000 var PACKAGE_VERSION = @PACKAGE_VERSION@;
var PACKAGE_URL = '@PACKAGE_URL@';
var PACKAGE_BUGREPORT = '@PACKAGE_BUGREPORT@';
var PACKAGE_DATADIR = '@PACKAGE_DATADIR@';
var PACKAGE_LOCALEDIR = '@PACKAGE_LOCALEDIR@';
var GSETTINGS_SCHEMA_DIR = '@GSETTINGS_SCHEMA_DIR@';
var GNOME_SHELL_LIBDIR = '@GNOME_SHELL_LIBDIR@';
var APP_ID = '@APPLICATION_ID@';
var APP_PATH = '@APPLICATION_PATH@';
var IS_USER = false;
// External binary paths
var OPENSSL_PATH = '@OPENSSL_PATH@';
var SSHADD_PATH = '@SSHADD_PATH@';
var SSHKEYGEN_PATH = '@SSHKEYGEN_PATH@';
var FFMPEG_PATH = '@FFMPEG_PATH@';
gnome-shell-extension-gsconnect-50/data/firewalld/ 0000775 0000000 0000000 00000000000 14215434441 0022371 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/data/firewalld/gsconnect.xml 0000664 0000000 0000000 00000000470 14215434441 0025077 0 ustar 00root root 0000000 0000000
GSConnectKDE Connect implementation for GNOME
gnome-shell-extension-gsconnect-50/data/firewalld/meson.build 0000664 0000000 0000000 00000000242 14215434441 0024531 0 ustar 00root root 0000000 0000000 # firewalld Configuration
if get_option('firewalld')
install_data(
'gsconnect.xml',
install_dir: join_paths(libdir, 'firewalld', 'services')
)
endif
gnome-shell-extension-gsconnect-50/data/icons/ 0000775 0000000 0000000 00000000000 14215434441 0021533 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/data/icons/computer-symbolic.svg 0000664 0000000 0000000 00000005151 14215434441 0025733 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/group-avatar-symbolic.svg 0000664 0000000 0000000 00000001112 14215434441 0026476 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/laptop-symbolic.svg 0000664 0000000 0000000 00000001505 14215434441 0025373 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/org.gnome.Shell.Extensions.GSConnect-symbolic.svg 0000664 0000000 0000000 00000006501 14215434441 0033016 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/org.gnome.Shell.Extensions.GSConnect.svg 0000664 0000000 0000000 00000001062 14215434441 0031174 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/phonelink-delete-symbolic.svg 0000664 0000000 0000000 00000010623 14215434441 0027324 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/phonelink-lock-symbolic.svg 0000664 0000000 0000000 00000011172 14215434441 0027012 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/phonelink-off-symbolic.svg 0000664 0000000 0000000 00000007134 14215434441 0026637 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/phonelink-ring-symbolic.svg 0000664 0000000 0000000 00000012365 14215434441 0027026 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/phonelink-setup-symbolic.svg 0000664 0000000 0000000 00000012775 14215434441 0027234 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/phonelink-symbolic.svg 0000664 0000000 0000000 00000006501 14215434441 0026064 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/smartphone-symbolic.svg 0000664 0000000 0000000 00000007726 14215434441 0026267 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/sms-send.svg 0000664 0000000 0000000 00000000300 14215434441 0023776 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/sms-symbolic.svg 0000664 0000000 0000000 00000001172 14215434441 0024676 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/tablet-symbolic.svg 0000664 0000000 0000000 00000000753 14215434441 0025353 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/icons/tv-symbolic.svg 0000664 0000000 0000000 00000011042 14215434441 0024522 0 ustar 00root root 0000000 0000000
gnome-shell-extension-gsconnect-50/data/images/ 0000775 0000000 0000000 00000000000 14215434441 0021665 5 ustar 00root root 0000000 0000000 gnome-shell-extension-gsconnect-50/data/images/chrome-badge.png 0000664 0000000 0000000 00000007262 14215434441 0024717 0 ustar 00root root 0000000 0000000 PNG
IHDR Ī : ųfĖ tEXtSoftware Adobe ImageReadyqÉe<