main v0.3.1
Zwarf 2022-09-14 00:50:04 +02:00
rodzic 5b3577e12b
commit 18c6c5ebc7
5 zmienionych plików z 19 dodań i 5 usunięć

Wyświetl plik

@ -5,7 +5,11 @@ Version 0.2.0:
- Improve UI to fit better on mobile devices
- UI bug fixes
Verson 0.3.0:
Version 0.3.0:
- Add location service to find users current location
- Add support for languages
- Add German translation
- Add German translation
Version 0.3.1:
- Code cleanup of the time and date selector
- Switch to geocode-glib-2.0 to remove last libsoup-2 dependency

Wyświetl plik

@ -73,6 +73,15 @@
</requires>
<releases>
<release version="0.3.1" date="2022-09-14" >
<description>
<p>Code cleanup and dependency changes</p>
<ul>
<li>Code cleanup of the time and date selector</li>
<li>Switch to geocode-glib-2.0 to remove last libsoup-2 dependency</li>
</ul>
</description>
</release>
<release version="0.3.0" date="2022-09-12" >
<description>
<p>New features have been added:</p>

Wyświetl plik

@ -1,5 +1,5 @@
project('picplanner', 'c',
version: '0.3.0',
version: '0.3.1',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2',
'c_std=gnu11',

Wyświetl plik

@ -89,6 +89,7 @@ set_user_location (GObject *source_object,
}
g_clear_object (&client);
g_clear_object (&simple);
stop_location_search (user_data);
}
/*
@ -103,7 +104,7 @@ get_user_location (GtkButton *self,
if (cancellable == NULL)
{
g_print ("Get users location...\n");
timer = g_timeout_add_seconds (10, on_timeout, NULL);
timer = g_timeout_add_seconds (30, on_timeout, NULL);
cancellable = g_cancellable_new ();
gclue_simple_new ("picplanner",
GCLUE_ACCURACY_LEVEL_EXACT,

Wyświetl plik

@ -141,7 +141,7 @@ picplanner_application_show_about (GSimpleAction *action,
gtk_show_about_dialog (window,
"logo-icon-name", "de.zwarf.picplanner",
"program-name", "PicPlanner",
"version", "0.2.0",
"version", "0.3.1",
"comments", "Plan your photographs",
"website", "https://gitlab.com/Zwarf/picplanner",
"copyright", copyright,