Branch: refs/heads/master
Author: David Yang <davidyang6us(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Sun, 09 Jan 2022 20:50:43 UTC
Commit: bcadc6aba428dbc3821720266b2147b7a59d6bff
https://github.com/geany/geany/commit/bcadc6aba428dbc3821720266b2147b7a59d6…
Log Message:
-----------
Switch PO_DEPENDS_ON_POT to no (#3089)
Stops generating/changing masses of translation files on every build.
Modified Paths:
--------------
.gitignore
po/Makevars
Modified: .gitignore
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -107,6 +107,7 @@ Makefile.in
/po/*.sed
/po/*.sin
/po/stamp-it
+/po/stamp-po
#-----------------------------------------------------------------------
# /src/
Modified: po/Makevars
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -73,7 +73,7 @@ MSGINIT_OPTIONS =
# has changed. Possible values are "yes" and "no". Set this to no if
# the POT file is checked in the repository and the version control
# program ignores timestamps.
-PO_DEPENDS_ON_POT = yes
+PO_DEPENDS_ON_POT = no
# This tells whether or not to forcibly update $(DOMAIN).pot and
# regenerate PO files on "make dist". Possible values are "yes" and
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Sun, 09 Jan 2022 17:10:05 UTC
Commit: 8e33c750eb5f037cc5fc048c622c7c84a6a47eb8
https://github.com/geany/geany/commit/8e33c750eb5f037cc5fc048c622c7c84a6a47…
Log Message:
-----------
Add 64 and 256 icon sizes to geany.ico
On Windows with HiDPI screen the Geany ico is really blurry and hopefully
this fixes it. The icon was generated with the following commands:
```
inkscape -w 64 -h 64 -e 64.png scalable/geany.svg
inkscape -w 256 -h 256 -e 256.png scalable/geany.svg
convert 256.png 64.png 48x48/geany.png 32x32/geany.png 16x16/geany.png geany.ico
```
(requires inkscape and imagemagick installed)
Based on
https://docs.microsoft.com/en-us/windows/win32/uxguide/vis-icons
Microsoft recommends 16, 32, 48, 256 sizes of ico files and 64 for
"classic mode" so the generated sizes should cover all of them.
I didn't make a Windows build with this icon so I actually haven't
tested it myself if it fixes the problem.
Modified Paths:
--------------
icons/geany.ico
Modified: icons/geany.ico
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).