Universalising name & bumping copyright

This commit is contained in:
Ad5001 2021-06-18 23:56:22 +02:00
parent e8442a4115
commit 83646baee0
Signed by: Ad5001
GPG Key ID: EF45F9C6AFE20160
22 changed files with 32 additions and 32 deletions

View File

@ -630,8 +630,8 @@ attach them to the start of each source file to most effectively state
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
Logarithmic Plotter - Create graphs with logarithm scales.
Copyright (C) 2020 Ad5001
LogarithmPlotter - Create graphs with logarithm scales.
Copyright (C) 2021 Ad5001
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
@ -652,7 +652,7 @@ mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
Logarithmic Plotter Copyright (C) 2020 Ad5001
LogarithmPlotter Copyright (C) 2021 Ad5001
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.

View File

@ -1,4 +1,4 @@
# Logarithm Plotter
# LogarithmPlotter
Create graphs with logarithm scales, namely BODE diagrams.
@ -18,7 +18,7 @@ You can generate installers from AccountFree after installing all the dependenci
Run `bash linux/install_local.sh`
## Legal notice
Logarithmic Plotter - Create graphs with logarithm scales.
LogarithmPlotter - Create graphs with logarithm scales.
Copyright (C) 2021 Ad5001 <mail@ad5001.eu>
This program is free software: you can redistribute it and/or modify

View File

@ -1,7 +1,7 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=Logarithm Plotter
Name=LogarithmPlotter
Comment=Plotter to make BODE diagrams, sequences and repartition functions.
Exec=/usr/bin/python3 /home/ad5001/Apps/LogarithmPlotter/run.py %F
Icon=/home/ad5001/Apps/LogarithmPlotter/logplotter.svg

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify
@ -23,7 +23,7 @@ import QtQuick.Controls 2.12
D.Dialog {
id: about
title: `About Logarithmic Plotter`
title: `About LogarithmPlotter`
width: 400
height: 600
@ -49,7 +49,7 @@ D.Dialog {
width: parent.width
wrapMode: Text.WordWrap
font.pixelSize: 25
text: "Logarithmic Plotter v" + Helper.getVersion()
text: "LogarithmPlotter v" + Helper.getVersion()
}
Label {

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify
@ -23,8 +23,8 @@ D.FileDialog {
property bool exportMode: false
title: exportMode ? "Export Logarithmic Graph file" : "Import Logarithmic Graph file"
nameFilters: ["Logarithmic Graph JSON Data (*.lpf *.lgg)", "Old Logarithmic Graph JSON Data (*.json)", "All files (*)"]
title: exportMode ? "Export Logarithm Plot file" : "Import Logarithm Plot file"
nameFilters: ["Logarithm Plot File (*.lpf *.lgg)", "Old Logarithm Plot Data (*.json)", "All files (*)"]
folder: shortcuts.documents
selectExisting: !exportMode

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify
@ -29,7 +29,7 @@ ApplicationWindow {
width: 1000
height: 500
color: sysPalette.window
title: "Logarithmic Plotter " + (settings.saveFilename != "" ? " - " + settings.saveFilename.split('/')[settings.saveFilename.split('/').length -1] : "")
title: "LogarithmPlotter " + (settings.saveFilename != "" ? " - " + settings.saveFilename.split('/')[settings.saveFilename.split('/').length -1] : "")
SystemPalette { id: sysPalette; colorGroup: SystemPalette.Active }
SystemPalette { id: sysPaletteIn; colorGroup: SystemPalette.Disabled }

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify
@ -184,7 +184,7 @@ ListView {
property int objIndex: 0
property QtObject editingRow: QtObject{}
property var obj: Objects.currentObjects[objType][objIndex]
title: `Logarithmic Plotter`
title: `LogarithmPlotter`
width: 300
height: 400

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/**
* Logarithmic Plotter - Create graphs with logarithm scales.
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify

6
run.py
View File

@ -1,6 +1,6 @@
"""
* Logarithmic Plotter - Create graphs with logarithm scales.
* Copyright (C) 2020 Ad5001
* LogarithmPlotter - Create graphs with logarithm scales.
* Copyright (C) 2021 Ad5001
*
* 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
@ -102,7 +102,7 @@ class Helper(QObject):
app = QApplication(argv)
app.setApplicationName("Logarithmic Plotter")
app.setApplicationName("LogarithmPlotter")
app.setOrganizationName("Ad5001")
app.setWindowIcon(QIcon(os.path.realpath(os.path.join(os.getcwd(), "logplotter.svg"))))
engine = QQmlApplicationEngine()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 KiB

After

Width:  |  Height:  |  Size: 201 KiB