Skip to content

Commit 8038e41

Browse files
committed
v1.7: improve icon appearance on Retina displays
Signed-off-by: Chris Warrick <[email protected]>
1 parent e49c640 commit 8038e41

File tree

16 files changed

+27
-18
lines changed

16 files changed

+27
-18
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Changelog
33

44
More information, including binaries, can be found on GitHub in the [releases section](https://github.com/Kwpolska/DisplayMenu/releases).
55

6+
v1.7 (build 8)
7+
--------------
8+
9+
* Improve icon appearance on Retina displays
10+
611
v1.6 (build 7)
712
--------------
813

CONTRIBUTING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contribution rules
33
==================
44
:Info: Those are the contribution rules for DisplayMenu.
5-
:Copyright: © 2012-2018, Chris Warrick.
5+
:Copyright: © 2012-2019, Chris Warrick.
66
:License: 3-clause BSD
77

88
.. index:: contributing

Display Menu/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Display Menu
3-
* Copyright © 2017-2018, Chris Warrick.
3+
* Copyright © 2017-2019, Chris Warrick.
44
* All rights reserved.
55
*
66
* Redistribution and use in source and binary forms, with or without

Display Menu/Assets.xcassets/DMStatusError.imageset/Contents.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"author" : "xcode"
1717
},
1818
"properties" : {
19-
"template-rendering-intent" : "template"
19+
"template-rendering-intent" : "template",
20+
"preserves-vector-representation" : true
2021
}
2122
}

Display Menu/Assets.xcassets/DMStatusReady.imageset/Contents.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"author" : "xcode"
1717
},
1818
"properties" : {
19-
"template-rendering-intent" : "template"
19+
"template-rendering-intent" : "template",
20+
"preserves-vector-representation" : true
2021
}
2122
}

Display Menu/Assets.xcassets/DMStatusSuccess.imageset/Contents.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"author" : "xcode"
1717
},
1818
"properties" : {
19-
"template-rendering-intent" : "template"
19+
"template-rendering-intent" : "template",
20+
"preserves-vector-representation" : true
2021
}
2122
}

Display Menu/Assets.xcassets/DMStatusWorking.imageset/Contents.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"author" : "xcode"
1717
},
1818
"properties" : {
19-
"template-rendering-intent" : "template"
19+
"template-rendering-intent" : "template",
20+
"preserves-vector-representation" : true
2021
}
21-
}
22+
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
CFBundleDisplayName = "Display Menu";
2-
NSHumanReadableCopyright = "Copyright © 2017-2018 Chris Warrick. All rights reserved. Licensed under the 3-clause BSD license.";
2+
NSHumanReadableCopyright = "Copyright © 2017-2019 Chris Warrick. All rights reserved. Licensed under the 3-clause BSD license.";

Display Menu/DisplayManager.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Display Menu
3-
* Copyright © 2017-2018, Chris Warrick.
3+
* Copyright © 2017-2019, Chris Warrick.
44
* All rights reserved.
55
*
66
* Redistribution and use in source and binary forms, with or without

Display Menu/Info.plist

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.6</string>
22+
<string>1.7</string>
2323
<key>CFBundleVersion</key>
24-
<string>7</string>
24+
<string>8</string>
2525
<key>LSMinimumSystemVersion</key>
2626
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2727
<key>LSUIElement</key>
2828
<true/>
2929
<key>NSHumanReadableCopyright</key>
30-
<string>Copyright © 2017 Chris Warrick. All rights reserved. Licensed under the 3-clause BSD license.</string>
30+
<string>Copyright © 2017-2019 Chris Warrick. All rights reserved. Licensed under the 3-clause BSD license.</string>
3131
<key>NSMainStoryboardFile</key>
3232
<string>Main</string>
3333
<key>NSPrincipalClass</key>

Display Menu/ViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Display Menu
3-
* Copyright © 2017-2018, Chris Warrick.
3+
* Copyright © 2017-2019, Chris Warrick.
44
* All rights reserved.
55
*
66
* Redistribution and use in source and binary forms, with or without
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
CFBundleDisplayName = "Display Menu";
2-
NSHumanReadableCopyright = "Copyright © 2017-2018 Chris Warrick. All rights reserved. Licensed under the 3-clause BSD license.";
2+
NSHumanReadableCopyright = "Copyright © 2017-2019 Chris Warrick. All rights reserved. Licensed under the 3-clause BSD license.";
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
CFBundleDisplayName = "Menu Ekranów";
2-
NSHumanReadableCopyright = "Copyright © 2017-2018 Chris Warrick. Wszelkie prawa zastrzeżone. Na licencji BSD (3-klauzulowej).";
2+
NSHumanReadableCopyright = "Copyright © 2017-2019 Chris Warrick. Wszelkie prawa zastrzeżone. Na licencji BSD (3-klauzulowej).";
33

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2017-2018, Chris Warrick.
1+
Copyright © 2017-2019, Chris Warrick.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

PrintScreenIDs.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Part of Display Menu, Copyright © 2017-2018 Chris Warrick. License: 3-clause BSD.
1+
// Part of Display Menu, Copyright © 2017-2019 Chris Warrick. License: 3-clause BSD.
22

33
import Quartz
44

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Credits
3131

3232
Icons: `desktop-mac` and `check` from Material Icons by Google (Apache License v2.0)
3333

34-
Copyright © 2017-2018, Chris Warrick. All rights reserved.
34+
Copyright © 2017-2019, Chris Warrick. All rights reserved.
3535
Licensed under the 3-clause BSD license.

0 commit comments

Comments
 (0)