Skip to content

Commit

Permalink
fix: wrap LICENSE text to 80 columns
Browse files Browse the repository at this point in the history
The AGPL part of the license presents 80 columns breaks, but the additional terms do not. Now every
part of the license breaks at 80 columns, to provide consistency.
  • Loading branch information
alanrodas committed Apr 5, 2024
1 parent c0f59aa commit 79f45dc
Show file tree
Hide file tree
Showing 90 changed files with 252 additions and 116 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
## [0.8.1](https://github.com/gobstones/gobstones-scripts/compare/v0.8.0...v0.8.1) (2024-04-05)
## [0.8.2](https://github.com/gobstones/gobstones-scripts/compare/v0.8.1...v0.8.2) (2024-04-05)


### Bug Fixes

* wrap LICENSE text to 80 columns ([f0e077b](https://github.com/gobstones/gobstones-scripts/commit/f0e077b698f20ecdf46f156c967eabd717e5043f))



## [0.8.1](https://github.com/gobstones/gobstones-scripts/compare/v0.8.0...v0.8.1) (2024-04-05)

# [0.8.0](https://github.com/gobstones/gobstones-scripts/compare/v0.7.2...v0.8.0) (2024-04-05)

### Features
Expand Down
49 changes: 36 additions & 13 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,42 @@ of the GNU Affero General Public License version 3.

# ADDITIONAL TERMS

This program is free software. You may redistribute it and/or modify it solely under the terms of the GNU Affero General Public License (AGPL) version 3 published by the Free Software Foundation available at http://www.gnu.org/licenses/agpl-3.0.html and under the conditions detailed here.

This program is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Any copy of the program that you propagate should include the "Non-Certified Software and/or Service" notice clearly visible in the user interface and can not use the Gobstones name, logo, brand and/or denomination, as long as your copies of the program remain uncertified. Any copy of the program that you convey should also present the "Non-Certified Software and/or Service" notice and is prohibited to use of the Gobstones name, logo, brand and/or denomination, even if your copy is certified.

To certify your copies of the software you may contact the National University of Quilmes by email at [email protected] or by postal mail at the Rectorate of the National University of Quilmes, Roque Sáenz Peña 352, Bernal, Buenos Aires, Argentina (B1876BXD).

Gobstones is a trademark of the National University of Quilmes. Is explicitly prohibited any use of the Gobstones brand, name, logo, and/or denomination and of any other brand of the National University of Quilmes without the explicit permission and authorization granted by the university in written form.

The use of the name of the National University of Quilmes and/or of the authors of the covered work or associated materials to either promote, advertise and/or sell non certified copies of the software is explicitly prohibited.

Interactive user interfaces in modified source and object code versions of Gobstones, whether text or graphical, must display appropriate legal notices with reference to the GNU Affero Public License version 3 and to this Additional Terms. You may find a full copy of the license with the additional terms at [https://gobstones.github.org/gobstones-guidelines/LICENSE](https://gobstones.github.org/gobstones-guidelines/LICENSE).
This program is free software. You may redistribute it and/or modify it solely
under the terms of the GNU Affero General Public License (AGPL) version 3
published by the Free Software Foundation available at
http://www.gnu.org/licenses/agpl-3.0.html and under the conditions detailed
here.

This program is distributed WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Any copy of the program that you propagate should include the "Non-Certified
Software and/or Service" notice clearly visible in the user interface and can
not use the Gobstones name, logo, brand and/or denomination, as long as your
copies of the program remain uncertified. Any copy of the program that you
convey should also present the "Non-Certified Software and/or Service" notice
and is prohibited to use of the Gobstones name, logo, brand and/or denomination,
even if your copy is certified.

To certify your copies of the software you may contact the National University
of Quilmes by email at [email protected] or by postal mail at the Rectorate
of the National University of Quilmes, Roque Sáenz Peña 352, Bernal, Buenos
Aires, Argentina (B1876BXD).

Gobstones is a trademark of the National University of Quilmes. Is explicitly
prohibited any use of the Gobstones brand, name, logo, and/or denomination and
of any other brand of the National University of Quilmes without the explicit
permission and authorization granted by the university in written form.

The use of the name of the National University of Quilmes and/or of the authors
of the covered work or associated materials to either promote, advertise and/or
sell non certified copies of the software is explicitly prohibited.

Interactive user interfaces in modified source and object code versions of
Gobstones, whether text or graphical, must display appropriate legal notices
with reference to the GNU Affero Public License version 3 and to this Additional
Terms. You may find a full copy of the license with the additional terms at
[https://gobstones.github.io/gobstones-guidelines/LICENSE](https://gobstones.github.io/gobstones-guidelines/LICENSE).


# GNU AFFERO GENERAL PUBLIC LICENSE
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gobstones/gobstones-scripts",
"version": "0.8.1",
"version": "0.8.2",
"description": "Scripts to abstract away build configuration of Gobstones Project's libraries and modules.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion project-types/cliLibrary/package-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"commander": "^11.1.0"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.8.1",
"@gobstones/gobstones-scripts": "^0.8.2",
"husky": "^8.0.2"
}
}
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/helpers/stringJoiner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/models/MyClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/translations/Locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/translations/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/translations/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/src/translations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/cliLibrary/test/my_first_test.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
52 changes: 38 additions & 14 deletions project-types/common/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,51 @@ Copyright (C) National University of Quilmes 2018-2024
Gobstones (TM) is a trademark of the National University of Quilmes.

This program is free software distributed under the terms of the
GNU Affero General Public License version 3 solely. Additional terms added in compliance to section 7 of such license apply.
GNU Affero General Public License version 3 solely.
Additional terms added in compliance to section 7 of such license apply.

Additional terms are listed next. Below them you may find a full copy
of the GNU Affero General Public License version 3.


# ADDITIONAL TERMS

This program is free software. You may redistribute it and/or modify it solely under the terms of the GNU Affero General Public License (AGPL) version 3 published by the Free Software Foundation available at http://www.gnu.org/licenses/agpl-3.0.html and under the conditions detailed here.

This program is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Any copy of the program that you propagate should include the "Non-Certified Software and/or Service" notice clearly visible in the user interface and can not use the Gobstones name, logo, brand and/or denomination, as long as your copies of the program remain uncertified. Any copy of the program that you convey should also present the "Non-Certified Software and/or Service" notice and is prohibited to use of the Gobstones name, logo, brand and/or denomination, even if your copy is certified.

To certify your copies of the software you may contact the National University of Quilmes by email at [email protected] or by postal mail at the Rectorate of the National University of Quilmes, Roque Sáenz Peña 352, Bernal, Buenos Aires, Argentina (B1876BXD).

Gobstones is a trademark of the National University of Quilmes. Is explicitly prohibited any use of the Gobstones brand, name, logo, and/or denomination and of any other brand of the National University of Quilmes without the explicit permission and authorization granted by the university in written form.

The use of the name of the National University of Quilmes and/or of the authors of the covered work or associated materials to either promote, advertise and/or sell non certified copies of the software is explicitly prohibited.

Interactive user interfaces in modified source and object code versions of Gobstones, whether text or graphical, must display appropriate legal notices with reference to the GNU Affero Public License version 3 and to this Additional Terms. You may find a full copy of the license with the additional terms at [https://gobstones.github.org/gobstones-guidelines/LICENSE](https://gobstones.github.org/gobstones-guidelines/LICENSE).
This program is free software. You may redistribute it and/or modify it solely
under the terms of the GNU Affero General Public License (AGPL) version 3
published by the Free Software Foundation available at
http://www.gnu.org/licenses/agpl-3.0.html and under the conditions detailed
here.

This program is distributed WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Any copy of the program that you propagate should include the "Non-Certified
Software and/or Service" notice clearly visible in the user interface and can
not use the Gobstones name, logo, brand and/or denomination, as long as your
copies of the program remain uncertified. Any copy of the program that you
convey should also present the "Non-Certified Software and/or Service" notice
and is prohibited to use of the Gobstones name, logo, brand and/or denomination,
even if your copy is certified.

To certify your copies of the software you may contact the National University
of Quilmes by email at [email protected] or by postal mail at the Rectorate
of the National University of Quilmes, Roque Sáenz Peña 352, Bernal, Buenos
Aires, Argentina (B1876BXD).

Gobstones is a trademark of the National University of Quilmes. Is explicitly
prohibited any use of the Gobstones brand, name, logo, and/or denomination and
of any other brand of the National University of Quilmes without the explicit
permission and authorization granted by the university in written form.

The use of the name of the National University of Quilmes and/or of the authors
of the covered work or associated materials to either promote, advertise and/or
sell non certified copies of the software is explicitly prohibited.

Interactive user interfaces in modified source and object code versions of
Gobstones, whether text or graphical, must display appropriate legal notices
with reference to the GNU Affero Public License version 3 and to this Additional
Terms. You may find a full copy of the license with the additional terms at
[https://gobstones.github.io/gobstones-guidelines/LICENSE](https://gobstones.github.io/gobstones-guidelines/LICENSE).


# GNU AFFERO GENERAL PUBLIC LICENSE
Expand Down
3 changes: 2 additions & 1 deletion project-types/common/LICENSE_HEADER
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Copyright (C) National University of Quilmes 2018-2024
Gobstones (TM) is a trademark of the National University of Quilmes.

This program is free software distributed under the terms of the
GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
GNU Affero General Public License version 3.
Additional terms added in compliance to section 7 of such license apply.

You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
*****************************************************************************
2 changes: 1 addition & 1 deletion project-types/library/package-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@gobstones/gobstones-core": "^0.4.7"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.8.1",
"@gobstones/gobstones-scripts": "^0.8.2",
"husky": "^8.0.2"
}
}
3 changes: 2 additions & 1 deletion project-types/library/src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/library/src/helpers/stringJoiner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion project-types/library/src/models/MyClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Gobstones (TM) is a trademark of the National University of Quilmes.
*
* This program is free software distributed under the terms of the
* GNU Affero General Public License version 3. Additional terms added in compliance to section 7 of such license apply.
* GNU Affero General Public License version 3.
* Additional terms added in compliance to section 7 of such license apply.
*
* You may read the full license at https://gobstones.github.io/gobstones-guidelines/LICENSE.
* *****************************************************************************
Expand Down
Loading

0 comments on commit 79f45dc

Please sign in to comment.