Merge pull request 'fixed wrong status when upgrading launched application to root' (#65) from YanTheKaller/ubl-settings-manager:master into master

Reviewed-on: #65
pull/75/head v2.5
Dmitry Razumov 2 years ago
commit de7cf2ed36

3
.gitignore vendored

@ -18,4 +18,5 @@ ui/
ubl-settings-manager_ru.pos
ubl-settings-manager_ru.po~
deleted
compile/
compile/
.install.sh

@ -24,6 +24,11 @@ init:
@echo "Initialize ..."; \
if [ -d ".git" ]; then \
LATEST_TAG=$$(git describe --abbrev=0 --tags | sed 's/^v//'); \
if [ -z "$${LATEST_TAG}" ]; \
then \
LATEST_TAG=$$"0.0"; \
echo "$${LATEST_TAG} is empty"; \
fi; \
else \
LATEST_TAG="Development"; \
fi; \

@ -60,6 +60,7 @@ void on_plug_removed(GtkSocket* self, actionWidgets *widgets){
gtk_widget_destroy(widgets->socketbutton);
if(widgets->ThirdSocket)
gtk_widget_destroy(widgets->ThirdSocket);
on_backToSettingsButton_clicked(widgets->ButtonBackToMain,widgets);
}
void on_Item_activated(GtkIconView* self, GtkTreePath* path, actionWidgets *applist){

Loading…
Cancel
Save