Changeset 2132
- Timestamp:
- Jun 17, 2007, 3:36:14 PM (15 years ago)
- Location:
- branches/file_selection
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/file_selection/LICENSE
r2124 r2132 2 2 distributed under the MIT license. 3 3 4 The exception to this are the files copyrighted by Charles Kerr, 5 which are distributed under the Creative Commons 6 Attribution-Noncommercial-Share Alike 3.0 License. 7 Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 8 Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 4 Some files are copyrighted by Charles Kerr and are covered by 5 the GPL version 2. Works owned by the Transmission project 6 are granted a special exemption to clause 2(b) so that the bulk 7 of its code can remain under the MIT license. This exemption does 8 not extend to original or derived works not owned by the 9 Transmission project. 9 10 10 11 The remainder of this text pertains only to the MIT-licensed -
branches/file_selection/NEWS
r2126 r2132 6 6 - Partial licensing change -- see the LICENSE file for details 7 7 - Fix to UPnP support 8 - Rechecking torrents is now done one torrent at a time 9 to avoid hammering the disk 8 10 - Many miscellaneous bugfixes and small improvements 9 11 - OS X: 10 12 + Overlay when dragging torrent files onto window 11 13 + Various smaller interface changes and improvements 12 13 14 - GTK: 14 15 + Interface significantly reworks to closer match the Mac version -
branches/file_selection/gtk/actions.c
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/gtk/actions.h
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/gtk/hig.c
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/gtk/hig.h
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/gtk/main.c
r2131 r2132 71 71 #define SHOW_LICENSE 72 72 static const char * LICENSE = 73 "The Transmission binaries and source code are distributed under the MIT"73 "The Transmission binaries and most of its source code is distributed " 74 74 "license. " 75 "\n\n" 76 "Some files are copyrighted by Charles Kerr and are covered by " 77 "the GPL version 2. Works owned by the Transmission project " 78 "are granted a special exemption to clause 2(b) so that the bulk " 79 "of its code can remain under the MIT license. This exemption does " 80 "not extend to original or derived works not owned by the " 81 "Transmission project. " 75 82 "\n\n" 76 83 "Permission is hereby granted, free of charge, to any person obtaining " -
branches/file_selection/gtk/makemeta-ui.c
r2131 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/gtk/makemeta-ui.h
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 * 13 * To be blunt, I'm happy to let the Transmission project use my 14 * code because Transmission is free software. Closed-source and/or 15 * commercial projects may not use this file. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 16 9 */ 17 10 -
branches/file_selection/libtransmission/inout.c
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/libtransmission/makemeta.c
r2131 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10 -
branches/file_selection/libtransmission/makemeta.h
r2124 r2132 2 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 8 * 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 4 * This file is licensed by the GPL version 2. Works owned by the 5 * Transmission project are granted a special exemption to clause 2(b) 6 * so that the bulk of its code can remain under the MIT license. 7 * This exemption does not extend to derived works not owned by 8 * the Transmission project. 12 9 */ 13 10
Note: See TracChangeset
for help on using the changeset viewer.