Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/socialsharing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-04-26 16:20:48 +0300
committerGitHub <noreply@github.com>2017-04-26 16:20:48 +0300
commitbcbd736cc349efeeb8bc1048722179b35f5b5aa7 (patch)
tree9acdee83a49cc4c1afe4a5da9ae514d5eb9e98b7
parentbe2b0144bb7dccbdafb54ad36abc79e8758e581f (diff)
parentff8b281788fd76ed2766d305e5e934c3c77125b5 (diff)
Merge pull request #10 from nextcloud/release_ready
Release ready
-rw-r--r--socialsharing_diaspora/Makefile36
-rw-r--r--socialsharing_diaspora/appinfo/info.xml8
-rw-r--r--socialsharing_diaspora/screenshots/preview.pngbin0 -> 13824 bytes
-rw-r--r--socialsharing_email/Makefile36
-rw-r--r--socialsharing_email/appinfo/info.xml8
-rw-r--r--socialsharing_email/screenshots/preview.pngbin0 -> 13434 bytes
-rw-r--r--socialsharing_facebook/Makefile36
-rw-r--r--socialsharing_facebook/appinfo/info.xml8
-rw-r--r--socialsharing_facebook/screenshots/preview.pngbin0 -> 13560 bytes
-rw-r--r--socialsharing_googleplus/Makefile36
-rw-r--r--socialsharing_googleplus/appinfo/info.xml8
-rw-r--r--socialsharing_googleplus/screenshots/preview.pngbin0 -> 13770 bytes
-rw-r--r--socialsharing_twitter/Makefile36
-rw-r--r--socialsharing_twitter/appinfo/info.xml8
-rw-r--r--socialsharing_twitter/screenshots/preview.pngbin0 -> 13529 bytes
15 files changed, 200 insertions, 20 deletions
diff --git a/socialsharing_diaspora/Makefile b/socialsharing_diaspora/Makefile
new file mode 100644
index 0000000..2f5cdf5
--- /dev/null
+++ b/socialsharing_diaspora/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_diaspora
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_diaspora/appinfo/info.xml b/socialsharing_diaspora/appinfo/info.xml
index 6f8e437..4f19275 100644
--- a/socialsharing_diaspora/appinfo/info.xml
+++ b/socialsharing_diaspora/appinfo/info.xml
@@ -4,10 +4,10 @@
<name>Social sharing diaspora</name>
<licence>AGPL</licence>
<author>Roeland Jago Douma</author>
- <description>
- This allows the user to directly share link shares to diaspora
- </description>
- <version>0.0.1</version>
+ <description>This allows the user to directly share link shares to diaspora</description>
+ <version>1.0.0</version>
+ <category>social</category>
+ <screenshot>https://raw.githubusercontent.com/nextcloud/socialsharing/master/socialsharing_diaspora/screenshots/preview.png</screenshot>
<namespace>SocialSharingDiaspora</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_diaspora/screenshots/preview.png b/socialsharing_diaspora/screenshots/preview.png
new file mode 100644
index 0000000..03456ae
--- /dev/null
+++ b/socialsharing_diaspora/screenshots/preview.png
Binary files differ
diff --git a/socialsharing_email/Makefile b/socialsharing_email/Makefile
new file mode 100644
index 0000000..70ab068
--- /dev/null
+++ b/socialsharing_email/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_email
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_email/appinfo/info.xml b/socialsharing_email/appinfo/info.xml
index fe144e5..b9fc012 100644
--- a/socialsharing_email/appinfo/info.xml
+++ b/socialsharing_email/appinfo/info.xml
@@ -4,10 +4,10 @@
<name>Social sharing email</name>
<licence>AGPL</licence>
<author>Roeland Jago Douma</author>
- <description>
- This allows the user to directly share link shares to email.
- </description>
- <version>0.0.1</version>
+ <description>This allows the user to directly share link shares to email.</description>
+ <version>1.0.0</version>
+ <category>social</category>
+ <screenshot>https://raw.githubusercontent.com/nextcloud/socialsharing/master/socialsharing_email/screenshots/preview.png</screenshot>
<namespace>SocialSharingEmail</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_email/screenshots/preview.png b/socialsharing_email/screenshots/preview.png
new file mode 100644
index 0000000..9871c95
--- /dev/null
+++ b/socialsharing_email/screenshots/preview.png
Binary files differ
diff --git a/socialsharing_facebook/Makefile b/socialsharing_facebook/Makefile
new file mode 100644
index 0000000..60ccd7f
--- /dev/null
+++ b/socialsharing_facebook/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_facebook
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_facebook/appinfo/info.xml b/socialsharing_facebook/appinfo/info.xml
index 0c3c34e..88cff58 100644
--- a/socialsharing_facebook/appinfo/info.xml
+++ b/socialsharing_facebook/appinfo/info.xml
@@ -4,10 +4,10 @@
<name>Social sharing facebook</name>
<licence>AGPL</licence>
<author>Roeland Jago Douma</author>
- <description>
- This allows the user to directly share link shares to facebook.
- </description>
- <version>0.0.1</version>
+ <description>This allows the user to directly share link shares to facebook.</description>
+ <version>1.0.0</version>
+ <category>social</category>
+ <screenshot>https://raw.githubusercontent.com/nextcloud/socialsharing/master/socialsharing_facebook/screenshots/preview.png</screenshot>
<namespace>SocialSharingFacebook</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_facebook/screenshots/preview.png b/socialsharing_facebook/screenshots/preview.png
new file mode 100644
index 0000000..3ad34ac
--- /dev/null
+++ b/socialsharing_facebook/screenshots/preview.png
Binary files differ
diff --git a/socialsharing_googleplus/Makefile b/socialsharing_googleplus/Makefile
new file mode 100644
index 0000000..cd03889
--- /dev/null
+++ b/socialsharing_googleplus/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_googleplus
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_googleplus/appinfo/info.xml b/socialsharing_googleplus/appinfo/info.xml
index 6b80e7e..e8849c0 100644
--- a/socialsharing_googleplus/appinfo/info.xml
+++ b/socialsharing_googleplus/appinfo/info.xml
@@ -4,10 +4,10 @@
<name>Social sharing google+</name>
<licence>AGPL</licence>
<author>Roeland Jago Douma</author>
- <description>
- This allows the user to directly share link shares to google+.
- </description>
- <version>0.0.1</version>
+ <description>This allows the user to directly share link shares to google+.</description>
+ <version>1.0.0</version>
+ <category>social</category>
+ <screenshot>https://raw.githubusercontent.com/nextcloud/socialsharing/master/socialsharing_googleplus/screenshots/preview.png</screenshot>
<namespace>SocialSharingGooglePlus</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_googleplus/screenshots/preview.png b/socialsharing_googleplus/screenshots/preview.png
new file mode 100644
index 0000000..6a2019b
--- /dev/null
+++ b/socialsharing_googleplus/screenshots/preview.png
Binary files differ
diff --git a/socialsharing_twitter/Makefile b/socialsharing_twitter/Makefile
new file mode 100644
index 0000000..5783dd9
--- /dev/null
+++ b/socialsharing_twitter/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_twitter
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_twitter/appinfo/info.xml b/socialsharing_twitter/appinfo/info.xml
index 244e23b..4dd1035 100644
--- a/socialsharing_twitter/appinfo/info.xml
+++ b/socialsharing_twitter/appinfo/info.xml
@@ -4,10 +4,10 @@
<name>Social sharing twitter</name>
<licence>AGPL</licence>
<author>Roeland Jago Douma</author>
- <description>
- This allows the user to directly share link shares to twitter
- </description>
- <version>0.0.1</version>
+ <description>This allows the user to directly share link shares to twitter</description>
+ <version>1.0.0</version>
+ <category>social</category>
+ <screenshot>https://raw.githubusercontent.com/nextcloud/socialsharing/master/socialsharing_twitter/screenshots/preview.png</screenshot>
<namespace>SocialSharingTwitter</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_twitter/screenshots/preview.png b/socialsharing_twitter/screenshots/preview.png
new file mode 100644
index 0000000..f8696c6
--- /dev/null
+++ b/socialsharing_twitter/screenshots/preview.png
Binary files differ