From 4eefcabf91eb58e09f01dba86cabdcea057d4109 Mon Sep 17 00:00:00 2001 From: Adrien Agez Date: Fri, 4 Dec 2020 17:01:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84:=20add=20=C2=A9=20and=20license=20?= =?UTF-8?q?notices?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/build.js | 19 +++++++++++++++++++ build/check-versions.js | 19 +++++++++++++++++++ build/dev-client.js | 19 +++++++++++++++++++ build/dev-server.js | 19 +++++++++++++++++++ build/load-minified.js | 19 +++++++++++++++++++ build/service-worker-dev.js | 21 ++++++++++++++++++++- build/service-worker-prod.js | 19 +++++++++++++++++++ build/utils.js | 19 +++++++++++++++++++ build/vue-loader.conf.js | 19 +++++++++++++++++++ build/webpack.base.conf.js | 19 +++++++++++++++++++ build/webpack.dev.conf.js | 19 +++++++++++++++++++ build/webpack.prod.conf.js | 19 +++++++++++++++++++ config/dev.env.js | 19 +++++++++++++++++++ config/index.js | 19 +++++++++++++++++++ config/prod.env.js | 19 +++++++++++++++++++ index.html | 19 +++++++++++++++++++ src/App.vue | 19 +++++++++++++++++++ src/components/Battleground.vue | 19 +++++++++++++++++++ src/components/Hello.vue | 19 +++++++++++++++++++ src/components/Objective.vue | 19 +++++++++++++++++++ src/components/TheBattlegroundSelector.vue | 19 +++++++++++++++++++ src/components/Timer.vue | 19 +++++++++++++++++++ src/gameInfos/battlegrounds.js | 19 +++++++++++++++++++ src/gameInfos/objectives.js | 19 +++++++++++++++++++ src/main.js | 19 +++++++++++++++++++ src/router/index.js | 19 +++++++++++++++++++ src/styles/main.sass | 17 +++++++++++++++++ 27 files changed, 512 insertions(+), 1 deletion(-) diff --git a/build/build.js b/build/build.js index 91bfe0e..f85625f 100644 --- a/build/build.js +++ b/build/build.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' require('./check-versions')() diff --git a/build/check-versions.js b/build/check-versions.js index 2e2f531..63160f3 100644 --- a/build/check-versions.js +++ b/build/check-versions.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const chalk = require('chalk') diff --git a/build/dev-client.js b/build/dev-client.js index ea35821..fafd2ee 100644 --- a/build/dev-client.js +++ b/build/dev-client.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' /* eslint-disable */ diff --git a/build/dev-server.js b/build/dev-server.js index e31613a..d021635 100644 --- a/build/dev-server.js +++ b/build/dev-server.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' require('./check-versions')() diff --git a/build/load-minified.js b/build/load-minified.js index aeba177..1dd4181 100644 --- a/build/load-minified.js +++ b/build/load-minified.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const fs = require('fs') diff --git a/build/service-worker-dev.js b/build/service-worker-dev.js index 979e196..c79060c 100644 --- a/build/service-worker-dev.js +++ b/build/service-worker-dev.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + // This service worker file is effectively a 'no-op' that will reset any // previous service worker registered for the same host:port combination. // In the production build, this file is replaced with an actual service worker @@ -14,4 +33,4 @@ self.addEventListener('activate', () => { windowClient.navigate(windowClient.url); } }); -}); \ No newline at end of file +}); diff --git a/build/service-worker-prod.js b/build/service-worker-prod.js index d6ab08b..3955fab 100644 --- a/build/service-worker-prod.js +++ b/build/service-worker-prod.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + (function() { 'use strict'; diff --git a/build/utils.js b/build/utils.js index e15da6f..c716322 100644 --- a/build/utils.js +++ b/build/utils.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const path = require('path') diff --git a/build/vue-loader.conf.js b/build/vue-loader.conf.js index df552f7..55f3485 100644 --- a/build/vue-loader.conf.js +++ b/build/vue-loader.conf.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const utils = require('./utils') diff --git a/build/webpack.base.conf.js b/build/webpack.base.conf.js index 0e0946f..8c04a93 100644 --- a/build/webpack.base.conf.js +++ b/build/webpack.base.conf.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const path = require('path') diff --git a/build/webpack.dev.conf.js b/build/webpack.dev.conf.js index 2035ec0..19d1d03 100644 --- a/build/webpack.dev.conf.js +++ b/build/webpack.dev.conf.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const fs = require('fs') diff --git a/build/webpack.prod.conf.js b/build/webpack.prod.conf.js index ed4d749..eb992ad 100644 --- a/build/webpack.prod.conf.js +++ b/build/webpack.prod.conf.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const fs = require('fs') diff --git a/config/dev.env.js b/config/dev.env.js index 9423fde..141bfe6 100644 --- a/config/dev.env.js +++ b/config/dev.env.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' const merge = require('webpack-merge') diff --git a/config/index.js b/config/index.js index 1b89489..23cf4f7 100644 --- a/config/index.js +++ b/config/index.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + 'use strict' // see http://vuejs-templates.github.io/webpack for documentation. diff --git a/config/prod.env.js b/config/prod.env.js index 773d263..ec4f09a 100644 --- a/config/prod.env.js +++ b/config/prod.env.js @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Adrien Agez + * + * This file is part of Nexus Timers. + * + * Nexus Timers 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. + * + * Nexus Timers 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 Nexus Timers. If not, see . + */ + module.exports = { NODE_ENV: '"production"' } diff --git a/index.html b/index.html index 4a0aa69..c491d7f 100644 --- a/index.html +++ b/index.html @@ -1,3 +1,22 @@ + + diff --git a/src/App.vue b/src/App.vue index e6d6f64..ae813a1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,3 +1,22 @@ + +