Skip to content

Commit 4a11a33

Browse files
committed
Update framework readme's.
1 parent f21665e commit 4a11a33

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

Frameworks/PostgresKit/README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# PostgresKit
22

3-
PostgresKit is a fork and heavily modified version of the PostgresClientKit
3+
PostgresKit is a fork and heavily modified version of the PostgresClientKit
44
code from the PostgresKit project:
55

66
[http://code.google.com/p/postgres-kit/](http://code.google.com/p/postgres-kit/)
77

88
PostgresClientKit was originally written by David Thorpe and is licensed under
99
version 2 of the Apache License.
1010

11-
This PostgresKit fork was created by Stuart Connolly on July 22, 2012 and
11+
This PostgresKit fork was created by Stuart Connolly on July 22, 2012 and
1212
is to be developed as part of the Sequel Pro project:
1313

1414
[http://sequelpro.com/](http://sequelpro.com/)
@@ -19,28 +19,28 @@ Any new code added during it's development is licensed under the MIT license
1919
and is copyrighted by the respective developer and the Sequel Pro team.
2020

2121
The framework also includes libpq, the static C library interface to PostgreSQL
22-
and libpqtypes, a libpq extension designed to ease the use of parameterised
22+
and libpqtypes, a libpq extension designed to ease the use of parameterised
2323
queries and enhanced support for handling native PostgreSQL data types.
2424

2525
libpq is licensed under The PostgreSQL License and is copyrighted by:
2626

2727
Portions Copyright (c) 1996-2012, The PostgreSQL Global Development Group
2828
Portions Copyright (c) 1994, The Regents of the University of California
29-
30-
Full license:
29+
30+
Full license:
3131

3232
[https://www.postgresql.org/about/licence/](https://www.postgresql.org/about/licence/)
33-
33+
3434
libpqtypes is licensed under the BSD license and is copyrighted by:
3535

3636
Copyright (c) 2008-2011 eSilo, LLC. All rights reserved
37-
37+
3838
Full License:
3939

4040
[http://libpqtypes.esilo.com/pkgdocs.html?file=LICENSE](http://libpqtypes.esilo.com/pkgdocs.html?file=LICENSE)
4141

42-
The entire framework is dual licensed under both version 2 of the Apache
43-
license and the MIT license. Use of it must carry both of the following
42+
The entire framework is dual licensed under both version 2 of the Apache
43+
license and the MIT license. Use of it must carry both of the following
4444
licenses to indicate this:
4545

4646
### Apache 2 License
@@ -61,8 +61,8 @@ limitations under the License.
6161

6262
### MIT License
6363

64-
Copyright (c) 2017 Sequel Pro Team. All rights reserved.
65-
64+
Copyright (c) 2018 Sequel Pro Team. All rights reserved.
65+
6666
Permission is hereby granted, free of charge, to any person
6767
obtaining a copy of this software and associated documentation
6868
files (the "Software"), to deal in the Software without
@@ -71,10 +71,10 @@ copy, modify, merge, publish, distribute, sublicense, and/or sell
7171
copies of the Software, and to permit persons to whom the
7272
Software is furnished to do so, subject to the following
7373
conditions:
74-
74+
7575
The above copyright notice and this permission notice shall be
7676
included in all copies or substantial portions of the Software.
77-
77+
7878
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
7979
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
8080
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND

Frameworks/SPMySQLFramework/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The SPMySQL Framework is intended to provide a stable MySQL connection framework, with the ability to run text-based queries and rapidly retrieve result sets with conversion from MySQL data types to Cocoa objects.
44

5-
SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion ([http://mysql-cocoa.sourceforge.net/](http://mysql-cocoa.sourceforge.net/)), and in particular the heavily modified Sequel Pro version ([http://www.sequelpro.com/](http://www.sequelpro.com/)). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger and Rowan Beentje:
5+
SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion ([http://mysql-cocoa.sourceforge.net/](http://mysql-cocoa.sourceforge.net/)), and in particular the heavily modified Sequel Pro version ([https://sequelpro.com/](https://sequelpro.com/)). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger and Rowan Beentje:
66

77
* Connection locking (Jakob et al.)
88
* Ping & keepalive (Rowan et al.)
@@ -21,7 +21,7 @@ SPMySQL.framework has an interface loosely based around that provided by MCPKit
2121

2222
## Integration
2323

24-
SPMySQL.framework can be added to your project as a standard Cocoa framework, or the entire project
24+
SPMySQL.framework can be added to your project as a standard Cocoa framework, or the entire project
2525
can be added as a subproject in Xcode.
2626

2727
To add as a subproject in Xcode:
@@ -32,12 +32,12 @@ To add as a subproject in Xcode:
3232
4. If you don't have a Copy Frameworks phase, add one; drag the SPMySQL.framework child target to this phase.
3333
5. In your build settings, add a User Header Search Path; make it a recursive path to the SPMySQL project folder location (for example `${PROJECT_DIR}/Frameworks/SPMySQLFramework`). This should allow you to `#include "SPMySQL.h"` and have everything function.
3434

35-
As a last resort jump onto IRC and join #sequel-pro on irc.freenode.net and any of the
35+
As a last resort jump onto IRC and join #sequel-pro on irc.freenode.net and any of the
3636
developers will be more than happy to help you out.
3737

3838
## License
3939

40-
Copyright (c) 2017 Rowan Beentje (rowan.beent.je) & the Sequel Pro team. All rights reserved.
40+
Copyright (c) 2018 Rowan Beentje (rowan.beent.je) & the Sequel Pro team. All rights reserved.
4141

4242
SPMySQLFramework is free and open source software, licensed under [MIT](https://opensource.org/licenses/MIT). See [LICENSE](https://github.com/sequelpro/sequelpro/blob/master/Frameworks/SPMySQLFramework/LICENSE) for full details.
4343

0 commit comments

Comments
 (0)