mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2026-04-10 09:57:41 +02:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
14fbf1b106 | ||
|
|
5f6236bd73 | ||
|
|
a3968bcc87 |
@@ -12,7 +12,7 @@
|
|||||||
BasedOnStyle: WebKit
|
BasedOnStyle: WebKit
|
||||||
|
|
||||||
Standard: Cpp11
|
Standard: Cpp11
|
||||||
ColumnLimit: 120
|
ColumnLimit: 0
|
||||||
|
|
||||||
# Disable reflow of qdoc comments: indentation rules are different.
|
# Disable reflow of qdoc comments: indentation rules are different.
|
||||||
# Translation comments are also excluded
|
# Translation comments are also excluded
|
||||||
@@ -61,5 +61,3 @@ ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCH
|
|||||||
MaxEmptyLinesToKeep: 2
|
MaxEmptyLinesToKeep: 2
|
||||||
KeepEmptyLinesAtTheStartOfBlocks: false
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||||
|
|
||||||
SpaceBeforeCpp11BracedList: false
|
|
||||||
Cpp11BracedListStyle: true
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ Checks: '-*,
|
|||||||
modernize-use-nodiscard,
|
modernize-use-nodiscard,
|
||||||
modernize-use-equals-default,
|
modernize-use-equals-default,
|
||||||
modernize-use-noexcept,
|
modernize-use-noexcept,
|
||||||
modernize-use-override,
|
modernize-user-override,
|
||||||
modernize-use-nullptr,
|
modernize-use-nullptr,
|
||||||
modernize-use-transparent-functors,
|
modernize-use-transparent-functors,
|
||||||
modernize-use-uncaught-exceptions,
|
modernize-use-uncaught-exceptions,
|
||||||
|
|||||||
32
.drone.yml
32
.drone.yml
@@ -1,17 +1,17 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: qt-5.15
|
name: qt-5.12
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: cmake
|
- name: cmake
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
commands:
|
commands:
|
||||||
- cd /drone/build
|
- cd /drone/build
|
||||||
- cmake -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_BUILD_TYPE=Debug -DQUICK_COMPILER=ON -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DECM_ENABLE_SANITIZERS=address -DCMAKE_CXX_FLAGS=-Werror ../src
|
- cmake -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_BUILD_TYPE=Debug -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DSANITIZE_ADDRESS=ON ../src
|
||||||
- name: compile
|
- name: compile
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
@@ -19,7 +19,7 @@ steps:
|
|||||||
- cd /drone/build
|
- cd /drone/build
|
||||||
- make -j$(nproc)
|
- make -j$(nproc)
|
||||||
- name: test
|
- name: test
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
@@ -27,7 +27,7 @@ steps:
|
|||||||
- cd /drone/build
|
- cd /drone/build
|
||||||
- useradd -m -s /bin/bash test
|
- useradd -m -s /bin/bash test
|
||||||
- chown -R test:test .
|
- chown -R test:test .
|
||||||
- su -c 'ASAN_OPTIONS=detect_leaks=0 xvfb-run ctest --output-on-failure' test
|
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
@@ -43,19 +43,19 @@ trigger:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: qt-5.15-clang
|
name: qt-5.12-clang
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: cmake
|
- name: cmake
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
commands:
|
commands:
|
||||||
- cd /drone/build
|
- cd /drone/build
|
||||||
- cmake -GNinja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_C_COMPILER=clang-10 -DCMAKE_CXX_COMPILER=clang++-10 -DCMAKE_BUILD_TYPE=Debug -DQUICK_COMPILER=ON -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DECM_ENABLE_SANITIZERS=address -DCMAKE_CXX_FLAGS=-Werror ../src
|
- cmake -GNinja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON DCMAKE_C_COMPILER=clang-10 -DCMAKE_CXX_COMPILER=clang++-10 -DCMAKE_BUILD_TYPE=Debug -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DSANITIZE_ADDRESS=ON ../src
|
||||||
- name: compile
|
- name: compile
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
@@ -63,7 +63,7 @@ steps:
|
|||||||
- cd /drone/build
|
- cd /drone/build
|
||||||
- ninja
|
- ninja
|
||||||
- name: test
|
- name: test
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
@@ -71,9 +71,9 @@ steps:
|
|||||||
- cd /drone/build
|
- cd /drone/build
|
||||||
- useradd -m -s /bin/bash test
|
- useradd -m -s /bin/bash test
|
||||||
- chown -R test:test .
|
- chown -R test:test .
|
||||||
- su -c 'ASAN_OPTIONS=detect_leaks=0 xvfb-run ctest --output-on-failure' test
|
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test
|
||||||
- name: clang-tidy
|
- name: clang-tidy
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
image: nextcloudci/client-5.12:client-5.12-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: build
|
- name: build
|
||||||
path: /drone/build
|
path: /drone/build
|
||||||
@@ -98,14 +98,14 @@ name: AppImage
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client-appimage:client-appimage-3
|
image: nextcloudci/client-5.12:client-5.12-9
|
||||||
environment:
|
environment:
|
||||||
CI_UPLOAD_GIT_TOKEN:
|
CI_UPLOAD_GIT_TOKEN:
|
||||||
from_secret: CI_UPLOAD_GIT_TOKEN
|
from_secret: CI_UPLOAD_GIT_TOKEN
|
||||||
CI_UPLOAD_GIT_USERNAME:
|
CI_UPLOAD_GIT_USERNAME:
|
||||||
from_secret: CI_UPLOAD_GIT_USERNAME
|
from_secret: CI_UPLOAD_GIT_USERNAME
|
||||||
commands:
|
commands:
|
||||||
- BUILDNR=$DRONE_BUILD_NUMBER VERSION_SUFFIX=$DRONE_PULL_REQUEST BUILD_UPDATER=ON DESKTOP_CLIENT_ROOT=$DRONE_WORKSPACE /bin/bash -c "./admin/linux/build-appimage.sh"
|
- /bin/bash -c "./admin/linux/build-appimage.sh"
|
||||||
- /bin/bash -c "./admin/linux/upload-appimage.sh" || echo "Upload failed, however this is an optional step."
|
- /bin/bash -c "./admin/linux/upload-appimage.sh" || echo "Upload failed, however this is an optional step."
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
@@ -120,7 +120,7 @@ name: Debian
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: ghcr.io/nextcloud/continuous-integration-client-debian:client-debian-3
|
image: nextcloudci/client-debian-ci:client-debian-ci-2
|
||||||
commands:
|
commands:
|
||||||
- /bin/bash -c "./admin/linux/debian/drone-build.sh" || echo "[WARNING] Debian build failed but this is a non-blocking CI event"
|
- /bin/bash -c "./admin/linux/debian/drone-build.sh" || echo "[WARNING] Debian build failed but this is a non-blocking CI event"
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
5
.github/ISSUE_TEMPLATE/config.yml
vendored
5
.github/ISSUE_TEMPLATE/config.yml
vendored
@@ -1,5 +0,0 @@
|
|||||||
blank_issues_enabled: false
|
|
||||||
contact_links:
|
|
||||||
- name: Support and Questions
|
|
||||||
url: "https://help.nextcloud.com/"
|
|
||||||
about: "If you have trouble with setting up Nextcloud, please use the forum instead of opening an issue here."
|
|
||||||
35
.github/ISSUE_TEMPLATE/feature.md
vendored
35
.github/ISSUE_TEMPLATE/feature.md
vendored
@@ -1,35 +0,0 @@
|
|||||||
---
|
|
||||||
name: Features
|
|
||||||
about: New functionality
|
|
||||||
labels: 'enhancement'
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Thanks for requesting a feature for Nextcloud!
|
|
||||||
|
|
||||||
This is the **issue tracker of Nextcloud**, please do NOT use this to get answers to your questions or get help for fixing your installation. You can find help debugging your system on our home user forums: https://help.nextcloud.com or, if you use Nextcloud in a large organization, ask our engineers on https://portal.nextcloud.com. See also https://nextcloud.com/support for support options.
|
|
||||||
|
|
||||||
Guidelines for submitting features:
|
|
||||||
|
|
||||||
* Please search the existing features first, it's likely that your feature was already requested or even implemented.
|
|
||||||
- Go to https://github.com/nextcloud and type any word in the top search/command bar. You probably see something like "We couldn’t find any repositories matching ..." then click "Issues" in the left navigation.
|
|
||||||
- You can also filter by appending e. g. "state:open" to the search string.
|
|
||||||
- More info on search syntax within github: https://help.github.com/articles/searching-issues
|
|
||||||
|
|
||||||
* Please fill in as much of the template below as possible.
|
|
||||||
|
|
||||||
* Also note that we have a https://nextcloud.com/contribute/code-of-conduct/ that applies on Github. To summarize it: be kind. We try our best to be nice, too. If you can't be bothered to be polite, please just don't bother to report issues as we won't feel motivated to help you.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!--- Please keep the note below for others who read your bug report -->
|
|
||||||
|
|
||||||
### How to use GitHub
|
|
||||||
|
|
||||||
* Please use the 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to show that you want to have the same feature implemented.
|
|
||||||
* Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
|
|
||||||
* Subscribe to receive notifications on status change and new comments.
|
|
||||||
|
|
||||||
|
|
||||||
### Feature description
|
|
||||||
Tell us how the feature should work
|
|
||||||
@@ -1,10 +1,3 @@
|
|||||||
---
|
|
||||||
name: Bugs
|
|
||||||
about: Crashes and other bugs
|
|
||||||
labels: 'bug'
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Thanks for reporting issues back to Nextcloud!
|
Thanks for reporting issues back to Nextcloud!
|
||||||
|
|
||||||
14
.github/pull_request_template.md
vendored
14
.github/pull_request_template.md
vendored
@@ -1,14 +0,0 @@
|
|||||||
<!--
|
|
||||||
Thanks for opening a pull request on the Nextcloud desktop client.
|
|
||||||
|
|
||||||
Instead of a Contributor License Agreement (CLA) we use a Developer Certificate of Origin (DCO).
|
|
||||||
https://en.wikipedia.org/wiki/Developer_Certificate_of_Origin
|
|
||||||
|
|
||||||
To accept that DCO, please make sure that you add a line like
|
|
||||||
Signed-off-by: Random Developer <random@developer.example.org>
|
|
||||||
at the end of each commit message.
|
|
||||||
|
|
||||||
This Signed-off-by trailer can be added automatically by git if you pass --signoff or -s to git commit.
|
|
||||||
See also:
|
|
||||||
https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---no-signoff
|
|
||||||
-->
|
|
||||||
46
.github/workflows/command-rebase.yml
vendored
46
.github/workflows/command-rebase.yml
vendored
@@ -1,46 +0,0 @@
|
|||||||
# This workflow is provided via the organization template repository
|
|
||||||
#
|
|
||||||
# https://github.com/nextcloud/.github
|
|
||||||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
|
||||||
|
|
||||||
name: Rebase command
|
|
||||||
|
|
||||||
on:
|
|
||||||
issue_comment:
|
|
||||||
types: created
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
rebase:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
# On pull requests and if the comment starts with `/rebase`
|
|
||||||
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Add reaction on start
|
|
||||||
uses: peter-evans/create-or-update-comment@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
||||||
repository: ${{ github.event.repository.full_name }}
|
|
||||||
comment-id: ${{ github.event.comment.id }}
|
|
||||||
reaction-type: "+1"
|
|
||||||
|
|
||||||
- name: Checkout the latest code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
||||||
|
|
||||||
- name: Automatic Rebase
|
|
||||||
uses: cirrus-actions/rebase@1.5
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
|
|
||||||
|
|
||||||
- name: Add reaction on failure
|
|
||||||
uses: peter-evans/create-or-update-comment@v1
|
|
||||||
if: failure()
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
||||||
repository: ${{ github.event.repository.full_name }}
|
|
||||||
comment-id: ${{ github.event.comment.id }}
|
|
||||||
reaction-type: "-1"
|
|
||||||
24
.github/workflows/needsinfo.yml
vendored
24
.github/workflows/needsinfo.yml
vendored
@@ -1,24 +0,0 @@
|
|||||||
name: 'Close stale needs info issues'
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '30 */8 * * *'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
stale:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/stale@v3
|
|
||||||
with:
|
|
||||||
operations-per-run: 1500
|
|
||||||
days-before-stale: 28
|
|
||||||
days-before-close: 14
|
|
||||||
days-before-pr-close: -1
|
|
||||||
only-labels: 'needs info'
|
|
||||||
stale-issue-label: 'stale needs info'
|
|
||||||
exempt-issue-labels: 'bug'
|
|
||||||
stale-issue-message: 'This issue has been marked as "needs info" 4 weeks ago.
|
|
||||||
Please take a look again and try to provide the information requested,
|
|
||||||
otherwise the issue will be automatically closed in 2 weeks. Thank you!'
|
|
||||||
close-issue-message: "This bug report is getting automatically closed due to no answer
|
|
||||||
since the issue has been staled. Thank you!"
|
|
||||||
exempt-all-pr-milestones: true
|
|
||||||
13
.github/workflows/needsinfohelper.yaml
vendored
13
.github/workflows/needsinfohelper.yaml
vendored
@@ -1,13 +0,0 @@
|
|||||||
name: Remove Labels
|
|
||||||
|
|
||||||
on: [issue_comment]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
remove_labels:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions-ecosystem/action-remove-labels@v1
|
|
||||||
if: ${{ ! startsWith(github.event.comment.body, 'This issue has been marked as "needs info" 4 weeks ago.') && ! startsWith(github.event.comment.body, 'This bug report did not receive an update in the last 4 weeks.')}}
|
|
||||||
with:
|
|
||||||
labels: 'needs info'
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
18
.github/workflows/rebase.yml
vendored
Normal file
18
.github/workflows/rebase.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
on:
|
||||||
|
issue_comment:
|
||||||
|
types: [created]
|
||||||
|
name: Automatic Rebase
|
||||||
|
jobs:
|
||||||
|
rebase:
|
||||||
|
name: Rebase
|
||||||
|
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout the latest code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Automatic Rebase
|
||||||
|
uses: cirrus-actions/rebase@1.3.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
50
.github/workflows/sonarcloud.yml
vendored
50
.github/workflows/sonarcloud.yml
vendored
@@ -1,50 +0,0 @@
|
|||||||
name: SonarCloud analysis
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, reopened]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
|
||||||
env:
|
|
||||||
SONAR_SERVER_URL: "https://sonarcloud.io"
|
|
||||||
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
|
||||||
|
|
||||||
- name: Restore cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: /cache
|
|
||||||
key: ${{ runner.os }}
|
|
||||||
|
|
||||||
- name: Run build-wrapper
|
|
||||||
run: |
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DBUILD_COVERAGE=ON
|
|
||||||
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make -j 2
|
|
||||||
- name: Run tests
|
|
||||||
run: |
|
|
||||||
cd build
|
|
||||||
useradd -m -s /bin/bash test
|
|
||||||
chown -R test:test .
|
|
||||||
su -c 'xvfb-run ctest --output-on-failure --output-junit testResult.xml' test
|
|
||||||
- name: Generate coverage report
|
|
||||||
run: |
|
|
||||||
cd build
|
|
||||||
su -c 'ctest -T Coverage' test
|
|
||||||
- name: Run sonar-scanner
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
||||||
run: |
|
|
||||||
cp sonar-project.properties build
|
|
||||||
cd build
|
|
||||||
sonar-scanner --define sonar.host.url="${{ env.SONAR_SERVER_URL }}" --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}"
|
|
||||||
5
.github/workflows/stale.yml
vendored
5
.github/workflows/stale.yml
vendored
@@ -1,7 +1,7 @@
|
|||||||
name: 'Close stale issues'
|
name: 'Close stale issues'
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '30 */8 * * *'
|
- cron: '30 1 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
stale:
|
stale:
|
||||||
@@ -9,7 +9,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v3
|
- uses: actions/stale@v3
|
||||||
with:
|
with:
|
||||||
operations-per-run: 1500
|
|
||||||
days-before-stale: 28
|
days-before-stale: 28
|
||||||
days-before-close: 14
|
days-before-close: 14
|
||||||
days-before-pr-close: -1
|
days-before-pr-close: -1
|
||||||
@@ -18,6 +17,4 @@ jobs:
|
|||||||
stale-issue-message: 'This bug report did not receive an update in the last 4 weeks.
|
stale-issue-message: 'This bug report did not receive an update in the last 4 weeks.
|
||||||
Please take a look again and update the issue with new details,
|
Please take a look again and update the issue with new details,
|
||||||
otherwise the issue will be automatically closed in 2 weeks. Thank you!'
|
otherwise the issue will be automatically closed in 2 weeks. Thank you!'
|
||||||
close-issue-message: "This bug report is getting automatically closed due to no answer
|
|
||||||
since the issue has been staled. Thank you!"
|
|
||||||
exempt-all-pr-milestones: true
|
exempt-all-pr-milestones: true
|
||||||
|
|||||||
7
.gitignore
vendored
7
.gitignore
vendored
@@ -181,10 +181,3 @@ CPackOptions.cmake
|
|||||||
CPackSourceConfig.cmake
|
CPackSourceConfig.cmake
|
||||||
|
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
convert.exe
|
|
||||||
.dir-locals.el
|
|
||||||
*-icon.png
|
|
||||||
*-icon-win-folder.png
|
|
||||||
*-sidebar.png
|
|
||||||
*-w10startmenu.png
|
|
||||||
theme.qrc
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[br]=@APPLICATION_ICON_NAME@
|
Icon[br]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[br]=@APPLICATION_NAME@ burev kempreet an implijer
|
||||||
Comment[br]=@APPLICATION_NAME@ burev kempreet an implijer
|
Comment[br]=@APPLICATION_NAME@ burev kempreet an implijer
|
||||||
GenericName[br]=Tuliad kemprenan
|
GenericName[br]=Tuliad kemprenan
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[ca]=@APPLICATION_ICON_NAME@
|
Icon[ca]=@APPLICATION_ICON_NAME@
|
||||||
Name[ca]=@APPLICATION_NAME@ per a escriptori
|
Name[ca]=Client de sincronització d'escriptori del @APPLICATION_NAME@
|
||||||
Comment[ca]=Client de sincronització d'escriptori del @APPLICATION_NAME@
|
Comment[ca]=Client de sincronització d'escriptori del @APPLICATION_NAME@
|
||||||
GenericName[ca]=Sincronització de carpetes
|
GenericName[ca]=Sincronització de carpetes
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[cs_CZ]=@APPLICATION_ICON_NAME@
|
Icon[cs_CZ]=@APPLICATION_ICON_NAME@
|
||||||
Name[cs_CZ]=@APPLICATION_NAME@ Desktop
|
Name[cs_CZ]=@APPLICATION_NAME@ synchronizační klient pro desktop
|
||||||
Comment[cs_CZ]=@APPLICATION_NAME@ synchronizační klient pro desktop
|
Comment[cs_CZ]=@APPLICATION_NAME@ synchronizační klient pro desktop
|
||||||
GenericName[cs_CZ]=Synchronizace složek
|
GenericName[cs_CZ]=Synchronizace složek
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[da]=@APPLICATION_ICON_NAME@
|
Icon[da]=@APPLICATION_ICON_NAME@
|
||||||
Name[da]=Skrivebordsklient til @APPLICATION_NAME@
|
Name[da]=@APPLICATION_NAME@ Arbejdsstationsssynkroniseringsklient
|
||||||
Comment[da]=Klient til @APPLICATION_NAME@-skrivebordssynkronisering
|
Comment[da]=@APPLICATION_NAME@ Arbejdsstationsssynkroniseringsklient
|
||||||
GenericName[da]=Mappesynkronisering
|
GenericName[da]=Mappesynkronisering
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,7 +21,7 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[de]=@APPLICATION_ICON_NAME@
|
Icon[de_DE]=@APPLICATION_ICON_NAME@
|
||||||
Name[de]=@APPLICATION_NAME@ Desktop
|
Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung
|
||||||
Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung
|
Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung
|
||||||
GenericName[de]=Ordner-Synchronisation
|
GenericName[de_DE]=Ordnersynchronisierung
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[el]=@APPLICATION_ICON_NAME@
|
Icon[el]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[el]=@APPLICATION_NAME@ πρόγραμμα συγχρονισμού
|
||||||
Comment[el]=@APPLICATION_NAME@ πρόγραμμα συγχρονισμού
|
Comment[el]=@APPLICATION_NAME@ πρόγραμμα συγχρονισμού
|
||||||
GenericName[el]=Συγχρονισμός φακέλου
|
GenericName[el]=Συγχρονισμός φακέλου
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[en_GB]=@APPLICATION_ICON_NAME@
|
Icon[en_GB]=@APPLICATION_ICON_NAME@
|
||||||
Name[en_GB]=@APPLICATION_NAME@ Desktop
|
Name[en_GB]=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment[en_GB]=@APPLICATION_NAME@ desktop synchronisation client
|
Comment[en_GB]=@APPLICATION_NAME@ desktop synchronisation client
|
||||||
GenericName[en_GB]=Folder Sync
|
GenericName[en_GB]=Folder Sync
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[eo]=@APPLICATION_ICON_NAME@
|
Icon[eo]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[eo]=@APPLICATION_NAME@ sinkroniga kliento
|
||||||
Comment[eo]=@APPLICATION_NAME@ sinkroniga kliento
|
Comment[eo]=@APPLICATION_NAME@ sinkroniga kliento
|
||||||
GenericName[eo]=Dosieruja sinkronigo
|
GenericName[eo]=Dosieruja sinkronigo
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[es_AR]=@APPLICATION_ICON_NAME@
|
Icon[es_AR]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[es_AR]=@APPLICATION_NAME@ cliente de sincronización de escritorio
|
||||||
Comment[es_AR]=@APPLICATION_NAME@ cliente de sincronización de escritorio
|
Comment[es_AR]=@APPLICATION_NAME@ cliente de sincronización de escritorio
|
||||||
GenericName[es_AR]=Sincronización de carpetas
|
GenericName[es_AR]=Sincronización de carpetas
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_CL]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_CL]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_CL]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_CL]=Sincronización de carpeta
|
GenericName[es_CL]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_CO]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_CO]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_CO]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_CO]=Sincronización de carpeta
|
GenericName[es_CO]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_CR]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_CR]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_CR]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_CR]=Sincronización de carpeta
|
GenericName[es_CR]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[es_DO]=@APPLICATION_ICON_NAME@
|
Icon[es_DO]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[es_DO]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_DO]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_DO]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_DO]=Sincronización de carpeta
|
GenericName[es_DO]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_EC]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_EC]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_EC]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_EC]=Sincronización de carpeta
|
GenericName[es_EC]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_GT]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_GT]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_GT]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_GT]=Sincronización de carpeta
|
GenericName[es_GT]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_MX]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_MX]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_MX]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_MX]=Sincronización de carpeta
|
GenericName[es_MX]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -21,5 +21,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
Name[es_SV]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
Comment[es_SV]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
Comment[es_SV]=@APPLICATION_NAME@ Cliente de sincronización de escritorio
|
||||||
GenericName[es_SV]=Sincronización de carpeta
|
GenericName[es_SV]=Sincronización de carpeta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[es]=@APPLICATION_ICON_NAME@
|
Icon[es]=@APPLICATION_ICON_NAME@
|
||||||
Name[es]=@APPLICATION_NAME@ Desktop
|
Name[es]=Cliente de sincronización de escritorio @APPLICATION_NAME@
|
||||||
Comment[es]=@APPLICATION_NAME@ desktop synchronization client
|
Comment[es]=Cliente de sincronización de escritorio @APPLICATION_NAME@
|
||||||
GenericName[es]=Sincronización de carpetas
|
GenericName[es]=Sincronización de carpetas
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[et_EE]=@APPLICATION_ICON_NAME@
|
Icon[et_EE]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[et_EE]=@APPLICATION_NAME@ töölaua sünkimise klient
|
||||||
Comment[et_EE]=@APPLICATION_NAME@ töölaua sünkroniseerimise klient
|
Comment[et_EE]=@APPLICATION_NAME@ töölaua sünkroniseerimise klient
|
||||||
GenericName[et_EE]=Kausta Sünkroonimine
|
GenericName[et_EE]=Kausta Sünkroonimine
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[eu]=@APPLICATION_ICON_NAME@
|
Icon[eu]=@APPLICATION_ICON_NAME@
|
||||||
Name[eu]=@APPLICATION_NAME@ Mahaigaina
|
Name[eu]=@APPLICATION_NAME@ mahaigainerako sinkronizazio bezeroa
|
||||||
Comment[eu]=@APPLICATION_NAME@ mahaigainerako sinkronizazio bezeroa
|
Comment[eu]=@APPLICATION_NAME@ mahaigainerako sinkronizazio bezeroa
|
||||||
GenericName[eu]=Karpeta-sinkronizazioa
|
GenericName[eu]=Karpeta-sinkronizazioa
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[fi_FI]=@APPLICATION_ICON_NAME@
|
Icon[fi_FI]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[fi_FI]=@APPLICATION_NAME@ työpöydän synkronointipääte
|
||||||
Comment[fi_FI]=@APPLICATION_NAME@ työpöydän synkronointipääte
|
Comment[fi_FI]=@APPLICATION_NAME@ työpöydän synkronointipääte
|
||||||
GenericName[fi_FI]=Kansio synkronointi
|
GenericName[fi_FI]=Kansio synkronointi
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[fr]=@APPLICATION_ICON_NAME@
|
Icon[fr]=@APPLICATION_ICON_NAME@
|
||||||
Name[fr]=@APPLICATION_NAME@ Bureau
|
Name[fr]=Client de synchro @APPLICATION_NAME@
|
||||||
Comment[fr]=Client de synchronisation @APPLICATION_NAME@
|
Comment[fr]=Client de synchronisation @APPLICATION_NAME@
|
||||||
GenericName[fr]=Synchronisation du dossier
|
GenericName[fr]=Synchronisation du dossier
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[gl]=@APPLICATION_ICON_NAME@
|
Icon[gl]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[gl]=@APPLICATION_NAME@ cliente de sincronización para escritorio
|
||||||
Comment[gl]=@APPLICATION_NAME@ cliente de sincronización para escritorio
|
Comment[gl]=@APPLICATION_NAME@ cliente de sincronización para escritorio
|
||||||
GenericName[gl]=Sincronización de cartafol
|
GenericName[gl]=Sincronización de cartafol
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[he]=@APPLICATION_ICON_NAME@
|
Icon[he]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[he]=@APPLICATION_NAME@ לקוח סנכרון לשולחן העבודה
|
||||||
Comment[he]=@APPLICATION_NAME@ לקוח סנכרון לשולחן העבודה
|
Comment[he]=@APPLICATION_NAME@ לקוח סנכרון לשולחן העבודה
|
||||||
GenericName[he]=סנכרון תיקיות
|
GenericName[he]=סנכרון תיקיות
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[hr]=@APPLICATION_ICON_NAME@
|
Icon[hr]=@APPLICATION_ICON_NAME@
|
||||||
Name[hr]=@APPLICATION_NAME@ Desktop
|
Name[hr]=@APPLICATION_NAME@ klijent za sink. računala
|
||||||
Comment[hr]=@APPLICATION_NAME@ klijent za sinkronizaciju računala
|
Comment[hr]=@APPLICATION_NAME@ klijent za sinkronizaciju računala
|
||||||
GenericName[hr]=Sinkronizacija mapa
|
GenericName[hr]=Sinkronizacija mapa
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[hu_HU]=@APPLICATION_ICON_NAME@
|
Icon[hu_HU]=@APPLICATION_ICON_NAME@
|
||||||
Name[hu_HU]=@APPLICATION_NAME@ Desktop
|
Name[hu_HU]=@APPLICATION_NAME@ asztali szinkronizálási kliens
|
||||||
Comment[hu_HU]=@APPLICATION_NAME@ asztali szinkronizálási kliens
|
Comment[hu_HU]=@APPLICATION_NAME@ asztali szinkronizálási kliens
|
||||||
GenericName[hu_HU]=Mappaszinkronizálás
|
GenericName[hu_HU]=Mappaszinkronizálás
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Categories=Utility;X-SuSE-SyncUtility;
|
|
||||||
Type=Application
|
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
|
||||||
GenericName=Folder Sync
|
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
|
||||||
Keywords=@APPLICATION_NAME@;syncing;file;sharing;
|
|
||||||
X-GNOME-Autostart-Delay=3
|
|
||||||
MimeType=application/vnd.@APPLICATION_EXECUTABLE@;
|
|
||||||
Actions=Quit;
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
|
|
||||||
|
|
||||||
[Desktop Action Quit]
|
|
||||||
Exec=@APPLICATION_EXECUTABLE@ --quit
|
|
||||||
Name=Quit @APPLICATION_NAME@
|
|
||||||
Icon=@APPLICATION_EXECUTABLE@
|
|
||||||
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
GenericName[id]=Sinkronisasi Folder
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[is]=@APPLICATION_ICON_NAME@
|
Icon[is]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[is]=@APPLICATION_NAME@ forrit til samstillingar við tölvu
|
||||||
Comment[is]=@APPLICATION_NAME@ forrit til samstillingar við tölvu
|
Comment[is]=@APPLICATION_NAME@ forrit til samstillingar við tölvu
|
||||||
GenericName[is]=Samstilling á möppum
|
GenericName[is]=Samstilling á möppum
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[it]=@APPLICATION_ICON_NAME@
|
Icon[it]=@APPLICATION_ICON_NAME@
|
||||||
Name[it]=@APPLICATION_NAME@ Desktop
|
Name[it]=Client di sincronizzazione desktop di @APPLICATION_NAME@
|
||||||
Comment[it]=Client di sincronizzazione desktop di @APPLICATION_NAME@
|
Comment[it]=Client di sincronizzazione desktop di @APPLICATION_NAME@
|
||||||
GenericName[it]=Sincronizzazione cartelle
|
GenericName[it]=Sincronizzazione cartelle
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[ja_JP]=@APPLICATION_ICON_NAME@
|
Icon[ja_JP]=@APPLICATION_ICON_NAME@
|
||||||
Name[ja_JP]=@APPLICATION_NAME@ デスクトップ
|
Name[ja_JP]=@APPLICATION_NAME@ デスクトップ同期クライアント
|
||||||
Comment[ja_JP]=@APPLICATION_NAME@ デスクトップ同期クライアント
|
Comment[ja_JP]=@APPLICATION_NAME@ デスクトップ同期クライアント
|
||||||
GenericName[ja_JP]=フォルダーを同期する
|
GenericName[ja_JP]=フォルダーを同期する
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[ko]=@APPLICATION_ICON_NAME@
|
Icon[ko]=@APPLICATION_ICON_NAME@
|
||||||
Name[ko]=@APPLICATION_NAME@ 데스크탑
|
Name[ko]=@APPLICATION_NAME@ 데스크톱 동기화 클라이언트
|
||||||
Comment[ko]=@APPLICATION_NAME@ 데스크톱 동기화 클라이언트
|
Comment[ko]=@APPLICATION_NAME@ 데스크톱 동기화 클라이언트
|
||||||
GenericName[ko]=폴더 동기화
|
GenericName[ko]=폴더 동기화
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[lt_LT]=@APPLICATION_ICON_NAME@
|
Icon[lt_LT]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[lt_LT]=@APPLICATION_NAME@ darbalaukio sinchronizavimo kliento programa
|
||||||
Comment[lt_LT]=@APPLICATION_NAME@ darbalaukio sinchronizavimo kliento programa
|
Comment[lt_LT]=@APPLICATION_NAME@ darbalaukio sinchronizavimo kliento programa
|
||||||
GenericName[lt_LT]=Aplankų sinchronizavimas
|
GenericName[lt_LT]=Aplankų sinchronizavimas
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[lv]=@APPLICATION_ICON_NAME@
|
Icon[lv]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[lv]=@APPLICATION_NAME@ darbavirsmas sinhronizešanas klients
|
||||||
Comment[lv]=@APPLICATION_NAME@ darbavirsmas sinhronizešanas klients
|
Comment[lv]=@APPLICATION_NAME@ darbavirsmas sinhronizešanas klients
|
||||||
GenericName[lv]=Mapju Sinhronizēšana
|
GenericName[lv]=Mapju Sinhronizēšana
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[mk]=@APPLICATION_ICON_NAME@
|
Icon[mk]=@APPLICATION_ICON_NAME@
|
||||||
Name[mk]=@APPLICATION_NAME@ Десктоп
|
Name[mk]=@APPLICATION_NAME@ клиент за синхронизација на компјутер
|
||||||
Comment[mk]=@APPLICATION_NAME@ клиент за синхронизација на компјутер
|
Comment[mk]=@APPLICATION_NAME@ клиент за синхронизација на компјутер
|
||||||
GenericName[mk]=Папка за синхронизација
|
GenericName[mk]=Папка за синхронизација
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[nb_NO]=@APPLICATION_ICON_NAME@
|
Icon[nb_NO]=@APPLICATION_ICON_NAME@
|
||||||
Name[nb_NO]=@APPLICATION_NAME@ skrivebord
|
Name[nb_NO]=@APPLICATION_NAME@ klient for synkroinisering
|
||||||
Comment[nb_NO]=@APPLICATION_NAME@ klient for synkroinisering
|
Comment[nb_NO]=@APPLICATION_NAME@ klient for synkroinisering
|
||||||
GenericName[nb_NO]=Mappe synkroinisering
|
GenericName[nb_NO]=Mappe synkroinisering
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[nl]=@APPLICATION_ICON_NAME@
|
Icon[nl]=@APPLICATION_ICON_NAME@
|
||||||
Name[nl]=@APPLICATION_NAME@ Desktop
|
Name[nl]=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment[nl]=@APPLICATION_NAME@ desktopsynchronisatieclient
|
Comment[nl]=@APPLICATION_NAME@ desktopsynchronisatieclient
|
||||||
GenericName[nl]=Map synchronisatie
|
GenericName[nl]=Map synchronisatie
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[oc]=@APPLICATION_ICON_NAME@
|
Icon[oc]=@APPLICATION_ICON_NAME@
|
||||||
Name[oc]=@APPLICATION_NAME@ Burèu
|
Name[oc]=@APPLICATION_NAME@ client de sincronizacion
|
||||||
Comment[oc]=@APPLICATION_NAME@ client de sincronizacion
|
Comment[oc]=@APPLICATION_NAME@ client de sincronizacion
|
||||||
GenericName[oc]=Sincro. dossièr
|
GenericName[oc]=Sincro. dossièr
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[pl]=@APPLICATION_ICON_NAME@
|
Icon[pl]=@APPLICATION_ICON_NAME@
|
||||||
Name[pl]=@APPLICATION_NAME@ Desktop
|
Name[pl]=@APPLICATION_NAME@ desktopowy klient synchronizacji
|
||||||
Comment[pl]=Desktopowy klient synchronizacji @APPLICATION_NAME@
|
Comment[pl]=@APPLICATION_NAME@ desktopowy klient synchronizacji
|
||||||
GenericName[pl]=Katalog synchronizacji
|
GenericName[pl]=Katalog synchronizacji
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[pt_BR]=@APPLICATION_ICON_NAME@
|
Icon[pt_BR]=@APPLICATION_ICON_NAME@
|
||||||
Name[pt_BR]=@APPLICATION_NAME@ Desktop
|
Name[pt_BR]=@APPLICATION_NAME@ cliente de sincronização desktop
|
||||||
Comment[pt_BR]=@APPLICATION_NAME@ cliente de sincronização desktop
|
Comment[pt_BR]=@APPLICATION_NAME@ cliente de sincronização desktop
|
||||||
GenericName[pt_BR]=Sincronizar pasta
|
GenericName[pt_BR]=Sincronizar pasta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[pt_PT]=@APPLICATION_ICON_NAME@
|
Icon[pt_PT]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[pt_PT]=@APPLICATION_NAME@ - Cliente de Sincronização da Área de Trabalho
|
||||||
Comment[pt_PT]=@APPLICATION_NAME@ - Cliente de Sincronização da Área de Trabalho
|
Comment[pt_PT]=@APPLICATION_NAME@ - Cliente de Sincronização da Área de Trabalho
|
||||||
GenericName[pt_PT]=Sincronização de Pasta
|
GenericName[pt_PT]=Sincronização de Pasta
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[ro]=@APPLICATION_ICON_NAME@
|
Icon[ro]=@APPLICATION_ICON_NAME@
|
||||||
Name[ro]=@Numele_aplicației@ Client de sincronizare pentru PC
|
Name[ro]=@APPLICATION_NAME@ client de sincronizare pentru desktop
|
||||||
Comment[ro]=@APPLICATION_NAME@ client de sincronizare pentru desktop
|
Comment[ro]=@APPLICATION_NAME@ client de sincronizare pentru desktop
|
||||||
GenericName[ro]=Sincronizare director
|
GenericName[ro]=Sincronizare director
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[ru]=@APPLICATION_ICON_NAME@
|
Icon[ru]=@APPLICATION_ICON_NAME@
|
||||||
Name[ru]=@APPLICATION_NAME@ Desktop
|
Name[ru]=@APPLICATION_NAME@ для ПК
|
||||||
Comment[ru]=Клиент синхронизации @APPLICATION_NAME@ для ПК
|
Comment[ru]=Клиент синхронизации @APPLICATION_NAME@ для ПК
|
||||||
GenericName[ru]=Синхронизация папок
|
GenericName[ru]=Синхронизация папок
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[sc]=@NÙMENE_ICONA_APLICATZIONE@
|
Icon[sc]=@NÙMENE_ICONA_APLICATZIONE@
|
||||||
Name[sc]=@NÙMENE_APLICATZIONE@ Iscrivania
|
Name[sc]=@NÙMENE_APLICATZIONE@ cliente sicronizadore de iscrivania
|
||||||
Comment[sc]=@NÙMENE_APLICATZIONE@ cliente de sincronizatzione iscrivania
|
Comment[sc]=@NÙMENE_APLICATZIONE@ cliente de sincronizatzione iscrivania
|
||||||
GenericName[sc]=Sincronizadore de cartellas
|
GenericName[sc]=Sincronizadore de cartellas
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[sk_SK]=@APPLICATION_ICON_NAME@
|
Icon[sk_SK]=@APPLICATION_ICON_NAME@
|
||||||
Name[sk_SK]=@APPLICATION_NAME@ Desktop
|
Name[sk_SK]=@APPLICATION_NAME@ synchronizačný klient pre PC
|
||||||
Comment[sk_SK]=@APPLICATION_NAME@ synchronizačný klient pre PC
|
Comment[sk_SK]=@APPLICATION_NAME@ synchronizačný klient pre PC
|
||||||
GenericName[sk_SK]=Synchronizácia priečinkov
|
GenericName[sk_SK]=Synchronizácia priečinkov
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[sl]=@APPLICATION_ICON_NAME@
|
Icon[sl]=@APPLICATION_ICON_NAME@
|
||||||
Name[sl]=Namizni program @APPLICATION_NAME@
|
Name[sl]=@APPLICATION_NAME@ program za usklajevanje
|
||||||
Comment[sl]=Program za usklajevanje @APPLICATION_NAME@
|
Comment[sl]=@APPLICATION_NAME@ program za usklajevanje
|
||||||
GenericName[sl]=Usklajevanje map
|
GenericName[sl]=Usklajevanje map
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[sr]=@APPLICATION_ICON_NAME@
|
Icon[sr]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[sr]=@APPLICATION_NAME@ десктоп клијент за синхронизацију
|
||||||
Comment[sr]=@APPLICATION_NAME@ десктоп клијент за синхронизацију
|
Comment[sr]=@APPLICATION_NAME@ десктоп клијент за синхронизацију
|
||||||
GenericName[sr]=Синхронизација фасцикли
|
GenericName[sr]=Синхронизација фасцикли
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[sv]=@APPLICATION_ICON_NAME@
|
Icon[sv]=@APPLICATION_ICON_NAME@
|
||||||
Name[sv]=@APPLICATION_NAME@ Skrivbord
|
Name[sv]=@APPLICATION_NAME@ desktopssynkklient
|
||||||
Comment[sv]=@APPLICATION_NAME@ desktopssynkroniseringsklient
|
Comment[sv]=@APPLICATION_NAME@ desktopssynkroniseringsklient
|
||||||
GenericName[sv]=Mappsynkronisering
|
GenericName[sv]=Mappsynkronisering
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[sw]=@APPLICATION_ICON_NAME@
|
Icon[sw]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[sw]=Teja ya @APPLICATION_NAME@ ya kufanana faili kwa seva na faili ziko hapa
|
||||||
Comment[sw]=Teja ya @APPLICATION_NAME@ ya kufanana faili kwa seva na faili ziko hapa
|
Comment[sw]=Teja ya @APPLICATION_NAME@ ya kufanana faili kwa seva na faili ziko hapa
|
||||||
GenericName[sw]=Fanana Kabrasha
|
GenericName[sw]=Fanana Kabrasha
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Categories=Utility;X-SuSE-SyncUtility;
|
|
||||||
Type=Application
|
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
|
||||||
GenericName=Folder Sync
|
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
|
||||||
Keywords=@APPLICATION_NAME@;syncing;file;sharing;
|
|
||||||
X-GNOME-Autostart-Delay=3
|
|
||||||
MimeType=application/vnd.@APPLICATION_EXECUTABLE@;
|
|
||||||
Actions=Quit;
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
|
|
||||||
|
|
||||||
[Desktop Action Quit]
|
|
||||||
Exec=@APPLICATION_EXECUTABLE@ --quit
|
|
||||||
Name=Quit @APPLICATION_NAME@
|
|
||||||
Icon=@APPLICATION_EXECUTABLE@
|
|
||||||
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
Icon[th_TH]=@APPLICATION_ICON_NAME@
|
|
||||||
Name[th_TH]=@APPLICATION_NAME@ เดสก์ท็อป
|
|
||||||
Comment[th_TH]=ไคลเอ็นต์ซิงโครไนซ์ @APPLICATION_NAME@ บนเดสก์ท็อป
|
|
||||||
GenericName[th_TH]=ซิงค์โฟลเดอร์
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[tr]=@APPLICATION_ICON_NAME@
|
Icon[tr]=@APPLICATION_ICON_NAME@
|
||||||
Name[tr]=@APPLICATION_NAME@ Masaüstü
|
Name[tr]=@APPLICATION_NAME@ masaüstü eşiteme istemcisi
|
||||||
Comment[tr]=@APPLICATION_NAME@ masaüstü eşitleme istemcisi
|
Comment[tr]=@APPLICATION_NAME@ masaüstü eşitleme istemcisi
|
||||||
GenericName[tr]=Klasör eşitleme
|
GenericName[tr]=Klasör Eşitleme
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,5 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[uk]=@APPLICATION_ICON_NAME@
|
Icon[uk]=@APPLICATION_ICON_NAME@
|
||||||
|
Name[uk]=@APPLICATION_NAME@ клієнт для ПК
|
||||||
Comment[uk]=Клієнт синхронізації @APPLICATION_NAME@ для ПК
|
Comment[uk]=Клієнт синхронізації @APPLICATION_NAME@ для ПК
|
||||||
GenericName[uk]=Синхронізація тек
|
GenericName[uk]=Синхронізація тек
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Categories=Utility;X-SuSE-SyncUtility;
|
|
||||||
Type=Application
|
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
|
||||||
GenericName=Folder Sync
|
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
|
||||||
Keywords=@APPLICATION_NAME@;syncing;file;sharing;
|
|
||||||
X-GNOME-Autostart-Delay=3
|
|
||||||
MimeType=application/vnd.@APPLICATION_EXECUTABLE@;
|
|
||||||
Actions=Quit;
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
|
|
||||||
|
|
||||||
[Desktop Action Quit]
|
|
||||||
Exec=@APPLICATION_EXECUTABLE@ --quit
|
|
||||||
Name=Quit @APPLICATION_NAME@
|
|
||||||
Icon=@APPLICATION_EXECUTABLE@
|
|
||||||
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
Icon[vi]=@APPLICATION_ICON_NAME@
|
|
||||||
Name[vi]=@APPLICATION_NAME@ Máy tính
|
|
||||||
Comment[vi]=Ứng dụng đồng bộ @APPLICATION_NAME@ cho máy tính
|
|
||||||
GenericName[vi]=Đồng bộ thư mục
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[zh_CN]=@APPLICATION_ICON_NAME@
|
Icon[zh_CN]=@APPLICATION_ICON_NAME@
|
||||||
Name[zh_CN]=@APPLICATION_NAME@ 桌面
|
Name[zh_CN]=@APPLICATION_NAME@ 桌面同步客户端
|
||||||
Comment[zh_CN]=@APPLICATION_NAME@ 桌面同步客户端
|
Comment[zh_CN]=@APPLICATION_NAME@ 桌面同步客户端
|
||||||
GenericName[zh_CN]=文件夹同步
|
GenericName[zh_CN]=文件夹同步
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[zh_HK]=@APPLICATION_ICON_NAME@
|
Icon[zh_HK]=@APPLICATION_ICON_NAME@
|
||||||
Name[zh_HK]=@APPLICATION_NAME@ 桌面電腦
|
Name[zh_HK]= @APPLICATION_NAME@ 桌面同步客戶端
|
||||||
Comment[zh_HK]= @APPLICATION_NAME@ 桌面同步客戶端
|
Comment[zh_HK]= @APPLICATION_NAME@ 桌面同步客戶端
|
||||||
GenericName[zh_HK]=資料夾同步
|
GenericName[zh_HK]=資料夾同步
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Categories=Utility;X-SuSE-SyncUtility;
|
Categories=Utility;X-SuSE-SyncUtility;
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=@APPLICATION_EXECUTABLE@
|
Exec=@APPLICATION_EXECUTABLE@
|
||||||
Name=@APPLICATION_NAME@ Desktop
|
Name=@APPLICATION_NAME@ desktop sync client
|
||||||
Comment=@APPLICATION_NAME@ desktop synchronization client
|
Comment=@APPLICATION_NAME@ desktop synchronization client
|
||||||
GenericName=Folder Sync
|
GenericName=Folder Sync
|
||||||
Icon=@APPLICATION_ICON_NAME@
|
Icon=@APPLICATION_ICON_NAME@
|
||||||
@@ -22,6 +22,6 @@ Icon=@APPLICATION_EXECUTABLE@
|
|||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
Icon[zh_TW]=@APPLICATION_ICON_NAME@
|
Icon[zh_TW]=@APPLICATION_ICON_NAME@
|
||||||
Name[zh_TW]=@APPLICATION_NAME@ 桌面版
|
Name[zh_TW]=@APPLICATION_NAME@ 桌面同步客戶端
|
||||||
Comment[zh_TW]=@APPLICATION_NAME@ 桌面同步客戶端
|
Comment[zh_TW]=@APPLICATION_NAME@ 桌面同步客戶端
|
||||||
GenericName[zh_TW]=資料夾同步
|
GenericName[zh_TW]=資料夾同步
|
||||||
|
|||||||
@@ -1,14 +1,22 @@
|
|||||||
cmake_minimum_required(VERSION 3.6)
|
cmake_minimum_required(VERSION 3.2)
|
||||||
set(CMAKE_CXX_STANDARD 14)
|
set(CMAKE_CXX_STANDARD 14)
|
||||||
cmake_policy(SET CMP0071 NEW) # Enable use of QtQuick compiler/generated code
|
|
||||||
|
|
||||||
project(client)
|
project(client)
|
||||||
|
|
||||||
include(FeatureSummary)
|
if(UNIT_TESTING)
|
||||||
|
include(CTest)
|
||||||
|
enable_testing()
|
||||||
|
endif()
|
||||||
|
|
||||||
set(BIN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
|
set(BIN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
|
||||||
|
|
||||||
|
|
||||||
|
set(OEM_THEME_DIR "" CACHE STRING "Define directory containing a custom theme")
|
||||||
|
if ( EXISTS ${OEM_THEME_DIR}/OEM.cmake )
|
||||||
|
include ( ${OEM_THEME_DIR}/OEM.cmake )
|
||||||
|
else ()
|
||||||
include ( ${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake )
|
include ( ${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake )
|
||||||
|
endif()
|
||||||
|
|
||||||
# Default suffix if the theme doesn't define one
|
# Default suffix if the theme doesn't define one
|
||||||
if(NOT DEFINED APPLICATION_VIRTUALFILE_SUFFIX)
|
if(NOT DEFINED APPLICATION_VIRTUALFILE_SUFFIX)
|
||||||
@@ -37,19 +45,14 @@ endif()
|
|||||||
|
|
||||||
set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
|
set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
|
||||||
|
|
||||||
include(ECMCoverageOption)
|
|
||||||
|
|
||||||
if(NOT CRASHREPORTER_EXECUTABLE)
|
if(NOT CRASHREPORTER_EXECUTABLE)
|
||||||
set(CRASHREPORTER_EXECUTABLE "${APPLICATION_EXECUTABLE}_crash_reporter")
|
set(CRASHREPORTER_EXECUTABLE "${APPLICATION_EXECUTABLE}_crash_reporter")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(Warnings)
|
set(synclib_NAME "${APPLICATION_EXECUTABLE}sync")
|
||||||
|
set(csync_NAME "${APPLICATION_EXECUTABLE}_csync")
|
||||||
|
|
||||||
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
include(Warnings)
|
||||||
add_compile_options(-fdiagnostics-color=always)
|
|
||||||
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
||||||
add_compile_options(-fcolor-diagnostics)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include(${CMAKE_SOURCE_DIR}/VERSION.cmake)
|
include(${CMAKE_SOURCE_DIR}/VERSION.cmake)
|
||||||
# For config.h
|
# For config.h
|
||||||
@@ -78,9 +81,9 @@ include(GetGitRevisionDescription)
|
|||||||
get_git_head_revision(GIT_REFSPEC GIT_SHA1)
|
get_git_head_revision(GIT_REFSPEC GIT_SHA1)
|
||||||
|
|
||||||
add_definitions(
|
add_definitions(
|
||||||
-DQT_DISABLE_DEPRECATED_BEFORE=0x000000
|
|
||||||
-DQT_USE_QSTRINGBUILDER
|
-DQT_USE_QSTRINGBUILDER
|
||||||
-DQT_MESSAGELOGCONTEXT #enable function name and line number in debug output
|
-DQT_MESSAGELOGCONTEXT #enable function name and line number in debug output
|
||||||
|
-DQT_DEPRECATED_WARNINGS
|
||||||
)
|
)
|
||||||
|
|
||||||
# if we cannot get it from git, directly try .tag (packages)
|
# if we cannot get it from git, directly try .tag (packages)
|
||||||
@@ -97,18 +100,30 @@ endif()
|
|||||||
message(STATUS "GIT_SHA1 ${GIT_SHA1}")
|
message(STATUS "GIT_SHA1 ${GIT_SHA1}")
|
||||||
|
|
||||||
set(SYSCONFDIR ${SYSCONF_INSTALL_DIR})
|
set(SYSCONFDIR ${SYSCONF_INSTALL_DIR})
|
||||||
set(SHAREDIR ${CMAKE_INSTALL_FULL_DATADIR})
|
set(DATADIR ${DATA_INSTALL_DIR})
|
||||||
|
if(WIN32)
|
||||||
|
set(DATADIR "share")
|
||||||
|
endif(WIN32)
|
||||||
|
set(SHAREDIR ${DATADIR})
|
||||||
|
|
||||||
# Build MacOS app bundle if wished
|
#####
|
||||||
if(APPLE AND BUILD_OWNCLOUD_OSX_BUNDLE)
|
## handle BUILD_OWNCLOUD_OSX_BUNDLE
|
||||||
message(STATUS "Build MacOS app bundle")
|
# BUILD_OWNCLOUD_OSX_BUNDLE was not initialized OR set to true on OSX
|
||||||
set(OWNCLOUD_OSX_BUNDLE "${APPLICATION_NAME}.app")
|
if(APPLE AND (NOT DEFINED BUILD_OWNCLOUD_OSX_BUNDLE OR BUILD_OWNCLOUD_OSX_BUNDLE))
|
||||||
set(LIB_INSTALL_DIR "${APPLICATION_NAME}.app/Contents/MacOS")
|
set(BUILD_OWNCLOUD_OSX_BUNDLE ON)
|
||||||
set(BIN_INSTALL_DIR "${APPLICATION_NAME}.app/Contents/MacOS")
|
set(OWNCLOUD_OSX_BUNDLE "${APPLICATION_EXECUTABLE}.app")
|
||||||
|
set(LIB_INSTALL_DIR "${APPLICATION_EXECUTABLE}.app/Contents/MacOS")
|
||||||
|
set(BIN_INSTALL_DIR "${APPLICATION_EXECUTABLE}.app/Contents/MacOS")
|
||||||
|
|
||||||
|
# BUILD_OWNCLOUD_OSX_BUNDLE was disabled on OSX
|
||||||
|
elseif(APPLE AND NOT BUILD_OWNCLOUD_OSX_BUNDLE)
|
||||||
|
message(FATAL_ERROR "Building in non-bundle mode on OSX is currently not supported. Comment this error out if you want to work on/test it.")
|
||||||
|
|
||||||
|
# any other platform
|
||||||
|
else()
|
||||||
|
set(BUILD_OWNCLOUD_OSX_BUNDLE OFF)
|
||||||
endif()
|
endif()
|
||||||
|
#####
|
||||||
|
|
||||||
option(QUICK_COMPILER "Use QtQuick compiler to improve performance" OFF)
|
|
||||||
|
|
||||||
# this option removes Http authentication, keychain, shibboleth etc and is intended for
|
# this option removes Http authentication, keychain, shibboleth etc and is intended for
|
||||||
# external authentication mechanisms
|
# external authentication mechanisms
|
||||||
@@ -123,8 +138,11 @@ if(NO_MSG_HANDLER)
|
|||||||
add_definitions(-DNO_MSG_HANDLER=1)
|
add_definitions(-DNO_MSG_HANDLER=1)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# this option builds the updater
|
||||||
|
option(BUILD_UPDATER "BUILD_UPDATER" OFF)
|
||||||
if(BUILD_UPDATER)
|
if(BUILD_UPDATER)
|
||||||
message("Compiling with updater")
|
message("Compiling with updater")
|
||||||
|
add_definitions(-DBUILD_UPDATER=1)
|
||||||
else()
|
else()
|
||||||
message("Compiling without updater")
|
message("Compiling without updater")
|
||||||
endif()
|
endif()
|
||||||
@@ -169,25 +187,19 @@ if(BUILD_CLIENT)
|
|||||||
find_package(Sparkle)
|
find_package(Sparkle)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(UNIX AND NOT APPLE)
|
if(UNIX)
|
||||||
find_package(Inotify REQUIRED)
|
find_package(INotify REQUIRED)
|
||||||
|
else()
|
||||||
|
find_package(INotify)
|
||||||
endif()
|
endif()
|
||||||
find_package(Sphinx)
|
find_package(Sphinx)
|
||||||
find_package(PdfLatex)
|
find_package(PdfLatex)
|
||||||
find_package(OpenSSL 1.1 REQUIRED )
|
find_package(OpenSSL 1.1 REQUIRED )
|
||||||
|
|
||||||
find_package(ZLIB REQUIRED)
|
find_package(ZLIB REQUIRED)
|
||||||
|
find_package(GLib2)
|
||||||
if(NOT WIN32 AND NOT APPLE)
|
find_package(Gio)
|
||||||
find_package(PkgConfig REQUIRED)
|
find_package(Libcloudproviders)
|
||||||
pkg_check_modules(CLOUDPROVIDERS cloudproviders IMPORTED_TARGET)
|
|
||||||
|
|
||||||
if(CLOUDPROVIDERS_FOUND)
|
|
||||||
pkg_check_modules(DBUS-1 REQUIRED dbus-1 IMPORTED_TARGET)
|
|
||||||
pkg_check_modules(GIO REQUIRED gio-2.0 IMPORTED_TARGET)
|
|
||||||
pkg_check_modules(GLIB2 REQUIRED glib-2.0 IMPORTED_TARGET)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (NOT DEFINED APPLICATION_ICON_NAME)
|
if (NOT DEFINED APPLICATION_ICON_NAME)
|
||||||
@@ -219,6 +231,8 @@ if (APPLE)
|
|||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
include(SanitizerFlags)
|
||||||
|
|
||||||
# Handle Translations, pick all client_* files from trans directory.
|
# Handle Translations, pick all client_* files from trans directory.
|
||||||
file( GLOB TRANS_FILES ${CMAKE_SOURCE_DIR}/translations/client_*.ts)
|
file( GLOB TRANS_FILES ${CMAKE_SOURCE_DIR}/translations/client_*.ts)
|
||||||
set(TRANSLATIONS ${TRANS_FILES})
|
set(TRANSLATIONS ${TRANS_FILES})
|
||||||
@@ -239,8 +253,8 @@ if(BUILD_SHELL_INTEGRATION)
|
|||||||
add_subdirectory(shell_integration)
|
add_subdirectory(shell_integration)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(BUILD_TESTING)
|
|
||||||
include(CTest)
|
include(CTest)
|
||||||
|
if(BUILD_TESTING)
|
||||||
enable_testing()
|
enable_testing()
|
||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
endif()
|
endif()
|
||||||
@@ -255,5 +269,3 @@ elseif(BUILD_CLIENT)
|
|||||||
install( FILES sync-exclude.lst DESTINATION ${SYSCONFDIR}/${APPLICATION_SHORTNAME} )
|
install( FILES sync-exclude.lst DESTINATION ${SYSCONFDIR}/${APPLICATION_SHORTNAME} )
|
||||||
configure_file(sync-exclude.lst bin/sync-exclude.lst COPYONLY)
|
configure_file(sync-exclude.lst bin/sync-exclude.lst COPYONLY)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES INCLUDE_QUIET_PACKAGES)
|
|
||||||
|
|||||||
@@ -9,8 +9,13 @@ endif(CPACK_GENERATOR MATCHES "NSIS")
|
|||||||
|
|
||||||
set( CMAKE_SOURCE_DIR @CMAKE_SOURCE_DIR@ )
|
set( CMAKE_SOURCE_DIR @CMAKE_SOURCE_DIR@ )
|
||||||
set( CMAKE_BINARY_DIR @CMAKE_BINARY_DIR@ )
|
set( CMAKE_BINARY_DIR @CMAKE_BINARY_DIR@ )
|
||||||
|
set( OEM_THEME_DIR @OEM_THEME_DIR@ )
|
||||||
|
|
||||||
|
if ( DEFINED OEM_THEME_DIR AND EXISTS ${OEM_THEME_DIR}/OEM.cmake )
|
||||||
|
include ( ${OEM_THEME_DIR}/OEM.cmake )
|
||||||
|
else ()
|
||||||
include ( "${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake" )
|
include ( "${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake" )
|
||||||
|
endif()
|
||||||
|
|
||||||
set( CRASHREPORTER_EXECUTABLE @CRASHREPORTER_EXECUTABLE@)
|
set( CRASHREPORTER_EXECUTABLE @CRASHREPORTER_EXECUTABLE@)
|
||||||
|
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ set( APPLICATION_SERVER_URL "" CACHE STRING "URL for the server to use. If enter
|
|||||||
set( APPLICATION_SERVER_URL_ENFORCE ON ) # If set and APPLICATION_SERVER_URL is defined, the server can only connect to the pre-defined URL
|
set( APPLICATION_SERVER_URL_ENFORCE ON ) # If set and APPLICATION_SERVER_URL is defined, the server can only connect to the pre-defined URL
|
||||||
set( APPLICATION_REV_DOMAIN "com.nextcloud.desktopclient" )
|
set( APPLICATION_REV_DOMAIN "com.nextcloud.desktopclient" )
|
||||||
set( APPLICATION_VIRTUALFILE_SUFFIX "nextcloud" CACHE STRING "Virtual file suffix (not including the .)")
|
set( APPLICATION_VIRTUALFILE_SUFFIX "nextcloud" CACHE STRING "Virtual file suffix (not including the .)")
|
||||||
set( APPLICATION_OCSP_STAPLING_ENABLED OFF )
|
|
||||||
set( APPLICATION_FORBID_BAD_SSL OFF )
|
|
||||||
|
|
||||||
set( LINUX_PACKAGE_SHORTNAME "nextcloud" )
|
set( LINUX_PACKAGE_SHORTNAME "nextcloud" )
|
||||||
set( LINUX_APPLICATION_ID "${APPLICATION_REV_DOMAIN}.${LINUX_PACKAGE_SHORTNAME}")
|
set( LINUX_APPLICATION_ID "${APPLICATION_REV_DOMAIN}.${LINUX_PACKAGE_SHORTNAME}")
|
||||||
@@ -30,13 +28,10 @@ option( WITH_CRASHREPORTER "Build crashreporter" OFF )
|
|||||||
#set( CRASHREPORTER_ICON ":/owncloud-icon.png" )
|
#set( CRASHREPORTER_ICON ":/owncloud-icon.png" )
|
||||||
|
|
||||||
## Updater options
|
## Updater options
|
||||||
option( BUILD_UPDATER "Build updater" ON )
|
option( BUILD_UPDATER "Build updater" OFF )
|
||||||
|
|
||||||
option( WITH_PROVIDERS "Build with providers list" ON )
|
option( WITH_PROVIDERS "Build with providers list" ON )
|
||||||
|
|
||||||
option( ENFORCE_VIRTUAL_FILES_SYNC_FOLDER "Enforce use of virtual files sync folder when available" OFF )
|
|
||||||
|
|
||||||
option( DO_NOT_USE_PROXY "Do not use system wide proxy, instead always do a direct connection to server" OFF )
|
|
||||||
|
|
||||||
## Theming options
|
## Theming options
|
||||||
set(NEXTCLOUD_BACKGROUND_COLOR "#0082c9" CACHE STRING "Default Nextcloud background color")
|
set(NEXTCLOUD_BACKGROUND_COLOR "#0082c9" CACHE STRING "Default Nextcloud background color")
|
||||||
|
|||||||
@@ -2,7 +2,11 @@ include( InstallRequiredSystemLibraries )
|
|||||||
|
|
||||||
set( CPACK_PACKAGE_CONTACT "Dominik Schmidt <domme@tomahawk-player.org>" )
|
set( CPACK_PACKAGE_CONTACT "Dominik Schmidt <domme@tomahawk-player.org>" )
|
||||||
|
|
||||||
|
if ( DEFINED OEM_THEME_DIR AND EXISTS ${OEM_THEME_DIR}/OEM.cmake )
|
||||||
|
include ( "${OEM_THEME_DIR}/OEM.cmake" )
|
||||||
|
else ()
|
||||||
include ( "${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake" )
|
include ( "${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake" )
|
||||||
|
endif()
|
||||||
|
|
||||||
include( VERSION.cmake )
|
include( VERSION.cmake )
|
||||||
set( CPACK_PACKAGE_VERSION_MAJOR ${MIRALL_VERSION_MAJOR} )
|
set( CPACK_PACKAGE_VERSION_MAJOR ${MIRALL_VERSION_MAJOR} )
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ The :computer: Nextcloud Desktop Client is a tool to synchronize files from Next
|
|||||||
with your computer.
|
with your computer.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="doc/images/main_dialog_christine.png" alt="Desktop Client on Windows" width="450">
|
<img src="https://nextcloud.com/wp-content/themes/next/assets/img/clients/desktop/macsettings.png?x16328" alt="Desktop Client on Mac OS]">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## :blue_heart: :tada: Contributing
|
## :blue_heart: :tada: Contributing
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
set( MIRALL_VERSION_MAJOR 3 )
|
set( MIRALL_VERSION_MAJOR 3 )
|
||||||
set( MIRALL_VERSION_MINOR 4 )
|
set( MIRALL_VERSION_MINOR 2 )
|
||||||
set( MIRALL_VERSION_PATCH 50 )
|
set( MIRALL_VERSION_PATCH 0 )
|
||||||
set( MIRALL_VERSION_YEAR 2021 )
|
set( MIRALL_VERSION_YEAR 2021 )
|
||||||
set( MIRALL_SOVERSION 0 )
|
set( MIRALL_SOVERSION 0 )
|
||||||
|
|
||||||
# Minimum supported server version according to https://docs.nextcloud.com/server/latest/admin_manual/release_schedule.html
|
# Minimum supported server version according to https://docs.nextcloud.com/server/latest/admin_manual/release_schedule.html
|
||||||
set(NEXTCLOUD_SERVER_VERSION_MIN_SUPPORTED_MAJOR 16)
|
set(NEXTCLOUD_SERVER_VERSION_MIN_SUPPORTED_MAJOR 19)
|
||||||
set(NEXTCLOUD_SERVER_VERSION_MIN_SUPPORTED_MINOR 0)
|
set(NEXTCLOUD_SERVER_VERSION_MIN_SUPPORTED_MINOR 0)
|
||||||
set(NEXTCLOUD_SERVER_VERSION_MIN_SUPPORTED_PATCH 0)
|
set(NEXTCLOUD_SERVER_VERSION_MIN_SUPPORTED_PATCH 0)
|
||||||
|
|
||||||
|
|||||||
@@ -2,88 +2,78 @@
|
|||||||
|
|
||||||
set -xe
|
set -xe
|
||||||
|
|
||||||
export APPNAME=${APPNAME:-nextcloud}
|
mkdir /app
|
||||||
export BUILD_UPDATER=${BUILD_UPDATER:-OFF}
|
mkdir /build
|
||||||
export BUILDNR=${BUILDNR:-0000}
|
|
||||||
export DESKTOP_CLIENT_ROOT=${DESKTOP_CLIENT_ROOT:-/home/user}
|
|
||||||
|
|
||||||
#Set Qt-5.15
|
|
||||||
export QT_BASE_DIR=/opt/qt5.15
|
|
||||||
|
|
||||||
|
#Set Qt-5.12
|
||||||
|
export QT_BASE_DIR=/opt/qt5.12.9
|
||||||
export QTDIR=$QT_BASE_DIR
|
export QTDIR=$QT_BASE_DIR
|
||||||
export PATH=$QT_BASE_DIR/bin:$PATH
|
export PATH=$QT_BASE_DIR/bin:$PATH
|
||||||
export LD_LIBRARY_PATH=$QT_BASE_DIR/lib/x86_64-linux-gnu:$QT_BASE_DIR/lib:$LD_LIBRARY_PATH
|
export LD_LIBRARY_PATH=$QT_BASE_DIR/lib/x86_64-linux-gnu:$QT_BASE_DIR/lib:$LD_LIBRARY_PATH
|
||||||
export PKG_CONFIG_PATH=$QT_BASE_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
|
export PKG_CONFIG_PATH=$QT_BASE_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
|
||||||
|
|
||||||
# Set defaults
|
#Set APPID for .desktop file processing
|
||||||
|
export LINUX_APPLICATION_ID=com.nextcloud.desktopclient.nextcloud
|
||||||
|
|
||||||
|
#set defaults
|
||||||
export SUFFIX=${DRONE_PULL_REQUEST:=master}
|
export SUFFIX=${DRONE_PULL_REQUEST:=master}
|
||||||
if [ $SUFFIX != "master" ]; then
|
if [ $SUFFIX != "master" ]; then
|
||||||
SUFFIX="PR-$SUFFIX"
|
SUFFIX="PR-$SUFFIX"
|
||||||
fi
|
fi
|
||||||
if [ "$BUILD_UPDATER" != "OFF" ]; then
|
|
||||||
BUILD_UPDATER=ON
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir /app
|
#QtKeyChain v0.10.0
|
||||||
|
cd /build
|
||||||
# QtKeyChain
|
|
||||||
git clone https://github.com/frankosterfeld/qtkeychain.git
|
git clone https://github.com/frankosterfeld/qtkeychain.git
|
||||||
cd qtkeychain
|
cd qtkeychain
|
||||||
git checkout v0.10.0
|
git checkout v0.10.0
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -G Ninja -D CMAKE_INSTALL_PREFIX=/app/usr ..
|
cmake -D CMAKE_INSTALL_PREFIX=/usr ../
|
||||||
cmake --build . --target all
|
make -j4
|
||||||
cmake --build . --target install
|
make install
|
||||||
|
|
||||||
|
|
||||||
#Build client
|
#Build client
|
||||||
|
cd /build
|
||||||
mkdir build-client
|
mkdir build-client
|
||||||
cd build-client
|
cd build-client
|
||||||
cmake \
|
cmake -D CMAKE_INSTALL_PREFIX=/usr \
|
||||||
-G Ninja \
|
|
||||||
-D CMAKE_INSTALL_PREFIX=/app/usr \
|
|
||||||
-D BUILD_TESTING=OFF \
|
-D BUILD_TESTING=OFF \
|
||||||
-D BUILD_UPDATER=$BUILD_UPDATER \
|
-D BUILD_UPDATER=ON \
|
||||||
-D MIRALL_VERSION_BUILD=$BUILDNR \
|
-DMIRALL_VERSION_SUFFIX=PR-$DRONE_PULL_REQUEST \
|
||||||
-D MIRALL_VERSION_SUFFIX="$VERSION_SUFFIX" \
|
-DMIRALL_VERSION_BUILD=$DRONE_BUILD_NUMBER \
|
||||||
${DESKTOP_CLIENT_ROOT}
|
$DRONE_WORKSPACE
|
||||||
cmake --build . --target all
|
make -j4
|
||||||
cmake --build . --target install
|
make DESTDIR=/app install
|
||||||
|
|
||||||
# Move stuff around
|
# Move stuff around
|
||||||
cd /app
|
cd /app
|
||||||
|
|
||||||
mv usr/lib/x86_64-linux-gnu/* usr/lib/
|
mv ./usr/lib/x86_64-linux-gnu/* ./usr/lib/
|
||||||
|
rm -rf ./usr/lib/cmake
|
||||||
|
rm -rf ./usr/include
|
||||||
|
rm -rf ./usr/mkspecs
|
||||||
|
rm -rf ./usr/lib/x86_64-linux-gnu/
|
||||||
|
|
||||||
mkdir usr/plugins
|
# Don't bundle nextcloudcmd as we don't run it anyway
|
||||||
mv usr/lib/${APPNAME}sync_vfs_suffix.so usr/plugins
|
rm -rf ./usr/bin/nextcloudcmd
|
||||||
mv usr/lib/${APPNAME}sync_vfs_xattr.so usr/plugins
|
|
||||||
|
|
||||||
|
|
||||||
rm -rf usr/lib/cmake
|
|
||||||
rm -rf usr/include
|
|
||||||
rm -rf usr/mkspecs
|
|
||||||
rm -rf usr/lib/x86_64-linux-gnu/
|
|
||||||
|
|
||||||
# Don't bundle the explorer extentions as we can't do anything with them in the AppImage
|
# Don't bundle the explorer extentions as we can't do anything with them in the AppImage
|
||||||
rm -rf usr/share/caja-python/
|
rm -rf ./usr/share/caja-python/
|
||||||
rm -rf usr/share/nautilus-python/
|
rm -rf ./usr/share/nautilus-python/
|
||||||
rm -rf usr/share/nemo-python/
|
rm -rf ./usr/share/nemo-python/
|
||||||
|
|
||||||
# Move sync exclude to right location
|
# Move sync exclude to right location
|
||||||
mv usr/etc/*/sync-exclude.lst usr/bin/
|
mv ./etc/Nextcloud/sync-exclude.lst ./usr/bin/
|
||||||
rm -rf etc
|
rm -rf ./etc
|
||||||
|
|
||||||
# com.nextcloud.desktopclient.nextcloud.desktop
|
DESKTOP_FILE=/app/usr/share/applications/${LINUX_APPLICATION_ID}.desktop
|
||||||
DESKTOP_FILE=$(ls /app/usr/share/applications/*.desktop)
|
|
||||||
sed -i -e 's|Icon=nextcloud|Icon=Nextcloud|g' ${DESKTOP_FILE} # Bug in desktop file?
|
sed -i -e 's|Icon=nextcloud|Icon=Nextcloud|g' ${DESKTOP_FILE} # Bug in desktop file?
|
||||||
cp ./usr/share/icons/hicolor/512x512/apps/Nextcloud.png . # Workaround for linuxeployqt bug, FIXME
|
cp ./usr/share/icons/hicolor/512x512/apps/Nextcloud.png . # Workaround for linuxeployqt bug, FIXME
|
||||||
|
|
||||||
|
|
||||||
# Because distros need to get their shit together
|
# Because distros need to get their shit together
|
||||||
cp -R /usr/lib/x86_64-linux-gnu/libssl.so* ./usr/lib/
|
cp -R /lib/x86_64-linux-gnu/libssl.so* ./usr/lib/
|
||||||
cp -R /usr/lib/x86_64-linux-gnu/libcrypto.so* ./usr/lib/
|
cp -R /lib/x86_64-linux-gnu/libcrypto.so* ./usr/lib/
|
||||||
cp -P /usr/local/lib/libssl.so* ./usr/lib/
|
cp -P /usr/local/lib/libssl.so* ./usr/lib/
|
||||||
cp -P /usr/local/lib/libcrypto.so* ./usr/lib/
|
cp -P /usr/local/lib/libcrypto.so* ./usr/lib/
|
||||||
|
|
||||||
@@ -91,23 +81,19 @@ cp -P /usr/local/lib/libcrypto.so* ./usr/lib/
|
|||||||
cp -P -r /usr/lib/x86_64-linux-gnu/nss ./usr/lib/
|
cp -P -r /usr/lib/x86_64-linux-gnu/nss ./usr/lib/
|
||||||
|
|
||||||
# Use linuxdeployqt to deploy
|
# Use linuxdeployqt to deploy
|
||||||
wget --ca-directory=/etc/ssl/certs -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
cd /build
|
||||||
|
wget --ca-directory=/etc/ssl/certs/ -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
||||||
chmod a+x linuxdeployqt*.AppImage
|
chmod a+x linuxdeployqt*.AppImage
|
||||||
./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
|
./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
|
||||||
rm ./linuxdeployqt-continuous-x86_64.AppImage
|
rm ./linuxdeployqt-continuous-x86_64.AppImage
|
||||||
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
||||||
export LD_LIBRARY_PATH=/app/usr/lib/
|
export LD_LIBRARY_PATH=/app/usr/lib/
|
||||||
./squashfs-root/AppRun ${DESKTOP_FILE} -bundle-non-qt-libs -qmldir=${DESKTOP_CLIENT_ROOT}/src/gui
|
./squashfs-root/AppRun ${DESKTOP_FILE} -bundle-non-qt-libs -qmldir=$DRONE_WORKSPACE/src/gui
|
||||||
|
|
||||||
# Set origin
|
# Set origin
|
||||||
./squashfs-root/usr/bin/patchelf --set-rpath '$ORIGIN/' /app/usr/lib/lib${APPNAME}sync.so.0
|
./squashfs-root/usr/bin/patchelf --set-rpath '$ORIGIN/' /app/usr/lib/libnextcloudsync.so.0
|
||||||
|
|
||||||
# Build AppImage
|
# Build AppImage
|
||||||
./squashfs-root/AppRun ${DESKTOP_FILE} -appimage -updateinformation="gh-releases-zsync|nextcloud-releases|desktop|latest|Nextcloud-*-x86_64.AppImage.zsync"
|
./squashfs-root/AppRun ${DESKTOP_FILE} -appimage
|
||||||
|
|
||||||
#move AppImage
|
|
||||||
if [ ! -z "$DRONE_COMMIT" ]
|
|
||||||
then
|
|
||||||
mv Nextcloud*.AppImage Nextcloud-${SUFFIX}-${DRONE_COMMIT}-x86_64.AppImage
|
mv Nextcloud*.AppImage Nextcloud-${SUFFIX}-${DRONE_COMMIT}-x86_64.AppImage
|
||||||
fi
|
|
||||||
mv *.AppImage ${DESKTOP_CLIENT_ROOT}/
|
|
||||||
|
|||||||
@@ -15,10 +15,10 @@ OBS_PROJECT_BETA=home:ivaradi:beta
|
|||||||
OBS_PACKAGE=nextcloud-desktop
|
OBS_PACKAGE=nextcloud-desktop
|
||||||
|
|
||||||
if test "${DRONE_TARGET_BRANCH}" = "stable-2.6"; then
|
if test "${DRONE_TARGET_BRANCH}" = "stable-2.6"; then
|
||||||
UBUNTU_DISTRIBUTIONS="bionic focal impish jammy"
|
UBUNTU_DISTRIBUTIONS="bionic focal groovy hirsute"
|
||||||
DEBIAN_DISTRIBUTIONS="buster stretch testing"
|
DEBIAN_DISTRIBUTIONS="buster stretch testing"
|
||||||
else
|
else
|
||||||
UBUNTU_DISTRIBUTIONS="focal impish jammy"
|
UBUNTU_DISTRIBUTIONS="focal groovy hirsute"
|
||||||
DEBIAN_DISTRIBUTIONS="testing"
|
DEBIAN_DISTRIBUTIONS="testing"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -88,7 +88,7 @@ for distribution in ${UBUNTU_DISTRIBUTIONS} ${DEBIAN_DISTRIBUTIONS}; do
|
|||||||
dpkg-genchanges -S -sa > "../nextcloud-desktop_${fullver}_source.changes"
|
dpkg-genchanges -S -sa > "../nextcloud-desktop_${fullver}_source.changes"
|
||||||
|
|
||||||
if test -f ~/.has_ppa_keys; then
|
if test -f ~/.has_ppa_keys; then
|
||||||
debsign -k2265D8767D14AA7B -S
|
debsign -k7D14AA7B -S
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
cd ..
|
cd ..
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ cd /build
|
|||||||
|
|
||||||
# AppImage
|
# AppImage
|
||||||
export APPIMAGE=$(readlink -f ./Nextcloud*.AppImage)
|
export APPIMAGE=$(readlink -f ./Nextcloud*.AppImage)
|
||||||
export UPDATE=$(readlink -f ./Nextcloud*.AppImage.zsync)
|
|
||||||
export BASENAME=$(basename ${APPIMAGE})
|
export BASENAME=$(basename ${APPIMAGE})
|
||||||
|
|
||||||
if ! test -e $APPIMAGE ; then
|
if ! test -e $APPIMAGE ; then
|
||||||
@@ -71,7 +70,6 @@ upload_release_asset()
|
|||||||
{
|
{
|
||||||
uploadUrl=$1
|
uploadUrl=$1
|
||||||
echo $(curl --max-time 900 -u $GIT_USERNAME:$GIT_TOKEN -X POST $uploadUrl --header "Content-Type: application/octet-stream" --upload-file $APPIMAGE)
|
echo $(curl --max-time 900 -u $GIT_USERNAME:$GIT_TOKEN -X POST $uploadUrl --header "Content-Type: application/octet-stream" --upload-file $APPIMAGE)
|
||||||
echo $(curl --max-time 900 -u $GIT_USERNAME:$GIT_TOKEN -X POST $uploadUrl --header "Content-Type: application/octet-stream" --upload-file $UPDATE)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
delete_release_asset()
|
delete_release_asset()
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
|
|
||||||
# Check if varialbe MAC_INSTALLER_BACKGROUND_FILE is defined.
|
# Check if varialbe MAC_INSTALLER_BACKGROUND_FILE is defined. That might come
|
||||||
|
# from the OEM.cmake for branded clients or from NEXTCLOUD.cmake for the non
|
||||||
|
# branded client.
|
||||||
# Make sure that the MAC_INSTALLER_BACKGROUND_FILE contains the full path, ie.
|
# Make sure that the MAC_INSTALLER_BACKGROUND_FILE contains the full path, ie.
|
||||||
# includes CMAKE_SOURCE_DIR or so.
|
# includes CMAKE_SOURCE_DIR or so.
|
||||||
|
|
||||||
@@ -9,7 +11,7 @@ else()
|
|||||||
set(MAC_INSTALLER_DO_CUSTOM_BACKGROUND "0")
|
set(MAC_INSTALLER_DO_CUSTOM_BACKGROUND "0")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(Qt5 5.15 COMPONENTS Core REQUIRED)
|
find_package(Qt5 5.12 COMPONENTS Core REQUIRED)
|
||||||
configure_file(create_mac.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/create_mac.sh)
|
configure_file(create_mac.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/create_mac.sh)
|
||||||
configure_file(macosx.pkgproj.cmake ${CMAKE_CURRENT_BINARY_DIR}/macosx.pkgproj)
|
configure_file(macosx.pkgproj.cmake ${CMAKE_CURRENT_BINARY_DIR}/macosx.pkgproj)
|
||||||
configure_file(pre_install.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/pre_install.sh)
|
configure_file(pre_install.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/pre_install.sh)
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<key>GID</key>
|
<key>GID</key>
|
||||||
<integer>80</integer>
|
<integer>80</integer>
|
||||||
<key>PATH</key>
|
<key>PATH</key>
|
||||||
<string>@APPLICATION_NAME@.app</string>
|
<string>@APPLICATION_EXECUTABLE@.app</string>
|
||||||
<key>PATH_TYPE</key>
|
<key>PATH_TYPE</key>
|
||||||
<integer>3</integer>
|
<integer>3</integer>
|
||||||
<key>PERMISSIONS</key>
|
<key>PERMISSIONS</key>
|
||||||
@@ -695,12 +695,7 @@
|
|||||||
<key>PROJECT_SETTINGS</key>
|
<key>PROJECT_SETTINGS</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>ADVANCED_OPTIONS</key>
|
<key>ADVANCED_OPTIONS</key>
|
||||||
<dict>
|
<dict/>
|
||||||
<key>installer-script.options:hostArchitectures</key>
|
|
||||||
<array>
|
|
||||||
<string>x86_64,arm64</string>
|
|
||||||
</array>
|
|
||||||
</dict>
|
|
||||||
<key>BUILD_FORMAT</key>
|
<key>BUILD_FORMAT</key>
|
||||||
<integer>0</integer>
|
<integer>0</integer>
|
||||||
<key>BUILD_PATH</key>
|
<key>BUILD_PATH</key>
|
||||||
|
|||||||
@@ -1,82 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
|
|
||||||
# A general note: We first produce a x86_64 and a arm64 app package
|
|
||||||
# and then merge them together instead of compiling the desktop client
|
|
||||||
# with the CMake option CMAKE_OSX_ARCHITECTURES="x86_64;arm64" because
|
|
||||||
# macdeployqt can not handle universal binaries well. In the future
|
|
||||||
# with Qt6 this might change and this script will become obsolete.
|
|
||||||
|
|
||||||
|
|
||||||
def usage(program_name):
|
|
||||||
print("Creates a universal app package from a x86_64 and a arm64 app package.")
|
|
||||||
print("Usage: {} x86_64_app_file arm64_app_file output_directory".format(program_name))
|
|
||||||
print("Example: {} some_dir/Nextcloud.app some_other_dir/Nextcloud.app output_dir".format(program_name))
|
|
||||||
|
|
||||||
|
|
||||||
def execute(command):
|
|
||||||
return subprocess.check_output(command)
|
|
||||||
|
|
||||||
|
|
||||||
def path_relative_to_package(app_package_file_path, file_path):
|
|
||||||
if file_path.startswith(app_package_file_path):
|
|
||||||
relative_path = file_path[len(app_package_file_path):]
|
|
||||||
if relative_path.startswith("/"):
|
|
||||||
return relative_path[1:]
|
|
||||||
return relative_path
|
|
||||||
return file_path
|
|
||||||
|
|
||||||
|
|
||||||
def is_executable(file_path):
|
|
||||||
output = str(execute(["file", file_path]))
|
|
||||||
if (("Mach-O 64-bit dynamically linked shared library" in output)
|
|
||||||
or ("Mach-O 64-bit executable" in output)):
|
|
||||||
return True
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
if len(sys.argv) != 4:
|
|
||||||
usage(sys.argv[0])
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
x86_64_app_file = sys.argv[1]
|
|
||||||
if not os.path.exists(x86_64_app_file):
|
|
||||||
print("Can't create universal: Path {} already exists".format(x86_64_app_file))
|
|
||||||
sys.exit(1)
|
|
||||||
arm64_app_file = sys.argv[2]
|
|
||||||
if not os.path.exists(arm64_app_file):
|
|
||||||
print("Can't create universal: Path {} already exists".format(arm64_app_file))
|
|
||||||
sys.exit(1)
|
|
||||||
output_dir = sys.argv[3]
|
|
||||||
|
|
||||||
# Copy the Arm64 variant to the output location if possible
|
|
||||||
if not os.path.exists(output_dir):
|
|
||||||
os.makedirs(output_dir)
|
|
||||||
app_file_name = os.path.basename(arm64_app_file)
|
|
||||||
universal_app_file = os.path.join(output_dir, app_file_name)
|
|
||||||
if os.path.exists(universal_app_file):
|
|
||||||
print("Can't create universal: Path {} already exists".format(universal_app_file))
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
execute(["cp", "-a", arm64_app_file, output_dir])
|
|
||||||
|
|
||||||
# Now walk through the copied arm64 version and replace the binaries
|
|
||||||
for root, dirs, files in os.walk(universal_app_file):
|
|
||||||
for f in files:
|
|
||||||
absoulte_file_path = os.path.join(root, f)
|
|
||||||
root_relative = path_relative_to_package(universal_app_file, root)
|
|
||||||
x86_64_absolute_path = os.path.join(x86_64_app_file, root_relative, f)
|
|
||||||
arm64_absolute_path = os.path.join(arm64_app_file, root_relative, f)
|
|
||||||
if os.path.islink(absoulte_file_path) or not is_executable(absoulte_file_path):
|
|
||||||
continue
|
|
||||||
try:
|
|
||||||
execute(["lipo", "-create", "-output", absoulte_file_path, arm64_absolute_path, x86_64_absolute_path])
|
|
||||||
except:
|
|
||||||
print("Could not merge {} with {} into {}!".format(arm64_absolute_path, x86_64_absolute_path, absoulte_file_path))
|
|
||||||
|
|
||||||
print("Finished :)")
|
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
# Always enable the new 10.10 finder plugin if available
|
# Always enable the new 10.10 finder plugin if available
|
||||||
if [ -x "$(command -v pluginkit)" ]; then
|
if [ -x "$(command -v pluginkit)" ]; then
|
||||||
# add it to DB. This happens automatically too but we try to push it a bit harder for issue #3463
|
# add it to DB. This happens automatically too but we try to push it a bit harder for issue #3463
|
||||||
pluginkit -a "/Applications/@APPLICATION_NAME@.app/Contents/PlugIns/FinderSyncExt.appex/"
|
pluginkit -a "/Applications/@APPLICATION_EXECUTABLE@.app/Contents/PlugIns/FinderSyncExt.appex/"
|
||||||
# Since El Capitan we need to sleep #4650
|
# Since El Capitan we need to sleep #4650
|
||||||
sleep 10s
|
sleep 10s
|
||||||
# enable it
|
# enable it
|
||||||
|
|||||||
@@ -2,6 +2,5 @@
|
|||||||
|
|
||||||
# kill the old version. see issue #2044
|
# kill the old version. see issue #2044
|
||||||
killall @APPLICATION_EXECUTABLE@
|
killall @APPLICATION_EXECUTABLE@
|
||||||
killall @APPLICATION_NAME@
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|||||||
@@ -26,8 +26,6 @@ install(FILES
|
|||||||
${CMAKE_CURRENT_BINARY_DIR}/make-msi.bat
|
${CMAKE_CURRENT_BINARY_DIR}/make-msi.bat
|
||||||
Platform.wxi
|
Platform.wxi
|
||||||
Nextcloud.wxs
|
Nextcloud.wxs
|
||||||
RegistryCleanup.vbs
|
|
||||||
RegistryCleanupCustomAction.wxs
|
|
||||||
gui/banner.bmp
|
gui/banner.bmp
|
||||||
gui/dialog.bmp
|
gui/dialog.bmp
|
||||||
DESTINATION msi/)
|
DESTINATION msi/)
|
||||||
|
|||||||
@@ -55,9 +55,9 @@
|
|||||||
|
|
||||||
<!-- Detect legacy NSIS installation -->
|
<!-- Detect legacy NSIS installation -->
|
||||||
<Property Id="NSIS_UNINSTALLEXE">
|
<Property Id="NSIS_UNINSTALLEXE">
|
||||||
<RegistrySearch Id="RegistryLegacyUninstallString" Type="file" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\$(var.AppName)" Name="UninstallString" Win64="no">
|
<DirectorySearch Id="LegacyUninstallVersion" Path="[INSTALLDIR]">
|
||||||
<FileSearch Id="LegacyUninstallFileName" Name="Uninstall.exe"/>
|
<FileSearch Name="Uninstall.exe" />
|
||||||
</RegistrySearch>
|
</DirectorySearch>
|
||||||
</Property>
|
</Property>
|
||||||
|
|
||||||
<!-- Property to disable update checks -->
|
<!-- Property to disable update checks -->
|
||||||
@@ -77,15 +77,11 @@
|
|||||||
<!-- Uninstall: Remove sync folders from Explorer's Navigation Pane, only effective for the current user (home users) -->
|
<!-- Uninstall: Remove sync folders from Explorer's Navigation Pane, only effective for the current user (home users) -->
|
||||||
<Custom Action="RemoveNavigationPaneEntries" After="RemoveFiles">(NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL")</Custom>
|
<Custom Action="RemoveNavigationPaneEntries" After="RemoveFiles">(NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL")</Custom>
|
||||||
|
|
||||||
<!-- Uninstall: Cleanup the Registry -->
|
<!-- Schedule Reboot for the Shell Extensions -->
|
||||||
<Custom Action="RegistryCleanupCustomAction" After="RemoveFiles">(NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL")</Custom>
|
<ScheduleReboot After="InstallFinalize">NOT (DO_NOT_SCHEDULE_REBOOT=1)</ScheduleReboot>
|
||||||
|
|
||||||
<!-- Schedule Reboot for the Shell Extensions (in silent installation mode only, or if SCHEDULE_REBOOT argument is set-->
|
|
||||||
<ScheduleReboot After="InstallFinalize">(SCHEDULE_REBOOT=1) OR NOT (UILevel=2)</ScheduleReboot>
|
|
||||||
</InstallExecuteSequence>
|
</InstallExecuteSequence>
|
||||||
|
|
||||||
<!-- "Add or Remove" Programs Entries -->
|
<!-- "Add or Remove" Programs Entries -->
|
||||||
<Property Id="APPNAME">$(var.AppName)</Property>
|
|
||||||
<Property Id="ARPPRODUCTICON">$(var.AppIcon)</Property>
|
<Property Id="ARPPRODUCTICON">$(var.AppIcon)</Property>
|
||||||
<Property Id="ARPHELPLINK">$(var.AppHelpLink)</Property>
|
<Property Id="ARPHELPLINK">$(var.AppHelpLink)</Property>
|
||||||
<Property Id="ARPURLINFOABOUT">$(var.AppInfoLink)</Property>
|
<Property Id="ARPURLINFOABOUT">$(var.AppInfoLink)</Property>
|
||||||
@@ -218,5 +214,6 @@
|
|||||||
<Condition Level="0">(NO_DESKTOP_SHORTCUT=1)</Condition>
|
<Condition Level="0">(NO_DESKTOP_SHORTCUT=1)</Condition>
|
||||||
</Feature>
|
</Feature>
|
||||||
</Feature>
|
</Feature>
|
||||||
|
|
||||||
</Product>
|
</Product>
|
||||||
</Wix>
|
</Wix>
|
||||||
|
|||||||
@@ -1,54 +0,0 @@
|
|||||||
On Error goto 0
|
|
||||||
|
|
||||||
Const HKEY_LOCAL_MACHINE = &H80000002
|
|
||||||
|
|
||||||
Const strObjRegistry = "winmgmts:\\.\root\default:StdRegProv"
|
|
||||||
|
|
||||||
Function RegistryDeleteKeyRecursive(regRoot, strKeyPath)
|
|
||||||
Set objRegistry = GetObject(strObjRegistry)
|
|
||||||
objRegistry.EnumKey regRoot, strKeyPath, arrSubkeys
|
|
||||||
If IsArray(arrSubkeys) Then
|
|
||||||
For Each strSubkey In arrSubkeys
|
|
||||||
RegistryDeleteKeyRecursive regRoot, strKeyPath & "\" & strSubkey
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
objRegistry.DeleteKey regRoot, strKeyPath
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Function RegistryListSubkeys(regRoot, strKeyPath)
|
|
||||||
Set objRegistry = GetObject(strObjRegistry)
|
|
||||||
objRegistry.EnumKey regRoot, strKeyPath, arrSubkeys
|
|
||||||
RegistryListSubkeys = arrSubkeys
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Function GetUserSID()
|
|
||||||
Dim objWshNetwork, objUserAccount
|
|
||||||
|
|
||||||
Set objWshNetwork = CreateObject("WScript.Network")
|
|
||||||
|
|
||||||
Set objUserAccount = GetObject("winmgmts://" & objWshNetwork.UserDomain & "/root/cimv2").Get("Win32_UserAccount.Domain='" & objWshNetwork.ComputerName & "',Name='" & objWshNetwork.UserName & "'")
|
|
||||||
GetUserSID = objUserAccount.SID
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Function RegistryCleanupSyncRootManager()
|
|
||||||
strSyncRootManagerKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SyncRootManager"
|
|
||||||
|
|
||||||
arrSubKeys = RegistryListSubkeys(HKEY_LOCAL_MACHINE, strSyncRootManagerKeyPath)
|
|
||||||
|
|
||||||
If IsArray(arrSubkeys) Then
|
|
||||||
arrSubkeys=Filter(arrSubkeys, Session.Property("APPNAME"))
|
|
||||||
End If
|
|
||||||
If IsArray(arrSubkeys) Then
|
|
||||||
arrSubkeys=Filter(arrSubkeys, GetUserSID())
|
|
||||||
End If
|
|
||||||
|
|
||||||
If IsArray(arrSubkeys) Then
|
|
||||||
For Each strSubkey In arrSubkeys
|
|
||||||
RegistryDeleteKeyRecursive HKEY_LOCAL_MACHINE, strSyncRootManagerKeyPath & "\" & strSubkey
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Function RegistryCleanup()
|
|
||||||
RegistryCleanupSyncRootManager()
|
|
||||||
End Function
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
||||||
<Fragment>
|
|
||||||
<Binary Id="RegistryCleanup" SourceFile="RegistryCleanup.vbs"/>
|
|
||||||
<CustomAction Id='RegistryCleanupCustomAction' BinaryKey="RegistryCleanup" VBScriptCall="RegistryCleanup" Return="ignore" Execute="immediate"/>
|
|
||||||
</Fragment>
|
|
||||||
</Wix>
|
|
||||||
@@ -17,10 +17,10 @@ Rem Generate collect.wxs
|
|||||||
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
|
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
|
||||||
|
|
||||||
Rem Compile en-US (https://www.firegiant.com/wix/tutorial/transforms/morphing-installers/)
|
Rem Compile en-US (https://www.firegiant.com/wix/tutorial/transforms/morphing-installers/)
|
||||||
"%WIX%\bin\candle.exe" -dcodepage=1252 -dPlatform=%BuildArch% -arch %BuildArch% -dHarvestAppDir="%HarvestAppDir%" -ext WixUtilExtension NCMsiHelper.wxs WinShellExt.wxs collect.wxs Nextcloud.wxs RegistryCleanupCustomAction.wxs
|
"%WIX%\bin\candle.exe" -dcodepage=1252 -dPlatform=%BuildArch% -arch %BuildArch% -dHarvestAppDir="%HarvestAppDir%" -ext WixUtilExtension NCMsiHelper.wxs WinShellExt.wxs collect.wxs Nextcloud.wxs
|
||||||
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
|
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
|
||||||
|
|
||||||
Rem Link MSI package
|
Rem Link MSI package
|
||||||
"%WIX%\bin\light.exe" -sw1076 -ext WixUIExtension -ext WixUtilExtension -cultures:en-us NCMsiHelper.wixobj WinShellExt.wixobj collect.wixobj Nextcloud.wixobj RegistryCleanupCustomAction.wixobj -out "@MSI_INSTALLER_FILENAME@"
|
"%WIX%\bin\light.exe" -sw1076 -ext WixUIExtension -ext WixUtilExtension -cultures:en-us NCMsiHelper.wixobj WinShellExt.wixobj collect.wixobj Nextcloud.wixobj -out "@MSI_INSTALLER_FILENAME@"
|
||||||
|
|
||||||
exit %ERRORLEVEL%
|
exit %ERRORLEVEL%
|
||||||
|
|||||||
46
appveyor.ini
46
appveyor.ini
@@ -1,6 +1,7 @@
|
|||||||
[General]
|
[General]
|
||||||
Branch = master
|
Branch = master
|
||||||
ShallowClone = True
|
ShallowClone = True
|
||||||
|
Command=craft
|
||||||
|
|
||||||
# Variables defined here override the default value
|
# Variables defined here override the default value
|
||||||
# The variable names are casesensitive
|
# The variable names are casesensitive
|
||||||
@@ -12,42 +13,33 @@ CreateCache = False
|
|||||||
# Settings applicable for all Crafts matrices
|
# Settings applicable for all Crafts matrices
|
||||||
# Settings are Category/key=value
|
# Settings are Category/key=value
|
||||||
# Category is case sensitive
|
# Category is case sensitive
|
||||||
|
|
||||||
[GeneralSettings]
|
[GeneralSettings]
|
||||||
|
General/EMERGE_PKGDSTDIR=${Variables:APPVEYOR_BUILD_FOLDER}/binaries
|
||||||
## This is the location of your python installation.
|
Paths/python = C:\Python36
|
||||||
## This value must be set.
|
Paths/python27 = C:\Python27
|
||||||
Paths/Python = C:\Python39-x64
|
|
||||||
Paths/Python27 = C:\Python27-x64
|
|
||||||
|
|
||||||
Compile/BuildType = RelWithDebInfo
|
|
||||||
|
|
||||||
Compile/UseNinja = True
|
|
||||||
|
|
||||||
Paths/downloaddir = ${Variables:Root}\downloads
|
Paths/downloaddir = ${Variables:Root}\downloads
|
||||||
ShortPath/Enabled = False
|
ShortPath/Enabled = False
|
||||||
ShortPath/EnableJunctions = True
|
ShortPath/EnableJunctions = True
|
||||||
ShortPath/JunctionDir = C:\CM-SP\
|
ShortPath/JunctionDir = C:\CM-SP\
|
||||||
|
Packager/CacheDir = ${Variables:Root}\cache
|
||||||
; Packager/RepositoryUrl = https://files.kde.org/craft/
|
|
||||||
Packager/PackageType = NullsoftInstallerPackager
|
|
||||||
Packager/RepositoryUrl = http://ftp.acc.umu.se/mirror/kde.org/files/craft/master/
|
|
||||||
|
|
||||||
ContinuousIntegration/Enabled = True
|
|
||||||
|
|
||||||
## This option can be used to override the default make program
|
|
||||||
## change the value to the path of the executable you want to use instead.
|
|
||||||
Compile/MakeProgram = jom
|
|
||||||
|
|
||||||
Packager/UseCache = ${Variables:UseCache}
|
Packager/UseCache = ${Variables:UseCache}
|
||||||
Packager/CreateCache = ${Variables:CreateCache}
|
Packager/CreateCache = ${Variables:CreateCache}
|
||||||
Packager/CacheDir = ${Variables:Root}\cache
|
; Packager/RepositoryUrl = https://files.kde.org/craft/
|
||||||
|
Packager/PackageType = PortablePackager
|
||||||
|
Packager/RepositoryUrl = http://ftp.acc.umu.se/mirror/kde.org/files/craft/master/
|
||||||
|
Compile/BuildType = RelWithDebInfo
|
||||||
|
ContinuousIntegration/Enabled = True
|
||||||
|
|
||||||
[BlueprintSettings]
|
[BlueprintSettings]
|
||||||
# don't try to pip install on the ci
|
# don't try to pip install on the ci
|
||||||
python-modules.ignored = True
|
python-modules.ignored = True
|
||||||
nextcloud-client.buildTests = True
|
|
||||||
binary/mysql.useMariaDB = False
|
|
||||||
|
|
||||||
[windows-msvc2019_64-cl]
|
libs/qt5.version = 5.9.3
|
||||||
QtSDK/Compiler = msvc2019_64
|
craft/craft-core.version = master
|
||||||
General/ABI = windows-msvc2019_64-cl
|
|
||||||
|
[windows-msvc2017_64-cl]
|
||||||
|
General/ABI = windows-msvc2017_64-cl
|
||||||
|
|
||||||
|
[windows-msvc2017_32-cl]
|
||||||
|
General/ABI = windows-msvc2017_32-cl
|
||||||
|
|||||||
44
appveyor.yml
44
appveyor.yml
@@ -1,42 +1,50 @@
|
|||||||
version: '{build}-{branch}'
|
version: '{build}-{branch}'
|
||||||
|
|
||||||
image: Visual Studio 2019
|
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
clone_depth: 1
|
clone_depth: 50
|
||||||
|
|
||||||
|
|
||||||
init:
|
init:
|
||||||
- ps: |
|
- ps: |
|
||||||
function craft() {
|
function craft($target) {
|
||||||
cmd /C "echo %PATH%"
|
& C:\Python36\python.exe "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $target -c $args
|
||||||
& "C:\Python39-x64\python.exe" "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $env:TARGET -c $args
|
|
||||||
if($LASTEXITCODE -ne 0) {exit $LASTEXITCODE}
|
if($LASTEXITCODE -ne 0) {exit $LASTEXITCODE}
|
||||||
}
|
}
|
||||||
function crafttests() {
|
|
||||||
cmd /C "echo %PATH%"
|
|
||||||
& "C:\Python39-x64\python.exe" "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $env:TARGET -c $args
|
|
||||||
}
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- ps: |
|
- ps: |
|
||||||
#use cmd to silence powershell behaviour for stderr
|
#use cmd to silence powershell behaviour for stderr
|
||||||
& cmd /C "git clone -q --depth=1 https://invent.kde.org/packaging/craftmaster.git C:\CraftMaster\CraftMaster 2>&1"
|
& cmd /C "git clone -q --depth=1 git://anongit.kde.org/craftmaster.git C:\CraftMaster\CraftMaster 2>&1"
|
||||||
craft --add-blueprint-repository [git]https://github.com/nextcloud/desktop-client-blueprints.git
|
|
||||||
craft craft
|
craft $env:TARGET -i craft
|
||||||
craft --install-deps nextcloud-client
|
craft $env:TARGET --install-deps owncloud-client
|
||||||
craft nsis
|
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- ps: |
|
- ps: |
|
||||||
craft --src-dir $env:APPVEYOR_BUILD_FOLDER nextcloud-client
|
craft $env:TARGET --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER owncloud-client
|
||||||
|
|
||||||
|
after_build:
|
||||||
|
- ps: |
|
||||||
|
craft $env:TARGET --src-dir $env:APPVEYOR_BUILD_FOLDER --package owncloud-client
|
||||||
|
|
||||||
|
|
||||||
|
on_finish:
|
||||||
|
- ps: |
|
||||||
|
Get-ChildItem $env:USERPROFILE\.craft\* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- ps: |
|
- ps: |
|
||||||
crafttests --test --src-dir $env:APPVEYOR_BUILD_FOLDER nextcloud-client
|
craft $env:TARGET --src-dir $env:APPVEYOR_BUILD_FOLDER --test owncloud-client
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- TARGET: windows-msvc2019_64-cl
|
- TARGET: windows-msvc2017_32-cl
|
||||||
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
|
- TARGET: windows-msvc2017_64-cl
|
||||||
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
|
|
||||||
|
artifacts:
|
||||||
|
- path: binaries/*
|
||||||
|
|||||||
142
cmake/modules/AddAppIconMacro.cmake
Normal file
142
cmake/modules/AddAppIconMacro.cmake
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
SET(WINDRES_EXECUTABLE_BASE ${CMAKE_RC_COMPILER})
|
||||||
|
|
||||||
|
# This macro is taken from kdelibs/cmake/modules/KDE4Macros.cmake.
|
||||||
|
#
|
||||||
|
# Copyright (c) 2006-2009 Alexander Neundorf, <neundorf@kde.org>
|
||||||
|
# Copyright (c) 2006, 2007, Laurent Montel, <montel@kde.org>
|
||||||
|
# Copyright (c) 2007 Matthias Kretz <kretz@kde.org>
|
||||||
|
#
|
||||||
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
||||||
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file [in KDE repositories].
|
||||||
|
|
||||||
|
|
||||||
|
# adds application icon to target source list
|
||||||
|
# for detailed documentation see the top of FindKDE4Internal.cmake
|
||||||
|
macro (KDE4_ADD_APP_ICON appsources pattern)
|
||||||
|
set (_outfilename ${CMAKE_CURRENT_BINARY_DIR}/${appsources})
|
||||||
|
|
||||||
|
if (WIN32)
|
||||||
|
if(NOT WINCE)
|
||||||
|
find_program(PNG2ICO_EXECUTABLE NAMES png2ico)
|
||||||
|
else(NOT WINCE)
|
||||||
|
find_program(PNG2ICO_EXECUTABLE NAMES png2ico PATHS ${HOST_BINDIR} NO_DEFAULT_PATH )
|
||||||
|
endif(NOT WINCE)
|
||||||
|
find_program(WINDRES_EXECUTABLE NAMES ${WINDRES_EXECUTABLE_BASE})
|
||||||
|
if(MSVC)
|
||||||
|
set(WINDRES_EXECUTABLE TRUE)
|
||||||
|
endif(MSVC)
|
||||||
|
if (PNG2ICO_EXECUTABLE AND WINDRES_EXECUTABLE)
|
||||||
|
string(REPLACE "*" "([0123456789]*)" pattern_rx "${pattern}")
|
||||||
|
file(GLOB files "${pattern}")
|
||||||
|
foreach (it ${files})
|
||||||
|
string(REGEX REPLACE "${pattern_rx}" "\\1" fn "${it}")
|
||||||
|
if (fn MATCHES ".*16.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*16.*")
|
||||||
|
if (fn MATCHES ".*32.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*32.*")
|
||||||
|
if (fn MATCHES ".*48.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*48.*")
|
||||||
|
if (fn MATCHES ".*64.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*64.*")
|
||||||
|
if (fn MATCHES ".*128.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*128.*")
|
||||||
|
if (fn MATCHES ".*256.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*256.*")
|
||||||
|
if (fn MATCHES ".*512.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*512.*")
|
||||||
|
if (fn MATCHES ".*1024.*" )
|
||||||
|
list (APPEND _icons ${it})
|
||||||
|
endif (fn MATCHES ".*1024.*")
|
||||||
|
endforeach (it)
|
||||||
|
if (_icons)
|
||||||
|
add_custom_command(OUTPUT ${_outfilename}.ico ${_outfilename}.rc
|
||||||
|
COMMAND ${PNG2ICO_EXECUTABLE} ARGS --rcfile ${_outfilename}.rc ${_outfilename}.ico ${_icons}
|
||||||
|
DEPENDS ${PNG2ICO_EXECUTABLE} ${_icons}
|
||||||
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
)
|
||||||
|
if (MINGW)
|
||||||
|
add_custom_command(OUTPUT ${_outfilename}_res.o
|
||||||
|
COMMAND ${WINDRES_EXECUTABLE} ARGS -i ${_outfilename}.rc -o ${_outfilename}_res.o --include-dir=${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
DEPENDS ${WINDRES_EXECUTABLE} ${_outfilename}.rc
|
||||||
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
)
|
||||||
|
list(APPEND ${appsources} ${_outfilename}_res.o)
|
||||||
|
else(MINGW)
|
||||||
|
list(APPEND ${appsources} ${_outfilename}.rc)
|
||||||
|
endif(MINGW)
|
||||||
|
else(_icons)
|
||||||
|
message(STATUS "Unable to find a related icon that matches pattern ${pattern} for variable ${appsources} - application will not have an application icon!")
|
||||||
|
endif(_icons)
|
||||||
|
else(PNG2ICO_EXECUTABLE AND WINDRES_EXECUTABLE)
|
||||||
|
message(WARNING "Unable to find the png2ico or windres utilities - application will not have an application icon!")
|
||||||
|
endif(PNG2ICO_EXECUTABLE AND WINDRES_EXECUTABLE)
|
||||||
|
endif(WIN32)
|
||||||
|
if (APPLE)
|
||||||
|
file(GLOB_RECURSE files "${pattern}")
|
||||||
|
file(MAKE_DIRECTORY ${appsources}.iconset)
|
||||||
|
|
||||||
|
# List from:
|
||||||
|
# https://developer.apple.com/library/content/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html#//apple_ref/doc/uid/TP40012302-CH7-SW4
|
||||||
|
foreach (it ${files})
|
||||||
|
if (it MATCHES ".*icon-16.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_16x16.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*icon-32.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_16x16@2x.png COPYONLY)
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_32x32.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*icon-64.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_32x32@2x.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*icon-128.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_128x128.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*icon-256.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_128x128@2x.png COPYONLY)
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_256x256.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*icon-512.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_256x256@2x.png COPYONLY)
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_512x512.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*icon-1024.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/icon_512x512@2x.png COPYONLY)
|
||||||
|
endif()
|
||||||
|
endforeach (it)
|
||||||
|
|
||||||
|
# Copy the sidebar icons in the main app bundle for the FinderSync extension to pick.
|
||||||
|
# https://developer.apple.com/library/content/documentation/General/Conceptual/ExtensibilityPG/Finder.html#//apple_ref/doc/uid/TP40014214-CH15-SW15
|
||||||
|
foreach (it ${files})
|
||||||
|
if (it MATCHES ".*sidebar-16.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/sidebar_16x16.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*sidebar-32.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/sidebar_18x18.png COPYONLY)
|
||||||
|
configure_file(${it} ${appsources}.iconset/sidebar_16x16@2x.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*sidebar-64.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/sidebar_18x18@2x.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*sidebar-128.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/sidebar_32x32.png COPYONLY)
|
||||||
|
elseif (it MATCHES ".*sidebar-256.*")
|
||||||
|
configure_file(${it} ${appsources}.iconset/sidebar_32x32@2x.png COPYONLY)
|
||||||
|
endif()
|
||||||
|
endforeach (it)
|
||||||
|
|
||||||
|
add_custom_command(OUTPUT ${_outfilename}.icns
|
||||||
|
COMMAND echo === Building bundle icns with iconset:
|
||||||
|
COMMAND ls -1 ${appsources}.iconset
|
||||||
|
COMMAND iconutil -c icns -o ${_outfilename}.icns ${appsources}.iconset
|
||||||
|
DEPENDS ${files}
|
||||||
|
)
|
||||||
|
|
||||||
|
# This will register the icon into the bundle
|
||||||
|
set(MACOSX_BUNDLE_ICON_FILE ${appsources}.icns)
|
||||||
|
|
||||||
|
# Append the icns file to the sources list so it will be a dependency to the
|
||||||
|
# main target
|
||||||
|
list(APPEND ${appsources} ${_outfilename}.icns)
|
||||||
|
|
||||||
|
# Install the icon into the Resources dir in the bundle
|
||||||
|
set_source_files_properties(${_outfilename}.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
||||||
|
endif(APPLE)
|
||||||
|
endmacro (KDE4_ADD_APP_ICON)
|
||||||
@@ -25,5 +25,10 @@ set(GENERIC_LIB_SOVERSION "0")
|
|||||||
# set -Werror
|
# set -Werror
|
||||||
set(CMAKE_ENABLE_WERROR ON)
|
set(CMAKE_ENABLE_WERROR ON)
|
||||||
|
|
||||||
# enables folders for targets to be visible in an IDE
|
# Set the default build type to release with debug info
|
||||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
if (NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE RelWithDebInfo
|
||||||
|
CACHE STRING
|
||||||
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
||||||
|
)
|
||||||
|
endif (NOT CMAKE_BUILD_TYPE)
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
# target does not have the ``WIN32_EXECUTABLE`` property set.
|
# target does not have the ``WIN32_EXECUTABLE`` property set.
|
||||||
# * One of the tools png2ico (See :find-module:`FindPng2Ico`) or
|
# * One of the tools png2ico (See :find-module:`FindPng2Ico`) or
|
||||||
# icotool (see :find-module:`FindIcoTool`) is required.
|
# icotool (see :find-module:`FindIcoTool`) is required.
|
||||||
# * Supported sizes: 16, 20, 24, 32, 40, 48, 64, 128, 256, 512 and 1024.
|
# * Supported sizes: 16, 24, 32, 48, 64, 128, 256, 512 and 1024.
|
||||||
#
|
#
|
||||||
# Mac OS X notes
|
# Mac OS X notes
|
||||||
# * The executable target must have the ``MACOSX_BUNDLE`` property set.
|
# * The executable target must have the ``MACOSX_BUNDLE`` property set.
|
||||||
@@ -102,12 +102,9 @@ include(CMakeParseArguments)
|
|||||||
|
|
||||||
function(ecm_add_app_icon appsources)
|
function(ecm_add_app_icon appsources)
|
||||||
set(options)
|
set(options)
|
||||||
set(oneValueArgs OUTFILE_BASENAME ICON_INDEX)
|
set(oneValueArgs OUTFILE_BASENAME)
|
||||||
set(multiValueArgs ICONS SIDEBAR_ICONS RC_DEPENDENCIES)
|
set(multiValueArgs ICONS SIDEBAR_ICONS)
|
||||||
cmake_parse_arguments(ARG "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
cmake_parse_arguments(ARG "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||||
if (NOT ARG_ICON_INDEX)
|
|
||||||
set(ARG_ICON_INDEX 1)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT ARG_ICONS)
|
if(NOT ARG_ICONS)
|
||||||
message(FATAL_ERROR "No ICONS argument given to ecm_add_app_icon")
|
message(FATAL_ERROR "No ICONS argument given to ecm_add_app_icon")
|
||||||
@@ -141,11 +138,8 @@ function(ecm_add_app_icon appsources)
|
|||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WIN32)
|
|
||||||
_ecm_add_app_icon_categorize_icons("${ARG_ICONS}" "icons" "16;20;24;32;40;48;64;128;256;512;1024")
|
|
||||||
else()
|
|
||||||
_ecm_add_app_icon_categorize_icons("${ARG_ICONS}" "icons" "16;24;32;48;64;128;256;512;1024")
|
_ecm_add_app_icon_categorize_icons("${ARG_ICONS}" "icons" "16;24;32;48;64;128;256;512;1024")
|
||||||
endif()
|
|
||||||
if(ARG_SIDEBAR_ICONS)
|
if(ARG_SIDEBAR_ICONS)
|
||||||
_ecm_add_app_icon_categorize_icons("${ARG_SIDEBAR_ICONS}" "sidebar_icons" "16;32;64;128;256")
|
_ecm_add_app_icon_categorize_icons("${ARG_SIDEBAR_ICONS}" "sidebar_icons" "16;32;64;128;256")
|
||||||
endif()
|
endif()
|
||||||
@@ -174,10 +168,8 @@ function(ecm_add_app_icon appsources)
|
|||||||
|
|
||||||
|
|
||||||
set(windows_icons ${icons_at_16px}
|
set(windows_icons ${icons_at_16px}
|
||||||
${icons_at_20px}
|
|
||||||
${icons_at_24px}
|
${icons_at_24px}
|
||||||
${icons_at_32px}
|
${icons_at_32px}
|
||||||
${icons_at_40px}
|
|
||||||
${icons_at_48px}
|
${icons_at_48px}
|
||||||
${icons_at_64px}
|
${icons_at_64px}
|
||||||
${icons_at_128px}
|
${icons_at_128px}
|
||||||
@@ -212,12 +204,12 @@ function(ecm_add_app_icon appsources)
|
|||||||
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
||||||
)
|
)
|
||||||
# this bit's a little hacky to make the dependency stuff work
|
# this bit's a little hacky to make the dependency stuff work
|
||||||
file(WRITE "${_outfilename}.rc.in" "IDI_ICON${ARG_ICON_INDEX} ICON DISCARDABLE \"${_outfilename}.ico\"\n")
|
file(WRITE "${_outfilename}.rc.in" "IDI_ICON1 ICON DISCARDABLE \"${_outfilename}.ico\"\n")
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT "${_outfilename}.rc"
|
OUTPUT "${_outfilename}.rc"
|
||||||
COMMAND ${CMAKE_COMMAND}
|
COMMAND ${CMAKE_COMMAND}
|
||||||
ARGS -E copy "${_outfilename}.rc.in" "${_outfilename}.rc"
|
ARGS -E copy "${_outfilename}.rc.in" "${_outfilename}.rc"
|
||||||
DEPENDS ${ARG_RC_DEPENDENCIES} "${_outfilename}.ico"
|
DEPENDS "${_outfilename}.ico"
|
||||||
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||||||
)
|
)
|
||||||
endfunction()
|
endfunction()
|
||||||
@@ -234,7 +226,7 @@ function(ecm_add_app_icon appsources)
|
|||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
foreach(size 16 20 24 32 40 48 64 128 ${maxSize})
|
foreach(size 16 24 32 48 64 128 ${maxSize})
|
||||||
if(NOT icons_at_${size}px)
|
if(NOT icons_at_${size}px)
|
||||||
continue()
|
continue()
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
# SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
|
|
||||||
#[=======================================================================[.rst:
|
|
||||||
ECMCoverageOption
|
|
||||||
--------------------
|
|
||||||
|
|
||||||
Allow users to easily enable GCov code coverage support.
|
|
||||||
|
|
||||||
Code coverage allows you to check how much of your codebase is covered by
|
|
||||||
your tests. This module makes it easy to build with support for
|
|
||||||
`GCov <https://gcc.gnu.org/onlinedocs/gcc/Gcov.html>`_.
|
|
||||||
|
|
||||||
When this module is included, a ``BUILD_COVERAGE`` option is added (default
|
|
||||||
OFF). Turning this option on enables GCC's coverage instrumentation, and
|
|
||||||
links against ``libgcov``.
|
|
||||||
|
|
||||||
Note that this will probably break the build if you are not using GCC.
|
|
||||||
|
|
||||||
Since 1.3.0.
|
|
||||||
#]=======================================================================]
|
|
||||||
|
|
||||||
option(BUILD_COVERAGE "Build the project with gcov support" OFF)
|
|
||||||
|
|
||||||
if(BUILD_COVERAGE)
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
|
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lgcov")
|
|
||||||
endif()
|
|
||||||
@@ -1,169 +0,0 @@
|
|||||||
# SPDX-FileCopyrightText: 2014 Mathieu Tarral <mathieu.tarral@gmail.com>
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
|
|
||||||
#[=======================================================================[.rst:
|
|
||||||
ECMEnableSanitizers
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Enable compiler sanitizer flags.
|
|
||||||
|
|
||||||
The following sanitizers are supported:
|
|
||||||
|
|
||||||
- Address Sanitizer
|
|
||||||
- Memory Sanitizer
|
|
||||||
- Thread Sanitizer
|
|
||||||
- Leak Sanitizer
|
|
||||||
- Undefined Behaviour Sanitizer
|
|
||||||
|
|
||||||
All of them are implemented in Clang, depending on your version, and
|
|
||||||
there is an work in progress in GCC, where some of them are currently
|
|
||||||
implemented.
|
|
||||||
|
|
||||||
This module will check your current compiler version to see if it
|
|
||||||
supports the sanitizers that you want to enable
|
|
||||||
|
|
||||||
Usage
|
|
||||||
=====
|
|
||||||
|
|
||||||
Simply add::
|
|
||||||
|
|
||||||
include(ECMEnableSanitizers)
|
|
||||||
|
|
||||||
to your ``CMakeLists.txt``. Note that this module is included in
|
|
||||||
KDECompilerSettings, so projects using that module do not need to also
|
|
||||||
include this one.
|
|
||||||
|
|
||||||
The sanitizers are not enabled by default. Instead, you must set
|
|
||||||
``ECM_ENABLE_SANITIZERS`` (either in your ``CMakeLists.txt`` or on the
|
|
||||||
command line) to a semicolon-separated list of sanitizers you wish to enable.
|
|
||||||
The options are:
|
|
||||||
|
|
||||||
- address
|
|
||||||
- memory
|
|
||||||
- thread
|
|
||||||
- leak
|
|
||||||
- undefined
|
|
||||||
- fuzzer
|
|
||||||
|
|
||||||
The sanitizers "address", "memory" and "thread" are mutually exclusive. You
|
|
||||||
cannot enable two of them in the same build.
|
|
||||||
|
|
||||||
"leak" requires the "address" sanitizer.
|
|
||||||
|
|
||||||
.. note::
|
|
||||||
|
|
||||||
To reduce the overhead induced by the instrumentation of the sanitizers, it
|
|
||||||
is advised to enable compiler optimizations (``-O1`` or higher).
|
|
||||||
|
|
||||||
Example
|
|
||||||
=======
|
|
||||||
|
|
||||||
This is an example of usage::
|
|
||||||
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake -DECM_ENABLE_SANITIZERS='address;leak;undefined' ..
|
|
||||||
|
|
||||||
.. note::
|
|
||||||
|
|
||||||
Most of the sanitizers will require Clang. To enable it, use::
|
|
||||||
|
|
||||||
-DCMAKE_CXX_COMPILER=clang++
|
|
||||||
|
|
||||||
Since 1.3.0.
|
|
||||||
#]=======================================================================]
|
|
||||||
|
|
||||||
# MACRO check_compiler_version
|
|
||||||
#-----------------------------
|
|
||||||
macro (check_compiler_version gcc_required_version clang_required_version msvc_required_version)
|
|
||||||
if (
|
|
||||||
(
|
|
||||||
CMAKE_CXX_COMPILER_ID MATCHES "GNU"
|
|
||||||
AND
|
|
||||||
CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${gcc_required_version}
|
|
||||||
)
|
|
||||||
OR
|
|
||||||
(
|
|
||||||
CMAKE_CXX_COMPILER_ID MATCHES "Clang"
|
|
||||||
AND
|
|
||||||
CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${clang_required_version}
|
|
||||||
)
|
|
||||||
OR
|
|
||||||
(
|
|
||||||
CMAKE_CXX_COMPILER_ID MATCHES "MSVC"
|
|
||||||
AND
|
|
||||||
CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${msvc_required_version}
|
|
||||||
)
|
|
||||||
)
|
|
||||||
# error !
|
|
||||||
message(FATAL_ERROR "You ask to enable the sanitizer ${CUR_SANITIZER},
|
|
||||||
but your compiler ${CMAKE_CXX_COMPILER_ID} version ${CMAKE_CXX_COMPILER_VERSION}
|
|
||||||
does not support it !
|
|
||||||
You should use at least GCC ${gcc_required_version}, Clang ${clang_required_version}
|
|
||||||
or MSVC ${msvc_required_version}
|
|
||||||
(99.99 means not implemented yet)")
|
|
||||||
endif ()
|
|
||||||
endmacro ()
|
|
||||||
|
|
||||||
# MACRO check_compiler_support
|
|
||||||
#------------------------------
|
|
||||||
macro (enable_sanitizer_flags sanitize_option)
|
|
||||||
if (${sanitize_option} MATCHES "address")
|
|
||||||
check_compiler_version("4.8" "3.1" "19.28")
|
|
||||||
if (CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=address")
|
|
||||||
else()
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=address -fno-omit-frame-pointer -fno-optimize-sibling-calls")
|
|
||||||
set(XSAN_LINKER_FLAGS "-fsanitize=address")
|
|
||||||
endif()
|
|
||||||
elseif (${sanitize_option} MATCHES "thread")
|
|
||||||
check_compiler_version("4.8" "3.1" "99.99")
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=thread")
|
|
||||||
set(XSAN_LINKER_FLAGS "tsan")
|
|
||||||
elseif (${sanitize_option} MATCHES "memory")
|
|
||||||
check_compiler_version("99.99" "3.1" "99.99")
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=memory")
|
|
||||||
elseif (${sanitize_option} MATCHES "leak")
|
|
||||||
check_compiler_version("4.9" "3.4" "99.99")
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=leak")
|
|
||||||
set(XSAN_LINKER_FLAGS "lsan")
|
|
||||||
elseif (${sanitize_option} MATCHES "undefined")
|
|
||||||
check_compiler_version("4.9" "3.1" "99.99")
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=undefined -fno-omit-frame-pointer -fno-optimize-sibling-calls")
|
|
||||||
elseif (${sanitize_option} MATCHES "fuzzer")
|
|
||||||
check_compiler_version("99.99" "6.0" "99.99")
|
|
||||||
set(XSAN_COMPILE_FLAGS "-fsanitize=fuzzer")
|
|
||||||
else ()
|
|
||||||
message(FATAL_ERROR "Compiler sanitizer option \"${sanitize_option}\" not supported.")
|
|
||||||
endif ()
|
|
||||||
endmacro ()
|
|
||||||
|
|
||||||
if (ECM_ENABLE_SANITIZERS)
|
|
||||||
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
|
||||||
# for each element of the ECM_ENABLE_SANITIZERS list
|
|
||||||
foreach ( CUR_SANITIZER ${ECM_ENABLE_SANITIZERS} )
|
|
||||||
# lowercase filter
|
|
||||||
string(TOLOWER ${CUR_SANITIZER} CUR_SANITIZER)
|
|
||||||
# check option and enable appropriate flags
|
|
||||||
enable_sanitizer_flags ( ${CUR_SANITIZER} )
|
|
||||||
# TODO: GCC will not link pthread library if enabled ASan
|
|
||||||
if(CMAKE_C_COMPILER_ID MATCHES "Clang")
|
|
||||||
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${XSAN_COMPILE_FLAGS}" )
|
|
||||||
link_libraries(${XSAN_LINKER_FLAGS})
|
|
||||||
endif()
|
|
||||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${XSAN_COMPILE_FLAGS}" )
|
|
||||||
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
|
|
||||||
link_libraries(${XSAN_LINKER_FLAGS})
|
|
||||||
endif()
|
|
||||||
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
||||||
string(REPLACE "-Wl,--no-undefined" "" CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}")
|
|
||||||
string(REPLACE "-Wl,--no-undefined" "" CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS}")
|
|
||||||
link_libraries(${XSAN_LINKER_FLAGS})
|
|
||||||
endif ()
|
|
||||||
endforeach()
|
|
||||||
else()
|
|
||||||
message(STATUS "Tried to enable sanitizers (-DECM_ENABLE_SANITIZERS=${ECM_ENABLE_SANITIZERS}), \
|
|
||||||
but compiler (${CMAKE_CXX_COMPILER_ID}) does not have sanitizer support")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
35
cmake/modules/FindGLib2.cmake
Normal file
35
cmake/modules/FindGLib2.cmake
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# FindGLib2.cmake
|
||||||
|
|
||||||
|
# GLib2_FOUND - System has GLib2
|
||||||
|
# GLib2_INCLUDES - The GLib2 include directories
|
||||||
|
# GLib2_LIBRARIES - The libraries needed to use GLib2
|
||||||
|
# GLib2_DEFINITIONS - Compiler switches required for using GLib2
|
||||||
|
|
||||||
|
find_package(PkgConfig)
|
||||||
|
pkg_check_modules(GLib2 QUIET glib-2.0)
|
||||||
|
set(GLib2_DEFINITIONS ${GLib2_CFLAGS_OTHER})
|
||||||
|
|
||||||
|
find_path(GLib2_INCLUDE_DIR
|
||||||
|
NAMES glib.h glib-object.h
|
||||||
|
HINTS ${GLib2_INCLUDEDIR} ${GLib2_INCLUDE_DIRS}
|
||||||
|
PATH_SUFFIXES glib-2.0)
|
||||||
|
find_path(GLIBCONFIG_INCLUDE_DIR
|
||||||
|
NAMES glibconfig.h
|
||||||
|
HINTS ${LIBDIR} ${LIBRARY_DIRS} ${_GLib2_LIBRARY_DIR}
|
||||||
|
${GLib2_INCLUDEDIR} ${GLib2_INCLUDE_DIRS}
|
||||||
|
${CMAKE_EXTRA_INCLUDES} ${CMAKE_EXTRA_LIBRARIES}
|
||||||
|
PATH_SUFFIXES glib-2.0 glib-2.0/include)
|
||||||
|
list(APPEND GLib2_INCLUDE_DIR ${GLIBCONFIG_INCLUDE_DIR})
|
||||||
|
|
||||||
|
find_library(GLib2_LIBRARY
|
||||||
|
NAMES glib-2.0 libglib-2.0
|
||||||
|
HINTS ${GLib2_LIBDIR} ${GLib2_LIBRARY_DIRS})
|
||||||
|
|
||||||
|
set(GLib2_LIBRARIES ${GLib2_LIBRARY})
|
||||||
|
set(GLib2_INCLUDE_DIRS ${GLib2_INCLUDE_DIR})
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(GLib2 DEFAULT_MSG
|
||||||
|
GLib2_LIBRARY GLib2_INCLUDE_DIR)
|
||||||
|
|
||||||
|
mark_as_advanced(GLib2_INCLUDE_DIR GLib2_LIBRARY)
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user