Skip to content

Commit 9fba42b

Browse files
author
clearkimura
authored
Pre412 (#122)
* Fixed desktop entry 'Version=' refers to Version of Desktop Entry Specifications (see https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html), and not the version of Customizer itself. Note that "Entries that confirm with this version of the specification should use 1.0." Sorted most important fields according to example specification for clarity (Version, Type, Name). * Fixed typo In line 26, revised from 'does not exists' to 'does not exist'. * Fixed typo In line 24, revised from 'ISO does not exists' to 'ISO does not exist'. * Fixed typo In line 26, revised from 'Allwoing' to 'Allowing'. * Fixed typo and lettercase In line 55, revised 'does not exists' to 'does not exist'; Line 62 and 64, revised 'this mean that' to 'this means'; Line 211, revised 'Compressed Filesystem' to 'compressed filesystem' to match sentence style in following line 218 'filesystem size'. * Fixed typo In line 22, revised from 'avaialable' to 'available'. * Fixed minor bug The error messages were not being displayed; This fix is based on [this pull request on forked repo](b2020fd) by wjwwood. In line 48, revised from u'' to u'{}' instead of proposed u'{0}' to standardize code style in old stable repo (Both have been tested working in 14.04 host system). * Update Contributors Added 'wjwwood' who found a bug that cause error messages not being displayed. No changes made to hardcoded list in GUI, because 'Contributors' file is the original and up to date listing. * Update to version 4.1.2 * Update ChangeLog
1 parent 181b479 commit 9fba42b

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
lines changed

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Customizer v4.1.2
2+
+ Implemented first 'proper' update by interim maintainer @clearkimura
3+
+ Initial commit based on code review (issue #119, ongoing)
4+
* Updated Contributors (latest listing as August 2016)
5+
* Fixed minor bug that cause error messages not being displayed (kamilion@b2020fd)
6+
* Fixed various typos in src/* files
7+
* Fixed desktop entry according to spec
8+
9+
-- clearkimura <[email protected]> Sat, 10 Sep 2016 08:45:08 UTC
10+
111
## Customizer v4.1.1 (as commit 207cad4)
212
* Updated README.md
313
* Updated Contributors (latest listing as March 2016)

Contributors

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ unknown <Shiki@prive-cc8aeae9a.(none)>
2828

2929
**Git issues and pull requests**
3030

31-
abrsdk, AndrieVorster, AwlsomeAlex, aymanim, bisrael8191, bkkcoins^, bmix, brylie, carlossoy, confido117, elacheche, fsfarah, GlassSources, gmstyle, Gubolin, gururea, hrasadi, Israphel, jmelton98, kalabantas, kamilion, kerroncheddie, kovica, luzam, LYF610400210, magowiz, mbnoimi, minwook-shin, mitsuzero, optrusty, OsdKnights, pguth, porst17, psycato, ranseyer, Rdrit, ShvonderSiN, ss4, sweeneyk, sylviette, thomasstevenson, tienvx, UriHerrera, wheatgluten, yassen-itlabs, zero0nee, zxuser,
31+
abrsdk, AndrieVorster, AwlsomeAlex, aymanim, bisrael8191, bkkcoins^, bmix, brylie, carlossoy, confido117, elacheche, fsfarah, GlassSources, gmstyle, Gubolin, gururea, hrasadi, Israphel, jmelton98, kalabantas, kamilion, kerroncheddie, kovica, luzam, LYF610400210, magowiz, mbnoimi, minwook-shin, mitsuzero, optrusty, OsdKnights, pguth, porst17, psycato, ranseyer, Rdrit, ShvonderSiN, ss4, sweeneyk, sylviette, thomasstevenson, tienvx, UriHerrera, wheatgluten, wjwwood, yassen-itlabs, zero0nee, zxuser,
3232

3333
**Wiki contributors**
3434

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 4.1.1 ($(GIT_VERSION))
1+
VERSION = 4.1.2 ($(GIT_VERSION))
22
GIT_VERSION = $(shell $(GIT) rev-parse --short HEAD || echo stable)
33

44
DESTDIR =

data/customizer.desktop.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[Desktop Entry]
2+
Version=1.0
3+
Type=Application
24
Name=Customizer
3-
Version=4.1.0
45
Exec=@ELEVATOR@ @PREFIX@/sbin/customizer-gui
56
Comment=Ubuntu based LiveCD ISO images remastering tool
67
Icon=@PREFIX@/share/customizer/logo.png
7-
Type=Application
88
Terminal=false
99
StartupNotify=true
10-
Categories=System;
10+
Categories=System;

src/actions/rebuild.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ def main():
5252
message.sub_info('Doing sanity checks')
5353
lsb_file = misc.join_paths(config.FILESYSTEM_DIR, 'etc/lsb-release')
5454
if not os.path.isfile(lsb_file):
55-
raise(message.exception(lsb_file + ' does not exists'))
55+
raise(message.exception(lsb_file + ' does not exist'))
5656

5757
isolinux_dir = misc.join_paths(config.ISO_DIR, 'isolinux')
5858
if not os.path.isdir(isolinux_dir):
5959
raise(message.exception(isolinux_dir + ' does not exist'))
6060

6161
if misc.search_file('999:999', misc.join_paths(config.FILESYSTEM_DIR, 'etc/passwd')):
62-
raise(message.exception('User with UID 999 exists, this mean that automatic login will fail'))
62+
raise(message.exception('User with UID 999 exists, this means automatic login will fail'))
6363
elif misc.search_file('999:999', misc.join_paths(config.FILESYSTEM_DIR, 'etc/group')):
64-
raise(message.exception('Group with GID 999 exists, this mean that automatic login will fail'))
64+
raise(message.exception('Group with GID 999 exists, this means automatic login will fail'))
6565

6666
casper_dir = misc.join_paths(config.ISO_DIR, 'casper')
6767
if not os.path.isdir(casper_dir):
@@ -208,7 +208,7 @@ def main():
208208
message.sub_info('SquashFS Compression parameters', compression_parameters)
209209

210210
# Create the compressed filesystem
211-
message.sub_info('Creating SquashFS Compressed Filesystem')
211+
message.sub_info('Creating SquashFS compressed filesystem')
212212
make_squash_fs = ('mksquashfs', config.FILESYSTEM_DIR, \
213213
misc.join_paths(config.ISO_DIR, 'casper/filesystem.squashfs'), \
214214
'-wildcards', '-no-recovery', '-noappend', \

src/actions/xnest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def main():
1919
message.sub_debug('Session detected', xsession)
2020

2121
if not xsession:
22-
raise(message.exception('No session avaialable'))
22+
raise(message.exception('No session available'))
2323

2424
# FIXME: race condition between session and Xephyr - if session
2525
# starts before Xephyr it fails saying it does not find the DISPLAY

src/gui.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def msg_warning(msg):
4545
QtGui.QMessageBox.warning(MainWindow, app.tr('Warning'), msg)
4646

4747
def msg_critical(msg):
48-
QtGui.QMessageBox.critical(MainWindow, app.tr('Critical'), u''.format(msg))
48+
QtGui.QMessageBox.critical(MainWindow, app.tr('Critical'), u'{}'.format(msg))
4949

5050
# limit instances to one
5151
lock = '/run/lock/customizer'

0 commit comments

Comments
 (0)