Chameleon

Chameleon Commit Details

Date:2011-08-30 03:10:33 (12 years 7 months ago)
Author:ErmaC
Commit:1477
Parents: 1476
Message:Fix other issue with Graphics Mode, now also the GraphicsEnabler "key" can be added.
Changes:
M/branches/ErmaC/package/Scripts/Resolutions/1024x768x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1024x600x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1920x1200x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1600x900x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1280x1024x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1440x900x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1280x800x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1680x1050x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1920x1080x32/postinstall
M/branches/ErmaC/package/Scripts/Resolutions/1280x960x32/postinstall

File differences

branches/ErmaC/package/Scripts/Resolutions/1024x768x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1024x768x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1024x600x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1024x600x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1920x1200x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1920x1200x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1600x900x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1600x900x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1280x1024x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1280x1024x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1440x900x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1440x900x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1280x800x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1280x800x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1680x1050x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1680x1050x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1920x1080x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1920x1080x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"
branches/ErmaC/package/Scripts/Resolutions/1280x960x32/postinstall
1414
1515
1616
17
18
19
20
21
22
23
24
25
2617
2718
2819
body = ""
for line in infile:
# if GraphicsEnabler is there, advance the next line to
# read past it, and then change the lines to read
# "<key>GraphicsEnabler<\key>" and "<string>Yes</string>"
if "<key>GraphicsEnabler</key>" in line:
line = infile.next()
line = " <key>Graphics Mode</key>\n"
line += " <string>1280x960x32</string>\n"
InstantMenuCheck = True
# if we finish the tags and haven't written Graphics_Mode Yet
if "</dict>" in line and Graphics_ModeCheck == False:
line = " <key>Graphics Mode</key>\n"

Archive Download the corresponding diff file

Revision: 1477