Update version, NEWS, copyright
Sean Davis
9 years ago
0 | |
17.02.2014, Version 0.1
|
|
0 |
20.03.2014, Version 1.0
|
1 | 1 |
|
2 | 2 |
- Initial release.
|
|
3 |
⏎
|
0 | |
#!/usr/bin/python3
|
|
0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
1 | 16 |
|
2 | 17 |
import sys
|
3 | 18 |
import os
|
|
0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
0 | 16 |
|
1 | 17 |
from collections import namedtuple
|
2 | 18 |
import configparser
|
|
0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
0 | 16 |
|
1 | 17 |
from collections import namedtuple
|
2 | 18 |
from gi.repository import Gtk, GObject
|
|
0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
0 | 16 |
|
1 | 17 |
from glob import iglob
|
2 | 18 |
import os
|
|
0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
0 | 16 |
|
1 | 17 |
from builtins import isinstance
|
2 | 18 |
from collections import namedtuple, OrderedDict
|
0 | 0 |
#!/usr/bin/env python3
|
1 | |
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
2 | 16 |
|
3 | 17 |
def main():
|
4 | 18 |
from gi.repository import Gtk
|
|
0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
0 | 16 |
|
1 | 17 |
import locale
|
2 | 18 |
import os
|
0 | 0 |
#!/usr/bin/env python3
|
|
1 |
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
|
2 |
# LightDM GTK Greeter Settings
|
|
3 |
# Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
|
|
4 |
#
|
|
5 |
# This program is free software: you can redistribute it and/or modify it
|
|
6 |
# under the terms of the GNU General Public License version 3, as published
|
|
7 |
# by the Free Software Foundation.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful, but
|
|
10 |
# WITHOUT ANY WARRANTY; without even the implied warranties of
|
|
11 |
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
|
12 |
# PURPOSE. See the GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License along
|
|
15 |
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
1 | 16 |
|
2 | 17 |
import os
|
3 | 18 |
import sys
|
|
42 | 57 |
|
43 | 58 |
DistUtilsExtra.auto.setup(
|
44 | 59 |
name='lightdm-gtk-greeter-settings',
|
45 | |
version='0.3',
|
|
60 |
version='1.0',
|
46 | 61 |
license='GPL-3',
|
47 | 62 |
author='Andrew P.',
|
48 | 63 |
author_email='pan.pav.7c5@gmail.com',
|