Skip to content

Commit a261103

Browse files
authored
Merge pull request #15 from hsbasu/devel
Update readme Update License Add Sensitivity of case fields based on case switch; closes #3 Add copyright in individual files.
2 parents 6f3eeb3 + 37ed5fe commit a261103

File tree

6 files changed

+116
-15
lines changed

6 files changed

+116
-15
lines changed

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,20 @@
1414
![Downloads](https://img.shields.io/github/downloads/hsbasu/simple-pwgen/total?label=Downloads&style=flat-square)
1515
[![GitHub release (latest by date and asset)](https://img.shields.io/github/downloads/hsbasu/simple-pwgen/1.0.3/simple-pwgen_1.0.3_all.deb?color=blue&label=Downloads%40Latest)](https://github.com/hsbasu/simple-pwgen/releases/download/1.0.3/simple-pwgen_1.0.3_all.deb)
1616

17-
Very simple Python3-based GUI application to generate random password.
17+
Very simple Python3-based GUI application to generate secure and random password.
1818

1919
### Contents
2020

21-
- [Features](#features)
22-
- [Dependencies](#dependencies)
23-
- [Installation](#how-to-build-and-install)
21+
- [Features](#features)
22+
23+
- [Dependencies](#dependencies)
24+
25+
- [Installation](#how-to-build-and-install)
26+
2427
- [Debian/Ubuntu based systems](#debianubuntu-based-systems)
28+
2529
- [Other Linux-based systems](#other-linux-based-systems)
26-
30+
2731
### Features
2832

2933
It lets an user choose:

usr/bin/simple-pwgen

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
11
#!/bin/bash
22

3+
# Copyright (C) 2021 Himadri Sekhar Basu <[email protected]>
4+
#
5+
# This file is part of simple-pwgen.
6+
#
7+
# simple-pwgen is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# simple-pwgen is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with simple-pwgen. If not, see <http://www.gnu.org/licenses/>
19+
# or write to the Free Software Foundation, Inc., 51 Franklin Street,
20+
# Fifth Floor, Boston, MA 02110-1301, USA..
21+
#
22+
# Author: Himadri Sekhar Basu <[email protected]>
23+
#
24+
325
/usr/lib/simple-pwgen/simple-pwgen.py &

usr/lib/simple-pwgen/common.py

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
#!/usr/bin/env python3
22

3+
# Copyright (C) 2021 Himadri Sekhar Basu <[email protected]>
4+
#
5+
# This file is part of simple-pwgen.
6+
#
7+
# simple-pwgen is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# simple-pwgen is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with simple-pwgen. If not, see <http://www.gnu.org/licenses/>
19+
# or write to the Free Software Foundation, Inc., 51 Franklin Street,
20+
# Fifth Floor, Boston, MA 02110-1301, USA..
21+
#
22+
# Author: Himadri Sekhar Basu <[email protected]>
23+
#
24+
325
# import the necessary modules!
426
import configparser
527
import gettext

usr/lib/simple-pwgen/simple-pwgen.py

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
#!/usr/bin/python3
22

3+
# Copyright (C) 2021 Himadri Sekhar Basu <[email protected]>
4+
#
5+
# This file is part of simple-pwgen.
6+
#
7+
# simple-pwgen is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# simple-pwgen is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with simple-pwgen. If not, see <http://www.gnu.org/licenses/>
19+
# or write to the Free Software Foundation, Inc., 51 Franklin Street,
20+
# Fifth Floor, Boston, MA 02110-1301, USA..
21+
#
22+
# Author: Himadri Sekhar Basu <[email protected]>
23+
#
24+
325
# import the necessary modules!
426
import gettext
527
import gi
@@ -168,8 +190,9 @@ def open_about(self, widget):
168190

169191
dlg.set_program_name(_("Simple Password Generator"))
170192
dlg.set_version("__DEB_VERSION__")
171-
dlg.set_comments(_("Very simple GUI based app to generate random password"))
193+
dlg.set_comments(_("Very simple Python3-based GUI application to generate secure and random password."))
172194
dlg.set_website("https://hsbasu.github.io/simple-pwgen")
195+
dlg.set_copyright("Copyright \xa9 2021 Himadri Sekhar Basu")
173196
dlg.set_authors(["Himadri Sekhar Basu <https://hsbasu.github.io>"])
174197
dlg.set_documenters(["Himadri Sekhar Basu <https://hsbasu.github.io>"])
175198
try:

usr/share/icons/hicolor/scalable/apps/simple-pwgen.svg

+24
Loading

usr/share/simple-pwgen/simple-pwgen.ui

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,37 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!-- Generated with glade 3.38.2
33
4-
Copyright (C)
4+
Copyright (C) 2021 Himadri Sekhar Basu <[email protected]>
55
6-
This file is part of .
6+
This file is part of simple-pwgen.
77
8-
is free software: you can redistribute it and/or modify
8+
simple-pwgen is free software: you can redistribute it and/or modify
99
it under the terms of the GNU General Public License as published by
1010
the Free Software Foundation, either version 3 of the License, or
1111
(at your option) any later version.
1212
13-
is distributed in the hope that it will be useful,
13+
simple-pwgen is distributed in the hope that it will be useful,
1414
but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
GNU General Public License for more details.
1717
1818
You should have received a copy of the GNU General Public License
19-
along with . If not, see <http://www.gnu.org/licenses/>.
19+
along with simple-pwgen. If not, see <http://www.gnu.org/licenses/>.
20+
21+
Author: Himadri Sekhar Basu <[email protected]>
2022
2123
-->
2224
<interface>
2325
<requires lib="gtk+" version="3.20"/>
2426
<!-- interface-license-type gplv3 -->
27+
<!-- interface-name simple-pwgen -->
28+
<!-- interface-description Very simple Python3-based GUI application to generate secure and random password. -->
29+
<!-- interface-copyright 2021 Himadri Sekhar Basu <[email protected]> -->
30+
<!-- interface-authors Himadri Sekhar Basu <[email protected]> -->
31+
<object class="GtkMenu" id="main_menu">
32+
<property name="visible">True</property>
33+
<property name="can-focus">False</property>
34+
</object>
2535
<object class="GtkWindow" id="MainWindow">
2636
<property name="can-focus">False</property>
2737
<property name="border-width">12</property>
@@ -540,8 +550,4 @@ along with . If not, see <http://www.gnu.org/licenses/>.
540550
</object>
541551
</child>
542552
</object>
543-
<object class="GtkMenu" id="main_menu">
544-
<property name="visible">True</property>
545-
<property name="can-focus">False</property>
546-
</object>
547553
</interface>

0 commit comments

Comments
 (0)