main v0.5.0
Zwarf 2023-11-14 00:25:35 +01:00
rodzic 618ab33c46
commit a5ec6988c2
5 zmienionych plików z 33 dodań i 17 usunięć

Wyświetl plik

@ -25,7 +25,12 @@ Version 0.4.0:
- Dependency update
- Switch to GNOME 44 runtime
Version 0.4.1:
Version 0.5.0:
- Reduced input lag on touch screens significantly
- Complet UI redesign for a more compact view
- Add French translation
- Switch to the GNOME 45 runtime
- Rotate the information on the map if the map is rotated
- Fix a double scrolling bug which caused the map to be unresponsive
- App is now recognized as mobile friendly

Wyświetl plik

@ -79,13 +79,17 @@
</requires>
<releases>
<release version="0.4.1" date="2023-11-13" >
<release version="0.5.0" date="2023-11-14" >
<description>
<p>UI redesign, adding French and better touch support</p>
<ul>
<li>Reduced input lag on touch screens significantly</li>
<li>Complet UI redesign for a more compact view</li>
<li>Add French translation</li>
<li>Switch to the GNOME 45 runtime</li>
<li>Rotate the information on the map if the map is rotated</li>
<li>Fix a double scrolling bug which caused the map to be unresponsive</li>
<li>App is now recognized as mobile friendly</li>
</ul>
</description>
</release>

Wyświetl plik

@ -1,7 +1,7 @@
{
"app-id" : "de.zwarf.picplanner",
"runtime" : "org.gnome.Platform",
"runtime-version" : "44",
"runtime-version" : "45",
"sdk" : "org.gnome.Sdk",
"command" : "picplanner",
"finish-args" : [
@ -51,16 +51,14 @@
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/libgweather.git",
"commit" : "699cfb7e114acba4e066ebda9a51e6820da3daa7"
"commit" : "04da97b8f86b1d10540f7d907841bfb5fde6bd2d"
}
]
},
{
"name" : "protobuf",
"buildsystem" : "autotools",
"config-opts" : [
"DIST_LANG=cpp"
],
"config-opts": [ "DIST_LANG=cpp" ],
"cleanup" : [
"/bin/protoc*",
"/lib/libprotoc*",
@ -68,9 +66,9 @@
],
"sources" : [
{
"type" : "git",
"url" : "https://github.com/protocolbuffers/protobuf.git",
"commit" : "54489e95e01882407f356f83c9074415e561db00"
"type" : "archive",
"url" : "https://github.com/protocolbuffers/protobuf/releases/download/v3.17.3/protobuf-all-3.17.3.tar.gz",
"sha256" : "77ad26d3f65222fd96ccc18b055632b0bfedf295cb748b712a98ba1ac0b704b2"
}
]
},
@ -79,12 +77,13 @@
"buildsystem" : "autotools",
"sources" : [
{
"type" : "git",
"url" : "https://github.com/protobuf-c/protobuf-c.git",
"commit" : "abc67a11c6db271bedbb9f58be85d6f4e2ea8389"
"type" : "archive",
"url" : "https://github.com/protobuf-c/protobuf-c/releases/download/v1.4.0/protobuf-c-1.4.0.tar.gz",
"sha256" : "26d98ee9bf18a6eba0d3f855ddec31dbe857667d269bc0b6017335572f85bbcb"
}
]
},
{
"name" : "libshumate",
"buildsystem" : "meson",
@ -98,7 +97,7 @@
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/libshumate.git",
"commit" : "a79548ba6e0a6043b3dcfdd44d61abe1869ddde9"
"commit" : "eeb257ab8cfca9133ec2e7da739d3ce815be7067"
}
]
},
@ -115,7 +114,7 @@
{
"type" : "git",
"url" : "https://gitlab.freedesktop.org/geoclue/geoclue.git",
"commit" : "bbfb6289dedb88cb8155d9f6868787d5432e1f90"
"commit" : "8a24f60969d4c235d9918796c38a6a9c42e10131"
}
]
},

Wyświetl plik

@ -143,7 +143,7 @@ picplanner_application_show_about (GSimpleAction *action,
"application-icon", "de.zwarf.picplanner",
"application-name", "PicPlanner",
"developer-name", "Zwarf",
"version", "0.4.1",
"version", "0.5.0",
"website", "https://gitlab.com/Zwarf/picplanner",
"issue-url", "https://gitlab.com/Zwarf/picplanner/-/issues/new",
"copyright", copyright,

Wyświetl plik

@ -23,12 +23,18 @@
<template class="PicplannerOverview" parent="GtkBox">
<child>
<object class="GtkScrolledWindow">
<object class="GtkBox">
<property name="orientation">vertical</property>
<property name="vexpand">true</property>
<property name="hexpand">true</property>
<property name="halign">fill</property>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<property name="vexpand">true</property>
<property name="hexpand">true</property>
<property name="halign">fill</property>
<child>
<object class="AdwClamp" id="basic_information">
@ -296,11 +302,13 @@
<child>
<object class="AdwBin">
<property name="hexpand">true</property>
<property name="vexpand">true</property>
<property name="halign">fill</property>
<child>
<object class="ShumateSimpleMap" id="map">
<property name="width-request">300</property>
<property name="hexpand">true</property>
<property name="vexpand">true</property>
<property name="halign">fill</property>
</object>
</child>