From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5A365C43334 for ; Mon, 20 Jun 2022 09:50:13 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 1376B18A1; Mon, 20 Jun 2022 11:49:21 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 1376B18A1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1655718611; bh=LzoYT/BaS36K8StZ0jDEN9cYqvtvSu9OH7NX5WCSS3w=; h=From:To:In-Reply-To:References:Subject:Date:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=rveZmVWWXlpJlWR2PXoDYD6BvjzJOn0cMO92ytZEXC0e2x2tplF35gtZ8kspdAmlO p4/WGBDPJrkANt0S1osm+v2p0JrmTPW4ITreqHf1Rm64WQTnuoqwXSpGarjtKhfjY/ MyRCv6PZ7rOPe4nCApCAZaupOmGvL+RL0eDK9iIM= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id 84600F804CF; Mon, 20 Jun 2022 11:49:20 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 669EEF800FB; Mon, 20 Jun 2022 11:49:18 +0200 (CEST) Received: from webhooks-bot.alsa-project.org (gate.perex.cz [77.48.224.242]) by alsa1.perex.cz (Postfix) with ESMTP id D558DF800FB for ; Mon, 20 Jun 2022 11:49:15 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz D558DF800FB MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit From: GitHub pull_request - opened To: alsa-devel@alsa-project.org In-Reply-To: <1655718555233776093-webhooks-bot@alsa-project.org> References: <1655718555233776093-webhooks-bot@alsa-project.org> Subject: [PATCH 00/23] add annotation to object properties Message-Id: <20220620094918.669EEF800FB@alsa1.perex.cz> Date: Mon, 20 Jun 2022 11:49:18 +0200 (CEST) X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" alsa-project/alsa-gobject pull request #77 was opened from takaswie: The gi-docgen tool requires explicit annotation for object properties to generate pages. This patchset adds missing properties for the purpose. ``` Takashi Sakamoto (23): ctl: card: add annotation to object properties ctl: card-info: add annotation to object properties card: elem-value: add annotation to object properties rawmidi: stream-pair: add annotation to object properties rawmidi: substream-info: add annotation to object properties rawmidi: substream-params: add annotation to object properties rawmidi: substream-status: add annotation to object properties hwdep: device-info: add annotation to object properties timer: device-info: add annotation to object properties timer: device-params: add annotation to object properties timer: device-status: add annotation to object properties timer: instance-info: add annotation to object properties timer: instance-params: add annotation to object properties timer: instance-status: add annotation to object properties seq: fix description of object properties in which enumerations are available seq: client-info: add annotation to object properties seq: client-pool: add annotation to object properties seq: port-info: fix tag indentation seq: queue-info: add annotation to object properties seq: queue-status: add annotation to object properties seq: queue-tempo: add annotation to object properties seq: system-info: add annotation to object properties seq: user-client: add annotation to object properties src/ctl/card-info.c | 37 ++++++++++++++++++- src/ctl/card.c | 12 ++++++- src/ctl/elem-value.c | 5 +++ src/hwdep/device-info.c | 34 +++++++++++++++--- src/rawmidi/stream-pair.c | 7 +++- src/rawmidi/substream-info.c | 66 +++++++++++++++++++++++++++++----- src/rawmidi/substream-params.c | 22 +++++++++--- src/rawmidi/substream-status.c | 10 ++++++ src/seq/client-info.c | 59 ++++++++++++++++++++++++++---- src/seq/client-pool.c | 52 ++++++++++++++++++++------- src/seq/port-info.c | 2 +- src/seq/query.c | 4 +-- src/seq/queue-info.c | 28 ++++++++++++--- src/seq/queue-status.c | 19 ++++++++-- src/seq/queue-tempo.c | 19 ++++++++-- src/seq/queue-timer-common.c | 2 +- src/seq/remove-filter.c | 19 +++++----- src/seq/system-info.c | 30 ++++++++++++++++ src/seq/user-client.c | 19 ++++++---- src/timer/device-info.c | 46 ++++++++++++++++++++++-- src/timer/device-params.c | 10 ++++++ src/timer/device-status.c | 15 ++++++++ src/timer/instance-info.c | 27 +++++++++++++- src/timer/instance-params.c | 18 ++++++++-- src/timer/instance-status.c | 20 +++++++++++ 25 files changed, 506 insertions(+), 76 deletions(-) ``` Request URL : https://github.com/alsa-project/alsa-gobject/pull/77 Patch URL : https://github.com/alsa-project/alsa-gobject/pull/77.patch Repository URL: https://github.com/alsa-project/alsa-gobject