From 83646baee075538b65839c101c2954dd8fee7a44 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Fri, 18 Jun 2021 23:56:22 +0200 Subject: [PATCH] Universalising name & bumping copyright --- LICENSE.md | 6 +++--- README.md | 4 ++-- linux/logplotter.desktop | 2 +- qml/About.qml | 6 +++--- qml/AppMenuBar.qml | 2 +- qml/ComboBoxSetting.qml | 2 +- qml/FileDialog.qml | 6 +++--- qml/History.qml | 2 +- qml/HistoryBrowser.qml | 2 +- qml/Icon.qml | 2 +- qml/LogGraph.qml | 4 ++-- qml/LogGraphCanvas.qml | 2 +- qml/ObjectLists.qml | 4 ++-- qml/Settings.qml | 2 +- qml/TextSetting.qml | 2 +- qml/js/historylib.js | 2 +- qml/js/mathlib.js | 2 +- qml/js/objects.js | 2 +- qml/js/parameters.js | 2 +- qml/js/utils.js | 2 +- run.py | 6 +++--- win/inst_banner.bmp | Bin 206122 -> 206122 bytes 22 files changed, 32 insertions(+), 32 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index d7cbf7f..a9530c3 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -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. diff --git a/README.md b/README.md index ed97515..20315ef 100644 --- a/README.md +++ b/README.md @@ -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 This program is free software: you can redistribute it and/or modify diff --git a/linux/logplotter.desktop b/linux/logplotter.desktop index 8da90f2..71bd6df 100644 --- a/linux/logplotter.desktop +++ b/linux/logplotter.desktop @@ -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 diff --git a/qml/About.qml b/qml/About.qml index 62202fb..e2ab2d3 100644 --- a/qml/About.qml +++ b/qml/About.qml @@ -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 { diff --git a/qml/AppMenuBar.qml b/qml/AppMenuBar.qml index 38d3a1e..0fa34d8 100644 --- a/qml/AppMenuBar.qml +++ b/qml/AppMenuBar.qml @@ -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 diff --git a/qml/ComboBoxSetting.qml b/qml/ComboBoxSetting.qml index 5c6b99b..a5086fb 100644 --- a/qml/ComboBoxSetting.qml +++ b/qml/ComboBoxSetting.qml @@ -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 diff --git a/qml/FileDialog.qml b/qml/FileDialog.qml index 2c0abf0..3931348 100644 --- a/qml/FileDialog.qml +++ b/qml/FileDialog.qml @@ -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 diff --git a/qml/History.qml b/qml/History.qml index e20a6cc..620fb68 100644 --- a/qml/History.qml +++ b/qml/History.qml @@ -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 diff --git a/qml/HistoryBrowser.qml b/qml/HistoryBrowser.qml index b91a24f..27f0d7e 100644 --- a/qml/HistoryBrowser.qml +++ b/qml/HistoryBrowser.qml @@ -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 diff --git a/qml/Icon.qml b/qml/Icon.qml index 3d4765b..bdeee56 100644 --- a/qml/Icon.qml +++ b/qml/Icon.qml @@ -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 diff --git a/qml/LogGraph.qml b/qml/LogGraph.qml index 5ac8c9a..3e9dada 100644 --- a/qml/LogGraph.qml +++ b/qml/LogGraph.qml @@ -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 } diff --git a/qml/LogGraphCanvas.qml b/qml/LogGraphCanvas.qml index 54e7e25..8e14eae 100644 --- a/qml/LogGraphCanvas.qml +++ b/qml/LogGraphCanvas.qml @@ -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 diff --git a/qml/ObjectLists.qml b/qml/ObjectLists.qml index d4a5e57..1f7a593 100644 --- a/qml/ObjectLists.qml +++ b/qml/ObjectLists.qml @@ -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 diff --git a/qml/Settings.qml b/qml/Settings.qml index 40a627e..9b989c1 100644 --- a/qml/Settings.qml +++ b/qml/Settings.qml @@ -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 diff --git a/qml/TextSetting.qml b/qml/TextSetting.qml index 1ccafd7..eaa012b 100644 --- a/qml/TextSetting.qml +++ b/qml/TextSetting.qml @@ -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 diff --git a/qml/js/historylib.js b/qml/js/historylib.js index de5b038..d04cdaf 100644 --- a/qml/js/historylib.js +++ b/qml/js/historylib.js @@ -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 diff --git a/qml/js/mathlib.js b/qml/js/mathlib.js index 0aedc2b..5a25431 100644 --- a/qml/js/mathlib.js +++ b/qml/js/mathlib.js @@ -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 diff --git a/qml/js/objects.js b/qml/js/objects.js index 69e0489..1175273 100644 --- a/qml/js/objects.js +++ b/qml/js/objects.js @@ -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 diff --git a/qml/js/parameters.js b/qml/js/parameters.js index 6231552..f8ecf8c 100644 --- a/qml/js/parameters.js +++ b/qml/js/parameters.js @@ -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 diff --git a/qml/js/utils.js b/qml/js/utils.js index 8cc2ab2..650b944 100644 --- a/qml/js/utils.js +++ b/qml/js/utils.js @@ -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 diff --git a/run.py b/run.py index aff5bad..7a63050 100644 --- a/run.py +++ b/run.py @@ -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() diff --git a/win/inst_banner.bmp b/win/inst_banner.bmp index 95a10fe3aa495dfcc5dbfd61801391dd9f9c9b82..72b91788803456f94f2c4c30a4615fe16e3be5c9 100644 GIT binary patch delta 314 zcmZ2=if7d+o`x32Ells8OrLj{NoTv%Q>GNA>3YY2%vH}p%zY<-OsiKQrr&8G^VAy< z^WIq?GwMB48q@TG3rt$uUws6L{=3Aa!}RIn^aVee#I{fR!sNpQF_h~&NET!$^XE^W zrY9;e3vb`>lgSTiy4D}2RHo_vr0+={MY zxZB&mn})V9Zy9i0EXJq%)jqmu5I?!fn1HRV0;&LQZT~;Ly#Px~1{TLLIHOl8WQN!= z5Pf%8t$fB*)?B_y3RWs N0F#qd9LqH7)?duE|H}XX