Skip to content
This repository was archived by the owner on Oct 6, 2020. It is now read-only.

Commit 0a7b5de

Browse files
committed
update installers for v2.1
1 parent d423fe1 commit 0a7b5de

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Version 2.1
44
===========
55

66
[New Features]
7-
- Dropbox API migration to v2 (v1 will stop working by 2017-06-28)
87
- Ability to hide the collection sidebar from the view menu
98
- Polish traslation added (thanks to MCbx)
109

1110
[Improvements]
11+
- Dropbox API migration to v2 (v1 will stop working by 2017-06-28)
1212
- Updated Qt to 5.9 (User interface library) for better compatibility with Windows 10 and macOS Sierra
1313

1414
[Bug Fixes]

doc/deployment/README

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,12 @@ Windows:
2525
1. Prepare dropbox client (windows exe) as described in "pyinstaller dropbox howto"
2626
2. Open and compile symphytum.iss after review
2727

28-
OS X:
29-
1. Use 'qmake -spec macx-g++ Symphytum.pro' to generate Makefile
28+
macOS:
29+
1. Use 'qmake -spec macx-clang Symphytum.pro' to generate Makefile
3030
2. Move py files to app boundle in the sync subfolder where the binary is
3131
3. Use macdeployqt
32-
4. Add to Info.plist:
33-
<key>NSPrincipalClass</key>
34-
<string>NSApplication</string>
35-
for retina support thing (needed as Qt 4.8.1, after that already present)
36-
5. Create a DMG follow this: http://mac101.net/content/how-to/how-to-create-dmg-art-for-fancy-application-installations/
32+
4. Create a DMG follow this: http://mac101.net/content/how-to/how-to-create-dmg-art-for-fancy-application-installations/
33+
(alt link: https://web.archive.org/web/20150423212042/http://mac101.net/content/how-to/how-to-create-dmg-art-for-fancy-application-installations/)
3734

3835
Ubuntu:
3936
1. Copy deb dir from installers dir

stuff/installers/PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Maintainer: Giorgio Wicklein <giowckln@gmail.com>
22
pkgname=symphytum
3-
pkgver=2.0
3+
pkgver=2.1
44
pkgrel=1
55
pkgdesc="Personal database software"
66
arch=('i686' 'x86_64')
77
url="http://giowck.github.io/symphytum/"
88
license=('BSD')
9-
depends=('qt5-base' 'qt5-svg' 'sqlite' 'python2' 'python2-setuptools')
9+
depends=('qt5-base' 'qt5-svg' 'sqlite' 'python3' 'python-setuptools' 'python-six' 'python-certifi' 'python-chardet' 'python-idna' 'python-requests' 'python-urllib3')
1010
source=("https://github.com/giowck/symphytum/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz")
1111
md5sums=('400484e8b06d77491012989f69105c11')
1212

stuff/installers/deb/DEBIAN/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: symphytum
2-
Version: 2.0
2+
Version: 2.1
33
Section: utils
44
Priority: optional
55
Architecture: amd64
66
Essential: no
7-
Depends: libc6, libqt5core5a, libqt5gui5, libqt5network5, libqt5sql5-sqlite, libqt5svg5, libqt5printsupport5, python2.7, python-setuptools
7+
Depends: libc6, libqt5core5a, libqt5gui5, libqt5network5, libqt5sql5-sqlite, libqt5svg5, libqt5printsupport5, python3, python3-setuptools, python3-six, python3-certifi, python3-chardet, python3-idna, python3-requests, python3-urllib3
88
Recommends:
99
Suggests:
1010
Installed-Size: 5000

stuff/installers/symphytum.iss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Symphytum"
5-
#define MyAppVersion "2.0"
5+
#define MyAppVersion "2.1"
66
#define MyAppPublisher "Symphytum Developers"
7-
#define MyAppURL "http://giowck.github.io/symphytum/"
7+
#define MyAppURL "http://user.github.io/symphytum/"
88
#define MyAppExeName "symphytum.exe"
99

1010
[Setup]
@@ -22,7 +22,7 @@ AppUpdatesURL={#MyAppURL}
2222
DefaultDirName={pf}\{#MyAppName}
2323
DefaultGroupName={#MyAppName}
2424
OutputDir=C:\Users\giowck\Desktop
25-
OutputBaseFilename=symphytum-2.0-setup
25+
OutputBaseFilename=symphytum-2.1-setup
2626
Compression=lzma
2727
SolidCompression=yes
2828

@@ -47,6 +47,8 @@ Source: "C:\Users\giowck\Desktop\Qt5Widgets.dll"; DestDir: "{app}"; Flags: ignor
4747
Source: "C:\Users\giowck\Desktop\Qt5Network.dll"; DestDir: "{app}"; Flags: ignoreversion
4848
Source: "C:\Users\giowck\Desktop\Qt5Sql.dll"; DestDir: "{app}"; Flags: ignoreversion
4949
Source: "C:\Users\giowck\Desktop\Qt5PrintSupport.dll"; DestDir: "{app}"; Flags: ignoreversion
50+
Source: "C:\Users\giowck\Desktop\libeay32.dll"; DestDir: "{app}"; Flags: ignoreversion
51+
Source: "C:\Users\giowck\Desktop\ssleay32.dll"; DestDir: "{app}"; Flags: ignoreversion
5052
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
5153

5254
[Icons]

0 commit comments

Comments
 (0)