New upstream version 3.54.3
This commit is contained in:
@ -1,6 +1,19 @@
|
||||
stages:
|
||||
- test
|
||||
- pages
|
||||
- tarball
|
||||
- release
|
||||
|
||||
variables:
|
||||
TARBALL_PATH_PREFIX: ${CI_PROJECT_NAME}-${CI_COMMIT_TAG}
|
||||
TARBALL_NAME: ${TARBALL_PATH_PREFIX}.tar.xz
|
||||
|
||||
include:
|
||||
- component: gitlab.gnome.org/GNOME/citemplates/release-service@master
|
||||
inputs:
|
||||
job-stage: release
|
||||
dist-job-name: "tarball"
|
||||
tarball-artifact-path: "${TARBALL_NAME}"
|
||||
|
||||
flatpak:
|
||||
image: "quay.io/gnome_infrastructure/gnome-runtime-images:gnome-master"
|
||||
@ -95,3 +108,20 @@ pages:
|
||||
- public
|
||||
rules:
|
||||
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
||||
|
||||
tarball:
|
||||
stage: tarball
|
||||
image: "quay.io/gnome_infrastructure/gnome-runtime-images:gnome-master"
|
||||
dependencies:
|
||||
- flatpak
|
||||
allow_failure: false
|
||||
script:
|
||||
- git config --global --add safe.directory `pwd`
|
||||
- git archive --prefix=${TARBALL_PATH_PREFIX}/ HEAD | xz -z > ${TARBALL_NAME}
|
||||
artifacts:
|
||||
name: "${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
|
||||
expire_in: 14 days
|
||||
paths:
|
||||
- "${TARBALL_NAME}"
|
||||
rules:
|
||||
- if: $CI_COMMIT_TAG && $CI_COMMIT_REF_PROTECTED
|
||||
|
||||
@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.15)
|
||||
cmake_policy(VERSION 3.15)
|
||||
|
||||
project(evolution
|
||||
VERSION 3.54.2
|
||||
VERSION 3.54.3
|
||||
LANGUAGES C)
|
||||
set(PROJECT_BUGREPORT "https://gitlab.gnome.org/GNOME/evolution/issues/")
|
||||
set(PROJECT_URL "https://gitlab.gnome.org/GNOME/evolution/-/wikis/home")
|
||||
|
||||
6
NEWS
6
NEWS
@ -1,3 +1,9 @@
|
||||
Evolution 3.54.3 2025-01-03
|
||||
---------------------------
|
||||
|
||||
Miscellaneous:
|
||||
ESourceSelector: Source child drawn in too thin font
|
||||
|
||||
Evolution 3.54.2 2024-11-22
|
||||
---------------------------
|
||||
|
||||
|
||||
@ -723,6 +723,7 @@ source_selector_load_sources_status (ESourceSelector *selector,
|
||||
gtk_tree_store_set (tree_store, &child,
|
||||
COLUMN_NAME, sdc->display_name,
|
||||
COLUMN_CHILD_DATA, sdc->child_data,
|
||||
COLUMN_WEIGHT, PANGO_WEIGHT_NORMAL,
|
||||
-1);
|
||||
|
||||
if (sdc->selected) {
|
||||
@ -4187,6 +4188,7 @@ e_source_selector_add_source_child (ESourceSelector *selector,
|
||||
gtk_tree_store_set (tree_store, &child,
|
||||
COLUMN_NAME, display_name,
|
||||
COLUMN_CHILD_DATA, child_data,
|
||||
COLUMN_WEIGHT, PANGO_WEIGHT_NORMAL,
|
||||
-1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user