Skip to content

Commit

Permalink
Relicense from BSD to AGPL
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikolaj committed Jan 29, 2012
1 parent f891b24 commit c84e51d
Show file tree
Hide file tree
Showing 15 changed files with 743 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Allure.cabal
@@ -1,7 +1,7 @@
cabal-version: >= 1.10 cabal-version: >= 1.10
name: Allure name: Allure
version: 0.4.3 version: 0.4.3
license: BSD3 license: OtherLicense
license-file: LICENSE license-file: LICENSE
tested-with: GHC == 7.2, GHC == 7.4 tested-with: GHC == 7.2, GHC == 7.4
data-files: LICENSE, CREDITS, PLAYING.md, README.md, data-files: LICENSE, CREDITS, PLAYING.md, README.md,
Expand Down
689 changes: 661 additions & 28 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions Makefile
@@ -1,3 +1,8 @@
# Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
# This file is a part of the computer game Allure of the Stars
# and is released under the terms of the GNU Affero General Public License.
# For license and copyright information, see the file LICENSE.
#
default : dist/setup-config default : dist/setup-config
runghc Setup build runghc Setup build


Expand Down
20 changes: 20 additions & 0 deletions README.md
Expand Up @@ -51,6 +51,26 @@ and see the files PLAYING.md, CREDITS and LICENSE.
Have fun! Have fun!




Copyright
---------

Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
Allure of the Stars is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program in file LICENSE.
If not, see <http://www.gnu.org/licenses/>.





[1]: http://www.haskell.org/ [1]: http://www.haskell.org/
[2]: http://roguebasin.roguelikedevelopment.org/index.php?title=Berlin_Interpretation [2]: http://roguebasin.roguelikedevelopment.org/index.php?title=Berlin_Interpretation
Expand Down
5 changes: 5 additions & 0 deletions config.bot
@@ -1,3 +1,8 @@
; Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
; This file is a part of the computer game Allure of the Stars
; and is released under the terms of the GNU Affero General Public License.
; For license and copyright information, see the file LICENSE.
;
; Config file for the bot: ; Config file for the bot:
; DumbBot 42 20000000 | Allure > /tmp/log ; DumbBot 42 20000000 | Allure > /tmp/log


Expand Down
5 changes: 5 additions & 0 deletions config.default
@@ -1,3 +1,8 @@
; Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
; This file is a part of the computer game Allure of the Stars
; and is released under the terms of the GNU Affero General Public License.
; For license and copyright information, see the file LICENSE.
;
; This is a copy of the default config file, included in the binary itself. ; This is a copy of the default config file, included in the binary itself.
; The game normally looks for the user config file in ~/.Allure/config. ; The game normally looks for the user config file in ~/.Allure/config.
; We restricts the usual config file format by insisting that ; We restricts the usual config file format by insisting that
Expand Down
7 changes: 6 additions & 1 deletion src/ConfigDefault.hs
@@ -1,5 +1,10 @@
-- | The default configurations file included via CPP as a Haskell string.
{-# LANGUAGE CPP, QuasiQuotes #-} {-# LANGUAGE CPP, QuasiQuotes #-}
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | The default configurations file included via CPP as a Haskell string.
module ConfigDefault ( configDefault ) where module ConfigDefault ( configDefault ) where


import Multiline import Multiline
Expand Down
5 changes: 5 additions & 0 deletions src/Content/ActorKind.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Monsters and heroes for Allure of the Stars. -- | Monsters and heroes for Allure of the Stars.
module Content.ActorKind ( cdefs ) where module Content.ActorKind ( cdefs ) where


Expand Down
5 changes: 5 additions & 0 deletions src/Content/CaveKind.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Cave layouts for Allure of the Stars. -- | Cave layouts for Allure of the Stars.
module Content.CaveKind ( cdefs ) where module Content.CaveKind ( cdefs ) where


Expand Down
5 changes: 5 additions & 0 deletions src/Content/ItemKind.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Weapons and treasure for Allure of the Stars. -- | Weapons and treasure for Allure of the Stars.
module Content.ItemKind ( cdefs ) where module Content.ItemKind ( cdefs ) where


Expand Down
5 changes: 5 additions & 0 deletions src/Content/PlaceKind.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Rooms, halls and passages for Allure of the Stars. -- | Rooms, halls and passages for Allure of the Stars.
module Content.PlaceKind ( cdefs ) where module Content.PlaceKind ( cdefs ) where


Expand Down
5 changes: 5 additions & 0 deletions src/Content/RuleKind.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Game rules and assorted data for Allure of the Stars. -- | Game rules and assorted data for Allure of the Stars.
module Content.RuleKind ( cdefs ) where module Content.RuleKind ( cdefs ) where


Expand Down
5 changes: 5 additions & 0 deletions src/Content/TileKind.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Terrain tiles for Allure of the Stars. -- | Terrain tiles for Allure of the Stars.
module Content.TileKind ( cdefs ) where module Content.TileKind ( cdefs ) where


Expand Down
5 changes: 5 additions & 0 deletions src/Main.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | The main code file of Allure of the Stairs. Here the knot of engine -- | The main code file of Allure of the Stairs. Here the knot of engine
-- code pieces and the Allure-specific content defintions is tied, -- code pieces and the Allure-specific content defintions is tied,
-- resulting in an executable game. -- resulting in an executable game.
Expand Down
5 changes: 5 additions & 0 deletions src/Multiline.hs
@@ -1,3 +1,8 @@
-- Copyright (c) 2008--2011 Andres Loeh, 2010--2012 Mikolaj Konarski
-- This file is a part of the computer game Allure of the Stars
-- and is released under the terms of the GNU Affero General Public License.
-- For license and copyright information, see the file LICENSE.
--
-- | Template Haskell machinery for quoting multiline strings. -- | Template Haskell machinery for quoting multiline strings.
module Multiline (multiline) where module Multiline (multiline) where


Expand Down

0 comments on commit c84e51d

Please sign in to comment.