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
a7356eaf
Commit
a7356eaf
authored
Dec 15, 2022
by
Victor Ananjevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update copyright notice
parent
0c764c6d
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
27 additions
and
27 deletions
+27
-27
about.c
src/about.c
+3
-3
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
form.c
src/form.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
tools.c
src/tools.c
+1
-1
util.c
src/util.c
+1
-1
No files found.
src/about.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
@@ -92,7 +92,7 @@ yad_about (void)
GtkWidget
*
dialog
;
const
gchar
*
const
authors
[]
=
{
"Victor Ananjevsky <
ananasik@gmail.com
>"
,
"Victor Ananjevsky <
victor@sanana.kiev.ua
>"
,
NULL
};
const
gchar
*
translators
=
N_
(
"translator-credits"
);
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>"
,
"copyright"
,
"Copyright
\xc2\xa9
2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>"
,
"comments"
,
comments
,
"authors"
,
authors
,
"website"
,
PACKAGE_URL
,
...
...
src/app.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/browser.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2010-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <config.h>
...
...
src/calendar.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <errno.h>
...
...
src/color.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <errno.h>
...
...
src/cpicker.c
View file @
a7356eaf
...
...
@@ -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-2022, Victor Ananjevsky <
ananasik@gmail.com
>
* Copyright (C) 2020-2022, Victor Ananjevsky <
victor@sanana.kiev.ua
>
*/
/* This code getted from deprecated GtkColorSelection widget (gtk+-3.24.33) */
...
...
src/dnd.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/entry.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/file.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/font.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/form.c
View file @
a7356eaf
...
...
@@ -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-2020, Victor Ananjevsky <
ananasik@gmail.com
>
* Copyright (C) 2008-2020, Victor Ananjevsky <
victor@sanana.kiev.ua
>
*/
#include <ctype.h>
...
...
src/html.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <limits.h>
...
...
src/icons.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/list.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <string.h>
...
...
src/main.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <sys/types.h>
...
...
src/notebook.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <sys/types.h>
...
...
src/notification.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <sys/stat.h>
...
...
src/option.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <stdlib.h>
...
...
src/paned.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <sys/types.h>
...
...
src/picture.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/print.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <sys/types.h>
...
...
src/progress.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <stdio.h>
...
...
src/scale.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include "yad.h"
...
...
src/tools.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2019-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#include <config.h>
...
...
src/util.c
View file @
a7356eaf
...
...
@@ -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
1, Victor Ananjevsky <ananasik@gmail.com
>
* Copyright (C) 2008-202
2, Victor Ananjevsky <victor@sanana.kiev.ua
>
*/
#ifndef _GNU_SOURCE
...
...
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