Universalising name & bumping copyright
This commit is contained in:
parent
e8442a4115
commit
83646baee0
22 changed files with 32 additions and 32 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue