Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yad
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
yad
Commits
05dd3422
Commit
05dd3422
authored
Jun 19, 2024
by
Victor Ananjevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update copyright years
parent
a4efc687
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
29 additions
and
29 deletions
+29
-29
yad.1
data/yad.1
+1
-1
about.c
src/about.c
+2
-2
app.c
src/app.c
+1
-1
browser.c
src/browser.c
+1
-1
calendar.c
src/calendar.c
+1
-1
color.c
src/color.c
+1
-1
cpicker.c
src/cpicker.c
+1
-1
dnd.c
src/dnd.c
+1
-1
entry.c
src/entry.c
+1
-1
file.c
src/file.c
+1
-1
font.c
src/font.c
+1
-1
html.c
src/html.c
+1
-1
icons.c
src/icons.c
+1
-1
list.c
src/list.c
+1
-1
main.c
src/main.c
+1
-1
notebook.c
src/notebook.c
+1
-1
notification.c
src/notification.c
+1
-1
option.c
src/option.c
+1
-1
paned.c
src/paned.c
+1
-1
picture.c
src/picture.c
+1
-1
print.c
src/print.c
+1
-1
progress.c
src/progress.c
+1
-1
scale.c
src/scale.c
+1
-1
text.c
src/text.c
+1
-1
tools.c
src/tools.c
+1
-1
util.c
src/util.c
+1
-1
yad-settings.in
src/yad-settings.in
+1
-1
yad.h
src/yad.h
+1
-1
No files found.
data/yad.1
View file @
05dd3422
.TH YAD 1 "
October 2023
" "yad" "User Commands"
.TH YAD 1 "
June 2024
" "yad" "User Commands"
.SH NAME
yad \- display GTK+ dialogs from shell scripts or command-line
...
...
src/about.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
@@ -143,7 +143,7 @@ yad_about (void)
g_object_set
(
G_OBJECT
(
dialog
),
"name"
,
PACKAGE_NAME
,
"version"
,
PACKAGE_VERSION
,
"copyright"
,
"Copyright
\xc2\xa9
2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>"
,
"copyright"
,
"Copyright
\xc2\xa9
2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>"
,
"comments"
,
comments
,
"authors"
,
authors
,
"website"
,
PACKAGE_URL
,
...
...
src/app.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/browser.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2010-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2010-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <config.h>
...
...
src/calendar.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <errno.h>
...
...
src/color.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <errno.h>
...
...
src/cpicker.c
View file @
05dd3422
...
...
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2020-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2020-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
/* This code getted from deprecated GtkColorSelection widget (gtk+-3.24.33) */
...
...
src/dnd.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/entry.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/file.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/font.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/html.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <limits.h>
...
...
src/icons.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/list.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <string.h>
...
...
src/main.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <sys/types.h>
...
...
src/notebook.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <sys/types.h>
...
...
src/notification.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <sys/stat.h>
...
...
src/option.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <stdlib.h>
...
...
src/paned.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <sys/types.h>
...
...
src/picture.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/print.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <sys/types.h>
...
...
src/progress.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <stdio.h>
...
...
src/scale.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include "yad.h"
...
...
src/text.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <pango/pango.h>
...
...
src/tools.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2019-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2019-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#include <config.h>
...
...
src/util.c
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#ifndef _GNU_SOURCE
...
...
src/yad-settings.in
View file @
05dd3422
...
...
@@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License along with
# YAD. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright (C) 2021-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
# Copyright (C) 2021-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
#
TEXTDOMAIN
=
@GETTEXT_PACKAGE@
...
...
src/yad.h
View file @
05dd3422
...
...
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with YAD. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2008-202
3
, Victor Ananjevsky <victor@sanana.kiev.ua>
* Copyright (C) 2008-202
4
, Victor Ananjevsky <victor@sanana.kiev.ua>
*/
#ifndef _YAD_H_
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment