From 6e7437a0d08c1e0621cd8bc430712fdc77d4e996 Mon Sep 17 00:00:00 2001 From: Travis LaDuke Date: Fri, 27 Apr 2018 16:48:34 -0700 Subject: Add some more icon sizes 20x20, 60x60, 1024x1024 pngs getting ready for an iOS release --- artwork/AppIcon_1024x1024.png | Bin 0 -> 56076 bytes artwork/AppIcon_20x20.png | Bin 0 -> 621 bytes artwork/AppIcon_60x60.png | Bin 0 -> 1597 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 artwork/AppIcon_1024x1024.png create mode 100644 artwork/AppIcon_20x20.png create mode 100644 artwork/AppIcon_60x60.png diff --git a/artwork/AppIcon_1024x1024.png b/artwork/AppIcon_1024x1024.png new file mode 100644 index 00000000..dc0ba2fc Binary files /dev/null and b/artwork/AppIcon_1024x1024.png differ diff --git a/artwork/AppIcon_20x20.png b/artwork/AppIcon_20x20.png new file mode 100644 index 00000000..bb10b478 Binary files /dev/null and b/artwork/AppIcon_20x20.png differ diff --git a/artwork/AppIcon_60x60.png b/artwork/AppIcon_60x60.png new file mode 100644 index 00000000..bb46ae75 Binary files /dev/null and b/artwork/AppIcon_60x60.png differ -- cgit v1.2.3 From 0c60963a94f7bb3b9458aaa65d78a83e0e7004d2 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Mon, 30 Apr 2018 12:08:09 -0700 Subject: app icon with no alpha channel --- artwork/AppIcon_1024x1024.png | Bin 56076 -> 47728 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/artwork/AppIcon_1024x1024.png b/artwork/AppIcon_1024x1024.png index dc0ba2fc..c423c4f7 100644 Binary files a/artwork/AppIcon_1024x1024.png and b/artwork/AppIcon_1024x1024.png differ -- cgit v1.2.3 From d01b1ffde51c2becef6ed0b55dfde1659aaa474f Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 4 May 2018 12:09:04 -0700 Subject: Added -fPIC for Synology builds --- make-linux.mk | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/make-linux.mk b/make-linux.mk index 2e6a8632..a571f344 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -42,14 +42,6 @@ endif # Trying to use dynamically linked libhttp-parser causes tons of compatibility problems. ONE_OBJS+=ext/http-parser/http_parser.o -ifeq ($(ZT_SYNOLOGY), 1) - override DEFS+=-D__SYNOLOGY__ -endif - -ifeq ($(ZT_QNAP), 1) - override DEFS+=-D__QNAP__ -endif - ifeq ($(ZT_TRACE),1) override DEFS+=-DZT_TRACE endif @@ -80,6 +72,15 @@ else STRIP+=--strip-all endif +ifeq ($(ZT_QNAP), 1) + override DEFS+=-D__QNAP__ +endif + +ifeq ($(ZT_SYNOLOGY), 1) + CXXFLAGS+=-fPIC + override DEFS+=-D__SYNOLOGY__ +endif + ifeq ($(ZT_TRACE),1) override DEFS+=-DZT_TRACE endif -- cgit v1.2.3 From c8a907fd71393ac8cdf1664952544c99973e4c79 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 4 May 2018 13:03:52 -0700 Subject: Added override directive to CXXFLAGS for Synology builds in make-linux.mk --- make-linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-linux.mk b/make-linux.mk index a571f344..1280e895 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -77,7 +77,7 @@ ifeq ($(ZT_QNAP), 1) endif ifeq ($(ZT_SYNOLOGY), 1) - CXXFLAGS+=-fPIC + override CXXFLAGS+=-fPIC override DEFS+=-D__SYNOLOGY__ endif -- cgit v1.2.3 From 22301a459970dc557c4959104afe418d4b2d6bb1 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 4 May 2018 14:31:34 -0700 Subject: Added override directive to CFLAGS for Synology builds in make-linux.mk --- make-linux.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/make-linux.mk b/make-linux.mk index 1280e895..4a2a3e2d 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -77,6 +77,7 @@ ifeq ($(ZT_QNAP), 1) endif ifeq ($(ZT_SYNOLOGY), 1) + override CFLAGS+=-fPIC override CXXFLAGS+=-fPIC override DEFS+=-D__SYNOLOGY__ endif -- cgit v1.2.3