Added license agreement preamble

Added the GNU GPLv3 preamble for licencing software program files.
Adjusted existing preamble to accommodate this license.
This commit is contained in:
Ethan Smith-Coss 2021-05-23 23:08:42 +01:00
parent 856f743aa2
commit 9493db2435
2 changed files with 70 additions and 31 deletions

58
updater
View File

@ -1,23 +1,43 @@
#!/bin/bash #!/bin/bash
########################################################## #########################################################################
# updater - Automatically update Microsoft Edge on Solus # # #
# # # updater - Automatically update Microsoft Edge on Solus #
# Dependencies: # # #
# wget # # Dependencies: #
# gunzip # # wget #
# tar # # gunzip #
# sort (coreutils >= 8.32) # # tar #
# # # sort (coreutils >= 8.32) #
# # # #
# Disclaimer: This version only works for MS Edge Beta. # # #
# A later release may allow for update of Dev builds # # Disclaimer: This version only works for MS Edge Beta. #
# and potentially both. # # A later release may allow for update of Dev builds #
# # # and potentially both. #
# Author: Ethan Smith-Coss # # #
# Version: 0.1.2 # # Author: Ethan Smith-Coss #
# Created: 2021-05-20T16:47+0100 # # Version: 0.1.2 #
# Last Modified: 2021-05-23T21:18+0100 # # Created: 2021-05-20T16:47+0100 #
########################################################## # Last Modified: 2021-05-23T21:18+0100 #
# #
# #################################### #
# #
# updater - Automatically update Microsoft Edge on Solus #
# Copyright ©️ 2021 Ethan Smith-Coss #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU 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 General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
#########################################################################
## program name ## program name
prog_name="Microsoft Edge Updater" prog_name="Microsoft Edge Updater"
## version ## version

View File

@ -1,16 +1,35 @@
#!/bin/bash #!/bin/bash
########################################################### #########################################################################
# common - Utility file with common functions for updater # # common - Utility file with common functions for updater #
# # # #
# Dependencies: # # Dependencies: #
# tar # # tar #
# # # #
# # # #
# Author: Ethan Smith-Coss # # Author: Ethan Smith-Coss #
# Version: 0.1.1 # # Version: 0.1.2 #
# Created: 2021-05-20T16:47+0100 # # Created: 2021-05-20T16:47+0100 #
# Last Modified: 2021-05-22T23:23+0100 # # Last Modified: 2021-05-23T23:06+0100 #
########################################################### # #
# #################################### #
# #
# common - Utility file with common functions for updater #
# Copyright ©️ 2021 Ethan Smith-Coss #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU 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 General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
#########################################################################
function log { function log {
local log_out=$(realpath "${0%/*}/../.log.1") local log_out=$(realpath "${0%/*}/../.log.1")