Compare commits
No commits in common. "f98852c336e7d808440ec09987b7d29ac19d229b" and "136ac4c7bc960fcaeb5bb14c54e6b20a599ff28a" have entirely different histories.
f98852c336
...
136ac4c7bc
4 changed files with 55 additions and 54 deletions
|
@ -163,7 +163,8 @@ Popup {
|
||||||
text: qsTranslate('settingCategory', modelData)
|
text: qsTranslate('settingCategory', modelData)
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
settingView.modelName = modelData
|
settingView.model = Modules.Preferences.categories[modelData]
|
||||||
|
settingView.name = text
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -202,13 +203,13 @@ Popup {
|
||||||
clip: true
|
clip: true
|
||||||
width: 500
|
width: 500
|
||||||
spacing: 10
|
spacing: 10
|
||||||
model: Modules.Preferences.categories[modelName]
|
model: Modules.Preferences.categories.general
|
||||||
anchors {
|
anchors {
|
||||||
top: parent.top
|
top: parent.top
|
||||||
bottom: parent.bottom
|
bottom: parent.bottom
|
||||||
}
|
}
|
||||||
ScrollBar.vertical: ScrollBar { }
|
ScrollBar.vertical: ScrollBar { }
|
||||||
property string modelName: 'general'
|
property string name: qsTranslate('settingCategory', 'general')
|
||||||
|
|
||||||
|
|
||||||
header: Text {
|
header: Text {
|
||||||
|
@ -216,7 +217,7 @@ Popup {
|
||||||
font.pixelSize: 32
|
font.pixelSize: 32
|
||||||
height: 48
|
height: 48
|
||||||
color: sysPalette.windowText
|
color: sysPalette.windowText
|
||||||
text: qsTranslate('settingCategory', settingView.modelName)
|
text: settingView.name
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: bottomSeparator
|
id: bottomSeparator
|
||||||
|
@ -232,20 +233,20 @@ Popup {
|
||||||
delegate: Component {
|
delegate: Component {
|
||||||
Loader {
|
Loader {
|
||||||
width: settingView.width * 2 / 3
|
width: settingView.width * 2 / 3
|
||||||
property var setting: Modules.Preferences.categories[settingView.modelName][index]
|
property var setting: modelData
|
||||||
sourceComponent: {
|
sourceComponent: {
|
||||||
if(setting.type === "bool")
|
if(setting instanceof S.BoolSetting)
|
||||||
return boolSettingComponent
|
return boolSettingComponent
|
||||||
else if(setting.type === "enum")
|
else if(setting instanceof S.EnumIntSetting)
|
||||||
return enumIntSettingComponent
|
return enumIntSettingComponent
|
||||||
else if(setting.type === "number")
|
else if(setting instanceof S.NumberSetting)
|
||||||
return numberSettingComponent
|
return numberSettingComponent
|
||||||
else if(setting.type === "expression")
|
else if(setting instanceof S.ExpressionSetting)
|
||||||
return expressionSettingComponent
|
return expressionSettingComponent
|
||||||
else if(setting.type === "string")
|
else if(setting instanceof S.StringSetting)
|
||||||
return stringSettingComponent
|
return stringSettingComponent
|
||||||
else
|
else
|
||||||
console.log('Unknown setting type!', setting.constructor.name, setting.constructor)
|
console.log('Unknown setting type!', modelData.constructor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -149,13 +149,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.5.0/logarithmplotter-v0.5.0-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.5.0/logarithmplotter-v0.5.0-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.5.0/LogarithmPlotter-v0.5.0-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.5.0/LogarithmPlotter-v0.5.0-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.5.0/logarithmplotter-0.5.0.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.5.0/logarithmplotter-0.5.0.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -198,13 +198,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.4.0/logarithmplotter-v0.4.0-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.4.0/logarithmplotter-v0.4.0-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.4.0/LogarithmPlotter-v0.4.0-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.4.0/LogarithmPlotter-v0.4.0-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.4.0/logarithmplotter-0.4.0.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.4.0/logarithmplotter-0.4.0.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -264,13 +264,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.3.0/logarithmplotter-v0.3.0-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.3.0/logarithmplotter-v0.3.0-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.3.0/LogarithmPlotter-v0.3.0-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.3.0/LogarithmPlotter-v0.3.0-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.3.0/logarithmplotter-0.3.0.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.3.0/logarithmplotter-0.3.0.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -317,13 +317,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.2.0/logarithmplotter-v0.2.0-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.2.0/logarithmplotter-v0.2.0-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.2.0/LogarithmPlotter-v0.2.0-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.2.0/LogarithmPlotter-v0.2.0-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.2.0/logarithmplotter-0.2.0.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.2.0/logarithmplotter-0.2.0.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -362,13 +362,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.8/logarithmplotter-v0.1.8-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.8/logarithmplotter-v0.1.8-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.8/LogarithmPlotter-v0.1.8-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.8/LogarithmPlotter-v0.1.8-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.8/logarithmplotter-0.1.8.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.8/logarithmplotter-0.1.8.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -418,13 +418,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.7/logarithmplotter-v0.1.7-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.7/logarithmplotter-v0.1.7-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.7/LogarithmPlotter-v0.1.7-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.7/LogarithmPlotter-v0.1.7-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.7/logarithmplotter-0.1.7.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.7/logarithmplotter-0.1.7.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -459,13 +459,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.6/logarithmplotter-v0.1.6-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.6/logarithmplotter-v0.1.6-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.6/LogarithmPlotter-v0.1.6-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.6/LogarithmPlotter-v0.1.6-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.6/LogarithmPlotter-v0.1.6.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.6/LogarithmPlotter-v0.1.6.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -489,13 +489,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.5/logarithmplotter-v0.1.5-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.5/logarithmplotter-v0.1.5-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.5/LogarithmPlotter-v0.1.5-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.5/LogarithmPlotter-v0.1.5-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.5/LogarithmPlotter-v0.1.5.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.5/LogarithmPlotter-v0.1.5.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -520,13 +520,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.4/logarithmplotter-v0.1.4-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.4/logarithmplotter-v0.1.4-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.4/LogarithmPlotter-v0.1.4-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.4/LogarithmPlotter-v0.1.4-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.4/LogarithmPlotter-v0.1.4.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.4/LogarithmPlotter-v0.1.4.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -541,13 +541,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.3/logarithmplotter-v0.1.3-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.3/logarithmplotter-v0.1.3-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.3/LogarithmPlotter-v0.1.3-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.3/LogarithmPlotter-v0.1.3-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.3/LogarithmPlotter-v0.1.3.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.3/LogarithmPlotter-v0.1.3.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
@ -565,13 +565,13 @@
|
||||||
</description>
|
</description>
|
||||||
<artifacts>
|
<artifacts>
|
||||||
<artifact type="binary" platform="x86_64-windows-any">
|
<artifact type="binary" platform="x86_64-windows-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.2/logarithmplotter-v0.1.2-setup.exe</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.2/logarithmplotter-v0.1.2-setup.exe</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="binary" platform="x86_64-macos-any">
|
<artifact type="binary" platform="x86_64-macos-any">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.2/LogarithmPlotter-v0.1.2-setup.dmg</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.2/LogarithmPlotter-v0.1.2-setup.dmg</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact type="source">
|
<artifact type="source">
|
||||||
<location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.2/LogarithmPlotter-v0.1.2.tar.gz</location>
|
<location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v0.1.2/LogarithmPlotter-v0.1.2.tar.gz</location>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
</release>
|
</release>
|
||||||
|
|
|
@ -11,13 +11,13 @@ BEGIN {
|
||||||
print " </description>"
|
print " </description>"
|
||||||
print " <artifacts>"
|
print " <artifacts>"
|
||||||
print " <artifact type=\"binary\" platform=\"x86_64-windows-any\">"
|
print " <artifact type=\"binary\" platform=\"x86_64-windows-any\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-v"version"-setup.exe</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-v"version"-setup.exe</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " <artifact type=\"binary\" platform=\"x86_64-macos-any\">"
|
print " <artifact type=\"binary\" platform=\"x86_64-macos-any\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/LogarithmPlotter-v"version"-setup.dmg</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/LogarithmPlotter-v"version"-setup.dmg</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " <artifact type=\"source\">"
|
print " <artifact type=\"source\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-"version".tar.gz</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-"version".tar.gz</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " </artifacts>"
|
print " </artifacts>"
|
||||||
print " </release>"
|
print " </release>"
|
||||||
|
@ -58,13 +58,13 @@ BEGIN {
|
||||||
print " </description>"
|
print " </description>"
|
||||||
print " <artifacts>"
|
print " <artifacts>"
|
||||||
print " <artifact type=\"binary\" platform=\"x86_64-windows-any\">"
|
print " <artifact type=\"binary\" platform=\"x86_64-windows-any\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-v"version"-setup.exe</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-v"version"-setup.exe</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " <artifact type=\"binary\" platform=\"x86_64-macos-any\">"
|
print " <artifact type=\"binary\" platform=\"x86_64-macos-any\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/LogarithmPlotter-v"version"-setup.dmg</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/LogarithmPlotter-v"version"-setup.dmg</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " <artifact type=\"source\">"
|
print " <artifact type=\"source\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-"version".tar.gz</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-"version".tar.gz</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " </artifacts>"
|
print " </artifacts>"
|
||||||
print " </release>"
|
print " </release>"
|
||||||
|
@ -74,13 +74,13 @@ END {
|
||||||
print " </description>"
|
print " </description>"
|
||||||
print " <artifacts>"
|
print " <artifacts>"
|
||||||
print " <artifact type=\"binary\" platform=\"x86_64-windows-any\">"
|
print " <artifact type=\"binary\" platform=\"x86_64-windows-any\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-v"version"-setup.exe</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-v"version"-setup.exe</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " <artifact type=\"binary\" platform=\"x86_64-macos-any\">"
|
print " <artifact type=\"binary\" platform=\"x86_64-macos-any\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/LogarithmPlotter-v"version"-setup.dmg</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/LogarithmPlotter-v"version"-setup.dmg</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " <artifact type=\"source\">"
|
print " <artifact type=\"source\">"
|
||||||
print " <location>https://artifacts.ad5001.eu/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-"version".tar.gz</location>"
|
print " <location>https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/logarithmplotter/v"version"/logarithmplotter-"version".tar.gz</location>"
|
||||||
print " </artifact>"
|
print " </artifact>"
|
||||||
print " </artifacts>"
|
print " </artifacts>"
|
||||||
print " </release>"
|
print " </release>"
|
||||||
|
|
Loading…
Reference in a new issue