Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch less_tests_constraints Excluding Merge-Ins
This is equivalent to a diff from 742854d7 to 4765a9eb
2025-01-05
| ||
20:34 | Merge branch less_tests_constraints. Summary of changes: - Work on failsOnUbuntu / failsOnXQuarz constraints to remove them as much as possible. Add completely specific constraints instead in some cases. - Eradicate constraint noExceed - Factorize definition of some constraints (e.g. 'pressbutton', 'movemouse'), and rename some constraints to test* to conform to other test constraint names - (Linux) Add font packages in the install step before running the test suite at CI, so that the CI environment can count on those fonts to be available - Remove warnings when DEBUG_FONTSEL is defined - Modernize code ("eval destroy" -> "destroy {*}") check-in: 761407ca user: fvogel tags: trunk, main | |
2025-01-04
| ||
14:17 | merge trunk Closed-Leaf check-in: 4765a9eb user: fvogel tags: less_tests_constraints | |
14:17 | Fix warning when building on Linux. check-in: 6300eaef user: fvogel tags: trunk, main | |
14:10 | Typo. check-in: 4cd83170 user: fvogel tags: less_tests_constraints | |
2025-01-03
| ||
23:30 | (cherry-pick): Fix [13ac26b35d]: wm iconbitmap does not correctly set the icon pixmap hint on macOS. Thanks to Serhiy Storchaka check-in: a60c5d2f user: jan.nijtmans tags: core-8-6-branch | |
2024-12-19
| ||
12:26 | Fix [a0d6ef020b]: Documentation bugs check-in: 6c685985 user: jan.nijtmans tags: core-8-branch | |
12:07 | Fix [a0d6ef020b]: Documentation bugs check-in: 742854d7 user: jan.nijtmans tags: core-8-6-branch | |
11:58 | (cherry-pick): Fix [844c0be72d]: Menu entry underline does not consider activeborderwidth. check-in: 9eb91f76 user: jan.nijtmans tags: core-8-6-branch | |
Changes to .fossil-settings/encoding-glob.
1 2 | 1 2 3 4 5 6 7 8 9 | - - | win/buildall.vc.bat win/makefile.vc |
Changes to .fossil-settings/ignore-glob.
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - | */wish* */tktest */versions.vc */version.vc */libtk.vfs */libtk*.zip */tkUuid.h |
︙ |
Changes to .github/workflows/linux-build.yml.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | + + - + - + - + - + + + + + + + + + + + + + + | name: Linux on: push: branches: - "main" - "core-8-branch" - "core-8-6-branch" - "less_tests_constraints" tags: - "core-**" permissions: contents: read defaults: run: shell: bash working-directory: tk/unix env: ERROR_ON_FAILURES: 1 jobs: build: runs-on: ubuntu-22.04 strategy: matrix: compiler: - "gcc" - "clang" config: - "" - "CFLAGS=-DTK_NO_DEPRECATED=1" - "--disable-shared" - "--disable-xft" - "--disable-xss" - "--enable-symbols" steps: - name: Checkout Tk uses: actions/checkout@v4 with: path: tk - name: Checkout Tcl 8.6 uses: actions/checkout@v4 with: repository: tcltk/tcl |
︙ | |||
107 108 109 110 111 112 113 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | - + + + + + + + - + - + - + + + + + + + + + + + + + + | - name: Upload Documentation Distribution if: ${{ env.BUILD_CONFIG_ID == 'gcc' }} uses: actions/upload-artifact@v4 with: name: Tk ${{ env.VERSION }} HTML documentation (snapshot) path: /tmp/dist/tk*/html test: |
︙ |
Added .github/workflows/linux-with-tcl8-build.yml.