Commit graph

137 commits

Author SHA1 Message Date
Damien Elmes
c59ce479e9 Update translations 2022-03-28 18:54:40 +10:00
Damien Elmes
fa89f276dd Update translations
Update translations
2022-03-21 21:49:28 +10:00
Damien Elmes
d6cf228832 Update translations 2022-03-17 21:09:49 +10:00
Damien Elmes
2ece777540 Update translations 2022-03-15 16:52:15 +10:00
Damien Elmes
9203da56b0 Update translations 2022-03-09 18:06:58 +10:00
Damien Elmes
1a4e708ec7 Update to latest rules_rust, which unblocks the tokio upgrade
Rust version has been pinned, as 1.59 gets stuck compiling pyo3_macros,
and appears to have other issues:
https://github.com/rust-lang/rust/issues/94390
2022-03-03 19:48:17 +10:00
Damien Elmes
22f1936c76 Update translations 2022-02-25 17:24:53 +10:00
Damien Elmes
19d11486cb Update rules_nodejs 2022-02-25 16:19:26 +10:00
Damien Elmes
ed95657284 fix bundle_extras_linux_amd64 link 2022-02-22 23:42:21 +10:00
Damien Elmes
d3a13a62f2 update translations 2022-02-14 18:54:19 +10:00
Damien Elmes
d6b72645c8 updates to the build process and binary bundles
All platforms:

- rename scripts/ to tools/: Bazelisk expects to find its wrapper script
(used by the Mac changes below) in tools/. Rather than have a separate
scripts/ and tools/, it's simpler to just move everything into tools/.
- wheel outputs and binary bundles now go into .bazel/out/dist. While
not technically Bazel build products, doing it this way ensures they get
cleaned up when 'bazel clean' is run, and it keeps them out of the source
folder.
- update to the latest Bazel

Windows changes:

- bazel.bat has been removed, and tools\setup-env.bat has been added.
Other scripts like .\run.bat will automatically call it to set up the
environment.
- because Bazel is now on the path, you can 'bazel test ...' from any
folder, instead of having to do \anki\bazel.
- the bat files can handle being called from any working directory,
so things like running "\anki\tools\python" from c:\ will work.
- build installer as part of bundling process

Mac changes:

- `arch -arch x86_64 bazel ...` will now automatically use a different
build root, so that it is cheap to switch back and forth between archs
on a new Mac.
- tools/run-qt* will now automatically use Rosetta
- disable jemalloc in Mac x86 build for now, as it won't build under
Rosetta (perhaps due to its build scripts using $host_cpu instead of
$target_cpu)
- create app bundle as part of bundling process

Linux changes:

- remove arm64 orjson workaround in Linux bundle, as without a
readily-available, relatively distro-agonstic PyQt/Qt build
we can use, the arm64 Linux bundle is of very limited usefulness.
- update Docker files for release build
- include fcitx5 in both the qt5 and qt6 bundles
- create tarballs as part of the bundling process
2022-02-10 19:23:07 +10:00
Damien Elmes
98fe012253 update translations 2022-02-07 22:25:35 +10:00
Damien Elmes
931ef7c55a update to Rust 1.58.1
https://blog.rust-lang.org/2022/01/20/cve-2022-21658.html
2022-01-24 13:21:00 +10:00
Damien Elmes
889c948dc9 update translations 2022-01-16 15:48:46 +10:00
Damien Elmes
d8a70bb7d4 update to latest rules_python 2022-01-15 16:16:33 +10:00
Damien Elmes
cc354c9f16 update to latest rules_rust + Rust 1.58 2022-01-15 14:22:21 +10:00
Damien Elmes
289ab35fe1 update rules_rust 2021-12-20 17:28:52 +10:00
Damien Elmes
ec3831ae72 update translations 2021-12-20 12:57:35 +10:00
Damien Elmes
81ecaabade update translations 2021-12-08 10:23:27 +10:00
Damien Elmes
f3aebcc786 update to Rust 1.57 + latest rules_rust 2021-12-03 20:35:52 +10:00
Damien Elmes
b64acb5151 update translations 2021-12-03 19:51:28 +10:00
Damien Elmes
fac8df43dc update translations 2021-11-24 14:44:02 +10:00
Damien Elmes
695871e66c Fix latest Rusqlite on Windows
https://github.com/bazelbuild/rules_rust/pull/1025
2021-11-19 10:44:02 +10:00
Damien Elmes
744254daa4 update Rust to 1.56.1 2021-11-18 20:44:15 +10:00
Damien Elmes
f925660b08 update translations 2021-11-15 16:03:31 +10:00
Damien Elmes
ac23757e82 update translations 2021-11-12 15:02:17 +10:00
Damien Elmes
73160fd16c updated package scripts 2021-10-28 18:46:45 +10:00
Damien Elmes
409804a717 update translations 2021-10-26 08:30:13 +10:00
Damien Elmes
beaf9153f6 drop rules_pip
Our vendored Python includes a recent pip, so we no longer need rules_pip's
dependencies for our PyQt scripts.
2021-10-16 16:54:35 +10:00
Damien Elmes
11b2f74882 update rules_python 2021-10-15 15:07:31 +10:00
Damien Elmes
215ab90be8 update translations 2021-10-13 08:44:30 +10:00
Damien Elmes
8ee0276f04 update to the latest rules_rust 2021-10-02 15:13:37 +10:00
Damien Elmes
e1e2be65e6 update translations 2021-10-01 20:48:20 +10:00
Damien Elmes
5d7eb8c425 update to latest rules_nodejs & switch to ts_project
ts_library() is deprecated and will presumably be dropped from a
future rules_nodejs, and it wasn't working with the jest tests
after updating, so we switch over to ts_project().

There are some downsides:

- It's a bit slower, as the worker mode doesn't appear to function
at the moment.
- Getting it working with a mix of source files and generated files
was quite tricky, especially as things behave differently on Windows,
and differently when editing with VS Code. Solved with a small patch
to the rules, and a wrapper script that copies everything into the
bin folder first. To keep VS Code working correctly as well, the built
files are symlinked into the source folder.
- TS libraries are not implicitly linked to node_modules, so they
can't be imported with an absolute name like "lib/proto" - we need
to use relative paths like "../lib/proto" instead. Adjusting "paths"
in tsconfig.json makes it work for TS compilation, but then it fails
at the esbuild stage. We could resolve it by wrapping the TS
libraries in a subsequent js_library() call, but that has the downside
of losing the transient dependencies, meaning they need to be listed
again.  Alternatively we might be able to solve it in the future by
adjusting esbuild, but for now the paths have been made relative to
keep things simple.

Upsides:

- Along with updates to the Svelte tooling, Svelte typing has improved.
All exports made in a Svelte file are now visible to other files that
import them, and we no longer rebuild the Svelte files when TS files
are updated, as the Svelte files do no type checking themselves, and
are just a simple transpilation. Svelte-check now works on Windows again,
and there should be no errors when editing in VS Code after you've
built the project. The only downside seems to be that cmd+clicking
on a Svelte imports jumps to the .d.ts file instead of the original now;
presumably they'll fix that in a future plugin update.
- Each subfolder now has its own tsconfig.json, and tsc can be called
directly for testing purposes (but beware it will place build products
in the source tree): ts/node_modules/.bin/tsc -b ts
- We can drop the custom esbuild_toolchain, as it's included in the
latest rules_nodejs.

Other changes:

- "image_module_support" is moved into lib/, and imported with
<reference types=...>
- Images are now imported directly from their npm package; the
extra copy step has been removed.

Windows users may need to use "bazel clean" before building this,
due to old files lying around in the build folder.
2021-10-01 12:52:53 +10:00
Damien Elmes
b2582924c3 update translations 2021-09-13 14:58:03 +10:00
Damien Elmes
4617c46067 update translations 2021-09-08 19:19:53 +10:00
Damien Elmes
e8e0f9d08c update translations 2021-09-06 18:31:36 +10:00
Damien Elmes
ff7419b153 update translations 2021-08-25 11:21:21 +10:00
Damien Elmes
e3dba889cf update translations 2021-08-22 15:32:46 +10:00
Damien Elmes
fe1cfe171f update translations 2021-08-19 20:26:43 +10:00
Damien Elmes
b5acef3520 update translations 2021-07-30 18:28:19 +10:00
Damien Elmes
bb0d14e799 update translations 2021-07-30 10:27:08 +10:00
Damien Elmes
b44349b670 update translations 2021-07-27 13:03:13 +10:00
Damien Elmes
8696cb2f85 update translations 2021-07-24 21:47:41 +10:00
Damien Elmes
7884b5fd59 update translations 2021-07-17 18:30:19 +10:00
Damien Elmes
aa7f602752 update translations 2021-07-13 16:12:29 +10:00
Damien Elmes
44690a7a64 update translations 2021-07-13 13:32:33 +10:00
Damien Elmes
50db050d4c update translations 2021-07-04 21:41:34 +10:00
Damien Elmes
e22e294885 update translations 2021-06-29 13:17:03 +10:00
Damien Elmes
309748812b update translations 2021-06-24 14:48:48 +10:00