Browse Source

Update copyright year to 2022

pull/112/head
Jonathan "Duke" Leto 2 years ago
parent
commit
08c18db6fd
  1. 2
      build.sh
  2. 2
      run-after-build.sh
  3. 2
      silentdragon.pro
  4. 2
      src/about.ui
  5. 2
      src/addressbook.cpp
  6. 2
      src/addressbook.h
  7. 2
      src/addresscombo.cpp
  8. 2
      src/addresscombo.h
  9. 2
      src/balancestablemodel.cpp
  10. 2
      src/balancestablemodel.h
  11. 2
      src/bannedpeerstablemodel.cpp
  12. 2
      src/bannedpeerstablemodel.h
  13. 2
      src/connection.cpp
  14. 2
      src/connection.h
  15. 2
      src/fillediconlabel.cpp
  16. 2
      src/fillediconlabel.h
  17. 2
      src/logger.cpp
  18. 2
      src/logger.h
  19. 2
      src/main.cpp
  20. 2
      src/mainwindow.cpp
  21. 2
      src/mainwindow.h
  22. 2
      src/memoedit.cpp
  23. 2
      src/memoedit.h
  24. 2
      src/mobileappconnector.cpp
  25. 2
      src/mobileappconnector.h
  26. 2
      src/peerstablemodel.cpp
  27. 2
      src/peerstablemodel.h
  28. 2
      src/precompiled.h
  29. 2
      src/qrcodelabel.cpp
  30. 2
      src/qrcodelabel.h
  31. 2
      src/recurring.cpp
  32. 2
      src/recurring.h
  33. 2
      src/requestdialog.cpp
  34. 2
      src/requestdialog.h
  35. 2
      src/rpc.cpp
  36. 2
      src/rpc.h
  37. 2
      src/scripts/dotranslations.sh
  38. 2
      src/scripts/make-binary-tarball.sh
  39. 2
      src/scripts/make-deb.sh
  40. 2
      src/scripts/make-only-deb.sh
  41. 2
      src/scripts/mkmacdmg.sh
  42. 2
      src/scripts/mkrelease.sh
  43. 2
      src/scripts/signbinaries.sh
  44. 2
      src/sendtab.cpp
  45. 2
      src/senttxstore.cpp
  46. 2
      src/senttxstore.h
  47. 2
      src/settings.cpp
  48. 2
      src/settings.h
  49. 2
      src/txtablemodel.cpp
  50. 2
      src/txtablemodel.h
  51. 2
      src/validateaddress.cpp
  52. 2
      src/validateaddress.h
  53. 2
      src/viewalladdresses.cpp
  54. 2
      src/viewalladdresses.h
  55. 2
      src/websockets.cpp
  56. 2
      src/websockets.h
  57. 2
      win-build.sh

2
build.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2018-2021 The Hush Developers
# Copyright 2018-2022 The Hush Developers
# Released under the GPLv3
set -e

2
run-after-build.sh

@ -1,4 +1,4 @@
#!/bin/bash
# Copyright 2019-2021 The Hush Developers
# Copyright 2019-2022 The Hush Developers
./build.sh && ./silentdragon

2
silentdragon.pro

@ -1,4 +1,4 @@
# Copyright 2018-2021 The Hush Developers
# Copyright 2018-2022 The Hush Developers
# Released under the GPLv3
# Project created by QtCreator 2018-10-05T09:54:45

2
src/about.ui

@ -53,7 +53,7 @@
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Ubuntu'; font-size:12pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8.1pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">Copyright(c) 2019-2021 The Hush developers (GPLv3)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">Copyright(c) 2019-2022 The Hush developers (GPLv3)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">Copyright (c) 2019 Duke Leto, Jane Mercer and Aditya Kulkarni. (MIT License)</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">Special thanks to:</span></p>

2
src/addressbook.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "addressbook.h"
#include "ui_addressbook.h"

2
src/addressbook.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef ADDRESSBOOK_H
#define ADDRESSBOOK_H

2
src/addresscombo.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "addresscombo.h"
#include "addressbook.h"

2
src/addresscombo.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef ADDRESSCOMBO_H
#define ADDRESSCOMBO_H

2
src/balancestablemodel.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "balancestablemodel.h"
#include "addressbook.h"

2
src/balancestablemodel.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef BALANCESTABLEMODEL_H
#define BALANCESTABLEMODEL_H

2
src/bannedpeerstablemodel.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "bannedpeerstablemodel.h"
#include "settings.h"

2
src/bannedpeerstablemodel.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef BANNEDPEERSTABLEMODEL_H
#define BANNEDPEERSTABLEMODEL_H

2
src/connection.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "connection.h"
#include "mainwindow.h"

2
src/connection.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef CONNECTION_H
#define CONNECTION_H

2
src/fillediconlabel.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "fillediconlabel.h"

2
src/fillediconlabel.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef FILLEDICONLABEL_H
#define FILLEDICONLABEL_H

2
src/logger.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "logger.h"

2
src/logger.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef LOGGER_H
#define LOGGER_H

2
src/main.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include <singleapplication.h>
#include "precompiled.h"

2
src/mainwindow.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush Developers
// Copyright 2019-2022 The Hush Developers
// Released under the GPLv3
#include "mainwindow.h"
#include "addressbook.h"

2
src/mainwindow.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

2
src/memoedit.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "memoedit.h"

2
src/memoedit.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef MEMOEDIT_H
#define MEMOEDIT_H

2
src/mobileappconnector.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "mobileappconnector.h"
#include "ui_mobileappconnector.h"

2
src/mobileappconnector.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef MOBILEAPPCONNECTOR_H
#define MOBILEAPPCONNECTOR_H

2
src/peerstablemodel.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "peerstablemodel.h"
#include "settings.h"

2
src/peerstablemodel.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef PEERSTABLEMODEL_H
#define PEERSTABLEMODEL_H

2
src/precompiled.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#if defined __cplusplus
/* Add C++ includes here */

2
src/qrcodelabel.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "qrcodelabel.h"

2
src/qrcodelabel.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef QRCODELABEL_H
#define QRCODELABEL_H

2
src/recurring.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "recurring.h"

2
src/recurring.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef RECURRING_H
#define RECURRING_H

2
src/requestdialog.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "requestdialog.h"
#include "ui_requestdialog.h"

2
src/requestdialog.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef REQUESTDIALOG_H
#define REQUESTDIALOG_H

2
src/rpc.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush Developers
// Copyright 2019-2022 The Hush Developers
// Released under the GPLv3
#include "rpc.h"
#include "addressbook.h"

2
src/rpc.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef RPCCLIENT_H
#define RPCCLIENT_H

2
src/scripts/dotranslations.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Released under the GPLv3
if [ -z $QT_STATIC ]; then

2
src/scripts/make-binary-tarball.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Released under the GPLv3
APP_VERSION=$(cat src/version.h | cut -d\" -f2)

2
src/scripts/make-deb.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Thanks to Zecwallet for the original code
# Released under the GPLv3

2
src/scripts/make-only-deb.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Released under the GPLv3
echo "Let There Be Debian Packages"

2
src/scripts/mkmacdmg.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Released under the GPLv3
# Accept the variables as command line arguments as well

2
src/scripts/mkrelease.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Thanks to Zecwallet for the original code
# Released under the GPLv3

2
src/scripts/signbinaries.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021 The Hush developers
# Copyright (c) 2019-2022 The Hush developers
# Released under the GPLv3
# Accept the variables as command line arguments as well

2
src/sendtab.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "mainwindow.h"
#include "ui_mainwindow.h"

2
src/senttxstore.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "senttxstore.h"
#include "settings.h"

2
src/senttxstore.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef SENTTXSTORE_H
#define SENTTXSTORE_H

2
src/settings.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 Hush developers
// Copyright 2019-2022 Hush developers
// Released under the GPLv3
#include "mainwindow.h"
#include "settings.h"

2
src/settings.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef SETTINGS_H
#define SETTINGS_H

2
src/txtablemodel.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "txtablemodel.h"
#include "settings.h"

2
src/txtablemodel.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef STRINGSTABLEMODEL_H
#define STRINGSTABLEMODEL_H

2
src/validateaddress.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "validateaddress.h"

2
src/validateaddress.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef VALIDATEADDRESS_H
#define VALIDATEADDRESS_H

2
src/viewalladdresses.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "viewalladdresses.h"
#include "settings.h"

2
src/viewalladdresses.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef VIEWALLADDRESSES_H
#define VIEWALLADDRESSES_H

2
src/websockets.cpp

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#include "websockets.h"
#include "rpc.h"

2
src/websockets.h

@ -1,4 +1,4 @@
// Copyright 2019-2021 The Hush developers
// Copyright 2019-2022 The Hush developers
// Released under the GPLv3
#ifndef WEBSOCKETS_H
#define WEBSOCKETS_H

2
win-build.sh

@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2019-2021 The Hush Developers
# Copyright 2019-2022 The Hush Developers
# Released under the GPLv3
# This script will cross-compile windoze binaries, hopefully!

Loading…
Cancel
Save