Commit b8f0c934ada831edda053db749f8d2196960ff1f
Exists in
develop
Merge branch 'develop' into winpkg
Showing
3 changed files
with
22 additions
and
5 deletions
Show diff stats
.github/workflows/msys2.yml
... | ... | @@ -3,23 +3,41 @@ on: |
3 | 3 | pull_request: |
4 | 4 | branches: |
5 | 5 | - master |
6 | - schedule: | |
7 | - - cron: '30 13 3 2,4,6,8,10,12 *' | |
6 | + push: | |
7 | + branches: | |
8 | + - develop | |
8 | 9 | |
9 | 10 | jobs: |
10 | 11 | msys2-mingw: |
12 | + name: Publish Windows 64 | |
11 | 13 | runs-on: windows-latest |
12 | 14 | defaults: |
13 | 15 | run: |
14 | 16 | shell: msys2 {0} |
15 | 17 | steps: |
16 | 18 | - uses: actions/checkout@v3 |
19 | + - uses: oprypin/find-latest-tag@v1 | |
20 | + id: gettag | |
21 | + with: | |
22 | + repository: PerryWerneck/libv3270 | |
23 | + releases-only: true | |
17 | 24 | - uses: msys2/setup-msys2@v2 |
18 | 25 | with: |
19 | 26 | msystem: mingw64 |
20 | 27 | update: true |
21 | 28 | install: xz mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool mingw-w64-x86_64-gtk3 mingw-w64-x86_64-imagemagick mingw-w64-x86_64-optipng mingw-w64-x86_64-inkscape |
29 | + - uses: robinraju/release-downloader@v1.7 | |
30 | + with: | |
31 | + repository: "PerryWerneck/lib3270" | |
32 | + latest: true | |
33 | + fileName: "mingw-lib3270.x86_64.tar.xz" | |
34 | + - uses: robinraju/release-downloader@v1.7 | |
35 | + with: | |
36 | + repository: "PerryWerneck/libv3270" | |
37 | + latest: true | |
38 | + fileName: "mingw-libv3270.x86_64.tar.xz" | |
22 | 39 | - name: CI-Build |
23 | 40 | run: | |
24 | 41 | ./win/ci-build.sh |
25 | 42 | |
43 | + | ... | ... |
configure.ac
... | ... | @@ -104,7 +104,7 @@ case "$host" in |
104 | 104 | LDFLAGS="$LDFLAGS -pthread" |
105 | 105 | |
106 | 106 | # Windows and unix doesn't use the same defaults. |
107 | - AC_SUBST(DEFAULT_UI_STYLE,0) | |
107 | + AC_SUBST(DEFAULT_UI_STYLE,1) | |
108 | 108 | AC_SUBST(DEFAULT_MENUBAR_VISIBLE,"false") |
109 | 109 | ;; |
110 | 110 | |
... | ... | @@ -116,7 +116,7 @@ case "$host" in |
116 | 116 | LDFLAGS="$LDFLAGS -pthread" |
117 | 117 | |
118 | 118 | # Windows and unix doesn't use the same defaults. |
119 | - AC_SUBST(DEFAULT_UI_STYLE,0) | |
119 | + AC_SUBST(DEFAULT_UI_STYLE,1) | |
120 | 120 | AC_SUBST(DEFAULT_MENUBAR_VISIBLE,"false") |
121 | 121 | |
122 | 122 | esac | ... | ... |
src/objects/actions/view.c
... | ... | @@ -195,7 +195,6 @@ static GSList * append_action(GSList * list, const gchar *prefix, GAction *actio |
195 | 195 | |
196 | 196 | GdkPixbuf * pixbuf = g_action_get_pixbuf(action, GTK_ICON_SIZE_MENU, GTK_ICON_LOOKUP_GENERIC_FALLBACK); |
197 | 197 | if(!pixbuf) { |
198 | - debug("Action \"%s\": Doesn't have a pixbuf",g_action_get_name(action)); | |
199 | 198 | return list; |
200 | 199 | } |
201 | 200 | ... | ... |