Removing support for older extension to only support .lpf files.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Also implementing file type association for Windows.
This commit is contained in:
parent
6682b75df3
commit
c15da47743
6 changed files with 23 additions and 7 deletions
|
@ -182,7 +182,7 @@ def run():
|
|||
engine.load(path.realpath(path.join(getcwd(), "qml", "eu", "ad5001", "LogarithmPlotter", "LogarithmPlotter.qml")))
|
||||
|
||||
chdir(pwd)
|
||||
if len(argv) > 0 and path.exists(argv[-1]) and argv[-1].split('.')[-1] in ['json', 'lgg', 'lpf']:
|
||||
if len(argv) > 0 and path.exists(argv[-1]) and argv[-1].split('.')[-1] in ['lpf']:
|
||||
engine.rootObjects()[0].loadDiagram(argv[-1])
|
||||
chdir(path.dirname(path.realpath(__file__)))
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ D.FileDialog {
|
|||
property bool exportMode: false
|
||||
|
||||
title: exportMode ? "Export Logarithm Plot file" : "Import Logarithm Plot file"
|
||||
nameFilters: ["Logarithm Plot File (*.lpf *.lgg)", "Old Logarithm Plot Data (*.json)", "All files (*)"]
|
||||
nameFilters: ["Logarithm Plot File (*.lpf)", "All files (*)"]
|
||||
|
||||
folder: shortcuts.documents
|
||||
selectExisting: !exportMode
|
||||
|
|
|
@ -162,7 +162,7 @@ ApplicationWindow {
|
|||
}
|
||||
|
||||
function saveDiagram(filename) {
|
||||
if(['json', 'lpf', 'lgg'].indexOf(filename.split('.')[filename.split('.').length-1]) == -1)
|
||||
if(['lpf'].indexOf(filename.split('.')[filename.split('.').length-1]) == -1)
|
||||
filename += '.lpf'
|
||||
settings.saveFilename = filename
|
||||
var objs = {}
|
||||
|
|
|
@ -54,6 +54,7 @@ class UpdateCheckerRunnable(QRunnable):
|
|||
update_available = True
|
||||
else:
|
||||
show_alert = False
|
||||
msg_text = "No update available."
|
||||
|
||||
except HTTPError as e:
|
||||
msg_text = "Could not fetch update information: Server error " + str(e.code) + "."
|
||||
|
|
|
@ -5,8 +5,6 @@
|
|||
<comment xml:lang="fr">Fichier Graphe Logarithmique</comment>
|
||||
<icon name="application-x-logarithm-plot"/>
|
||||
<glob-deleteall/>
|
||||
<glob pattern="*.json"/>
|
||||
<glob weight="60" pattern="*.lgg"/>
|
||||
<glob weight="60" pattern="*.lpf"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
||||
|
|
|
@ -8,6 +8,7 @@ Unicode True
|
|||
;--------------------------------
|
||||
;Definitions
|
||||
!define APP_NAME "LogarithmPlotter"
|
||||
!define PROG_ID "LogarithmPlotter.File.1"
|
||||
!define DEV_NAME "Ad5001"
|
||||
!define WEBSITE "https://apps.ad5001.eu/LogarithmPlotter"
|
||||
!define APP_VERSION "0.1.0.0"
|
||||
|
@ -15,6 +16,9 @@ Unicode True
|
|||
!define DESCRIPTION "Create graphs with logarithm scales."
|
||||
|
||||
!define REG_UNINSTALL "Software\Microsoft\Windows\CurrentVersion\Uninstall\LogarithmPlotter"
|
||||
!define REG_APPPATHS "Software\Microsoft\Windows\CurrentVersion\App Paths\logarithmplotter.exe"
|
||||
!define REG_LPFCLASS "Software\Classes\${PROG_ID}"
|
||||
!define REG_LPFEXT "Software\Classes\.lpf"
|
||||
|
||||
;--------------------------------
|
||||
;General description
|
||||
|
@ -171,7 +175,19 @@ Section ""
|
|||
WriteRegStr HKLM ${REG_UNINSTALL} "DisplayVersion" "${APP_VERSION}"
|
||||
WriteRegStr HKLM ${REG_UNINSTALL} "Readme" "$INSTDIR\README.md"
|
||||
WriteRegStr HKLM ${REG_UNINSTALL} "URLInfoAbout" "${WEBSITE}"
|
||||
|
||||
|
||||
; Registering application
|
||||
;WriteRegStr HKLM ${REG_APPPATHS} "" "$INSTDIR\logarithmplotter.exe"
|
||||
;WriteRegStr HKLM ${REG_APPPATHS} "SupportedProtocols" "file:"
|
||||
|
||||
; Registering mime type
|
||||
WriteRegStr HKLM ${REG_LPFCLASS} "" "Logarithm Plot File"
|
||||
WriteRegStr HKLM "${REG_LPFCLASS}\DefaultIcon" "" "$INSTDIR\logarithmplotter.exe,0" ; I'd like to put the logplotterfile icon, but this seems far too difficult to do.
|
||||
WriteRegStr HKLM "${REG_LPFCLASS}\shell\open\command" "" "$INSTDIR\logarithmplotter.exe $\"$$1$\""
|
||||
WriteRegStr HKLM "${REG_LPFCLASS}\shell\edit\command" "" "$INSTDIR\logarithmplotter.exe $\"$$1$\""
|
||||
WriteRegStr HKLM ${REG_LPFEXT} "" "${PROG_ID}"
|
||||
WriteRegStr HKLM ${REG_LPFEXT} "Content Type" "application/x-logarithm-plot"
|
||||
WriteRegStr HKLM ${REG_LPFEXT} "PerceivedType" "Application"
|
||||
SectionEnd
|
||||
|
||||
;--------------------------------
|
||||
|
@ -182,7 +198,8 @@ Section "Uninstall"
|
|||
RMDir /r "$INSTDIR"
|
||||
|
||||
Delete "$SMPROGRAMS\LogarithmPlotter.lnk"
|
||||
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\LogarithmPlotter"
|
||||
DeleteRegKey HKLM $[REG_UNINSTALL}
|
||||
DeleteRegKey HKLM $[REG_APPPATHS}
|
||||
; ;DeleteRegKey /ifempty HKCU "Software\Modern UI Test"
|
||||
;
|
||||
SectionEnd
|
||||
|
|
Loading…
Reference in a new issue