AutoHotkey Community

It is currently May 26th, 2012, 12:34 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 21 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: December 10th, 2007, 7:48 am 
Offline

Joined: November 1st, 2005, 4:44 am
Posts: 135
The scenario: i build an application with Autohotkey. Quite complex, with a lot of scripts and folders etc. Of course i cannot expect that the users have AHK installed in their systems, so i include Autohotkey.exe in my application as the "machine" for the whole script system.

The question: Concerning licencing, what must i include in the distribution, and how.

Background: i messed quite a bit searching for example here and here, but I simply want a simple answer if possible ... ?

_________________
help to be helped


Report this post
Top
 Profile  
Reply with quote  
PostPosted: December 10th, 2007, 7:54 am 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8775
iason wrote:
The question: Concerning licencing, what must i include in the distribution, and how.


Feel free to distribute autohotkey.exe. You should not charge anything for it though.
This is my best understanding.

:)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 8:22 am 
Offline

Joined: November 1st, 2005, 4:44 am
Posts: 135
Quote:
You should not charge anything for it though.
I think it does not hold true. Freedom does not have to do with money, according to GPL. The question is about licence. :wink:

_________________
help to be helped


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 8:23 am 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
Just provide a forum link in your scripts for support :wink:

_________________
Religion is false. >_>


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 8:35 am 
Offline

Joined: November 1st, 2005, 4:44 am
Posts: 135
Ian wrote:
Just provide a forum link in your scripts for support :wink:
If i don't get a clear answer you bet i do the link here. :wink:

_________________
help to be helped


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 8:36 am 
Offline
User avatar

Joined: October 7th, 2006, 8:45 am
Posts: 3328
Location: Simi Valley, CA
I would interperet the whole 'free software' thing to mean this:

By all means, try to charge money for anything that is your original work

If your product contains other peoples' tools, please respect those peeps' hard work by keeping their work intact when you package it with your stuff.

Basically, If I were to try to sell some AHK scripts of my own, I would make it very clear that AHK is freely available at no charge and I would include a pristine copy of the AHK install files ( for the specific purpose of preserving the version of AHK used to implement the scripts). But I'm not a legal expert...

Keep in mind that if you are serious about selling software, you should provide support for your customers. If you are unwilling to provide a customer experience that's worth paying for, don't charge money for it!

_________________
Ternary (a ? b : c) guide     TSV Table Manipulation Library
Post code inside [code][/code] tags!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 9:19 pm 
Offline
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8666
Location: Salem, MA
please refer to http://www.autohotkey.com/forum/viewtopic.php?t=4720

basically, you may sell your script. you may read Chris (the developer)'s comments in that thread.

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 9:22 pm 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8775
engunneer wrote:


iason has already has that link in title post.
He wants to hear a Yes / No on distribution of AutoHotkey.exe

:)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 9:25 pm 
Offline
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8666
Location: Salem, MA
fair point. I did not read closely enough.

he must follow the gpl for distribution of the exe.

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 9:32 pm 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8775
engunneer wrote:
follow the gpl for distribution of the exe.


Oh! In that case,

Quote:
The question: Concerning licencing, what must i include in the distribution, and how.


1) Readme.txt

AutoHotkey.exe is distributed under GPL. For more details refer license.txt

2) License.txt ( you can get a copy of it from AutoHotkey folder )

:)


Last edited by SKAN on December 10th, 2007, 9:36 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2007, 9:33 pm 
Offline

Joined: November 23rd, 2007, 10:23 am
Posts: 841
Location: ~/.
my 2 cents :)

you can licence your script/collection/intellectual property and request whatever you want for.

you also might distribute the autohotkey installer, but you MUST NOT say that this ones is your intellectual property, since it is published and distributed under terms of GPL

as long as you state that autohotkey is GPL'd and everything is distributed as needed (the GPL'd software, its sources and of course the GPL licence itself) you'll have no probs, i think

in case you want to compile your app this might be interesting:
Taken from Forum's entry
http://www.autohotkey.com/forum/viewtopic.php?t=4720

Chris wrote:
Litmus Red wrote:
Any executable you make using AutoHotkey is also under the GNU public license, because the executable contains code from a GNU-protected application. Right?

No, because the EXE doesn't contain AutoHotkey's source code. Therefore, when you distribute a compiled script, you're not distributing any GPL source, and thus your application isn't subject to the GPL unless you want it to be.

In other words, when you build an app with AutoHotkey, there are no restrictions on selling it, nor do you have to release your script's source code. This is because it is similar in principle to having built the app with a GPL C++ compiler.




greets
derRaphael


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2007, 5:45 am 
Offline

Joined: November 1st, 2005, 4:44 am
Posts: 135
Thanks fellows.

So i conceive 2 clear principles:
1. Never claim other's work as yours.
2. Always point to them.

I also want to say that we have to appreciate Chris clear position, since it respects absolutely our freedom as subsequent users of his work. Gee, i love real freeware!

:D

_________________
help to be helped


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2007, 8:28 am 
Offline

Joined: November 23rd, 2007, 10:23 am
Posts: 841
Location: ~/.
it ain't no freeware - its OPEN SOURCE


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2007, 9:19 am 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8775
DerRaphael wrote:
it ain't no freeware - its OPEN SOURCE


http://www.autohotkey.com states: AutoHotkey is a free, open-source utility for Windows.

:?:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2007, 11:27 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
Skan wrote:
DerRaphael wrote:
it ain't no freeware - its OPEN SOURCE


http://www.autohotkey.com states: AutoHotkey is a free, open-source utility for Windows.
Freeware and open source are different things, DerRaphael is correct.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 21 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: fragman, janopn, Pasukun, Yahoo [Bot] and 12 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group