Skip to content

Commit f26309a

Browse files
committed
Release v4.102.0
1 parent 0f9a0e8 commit f26309a

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,22 @@ Code v99.99.999
2222

2323
## Unreleased
2424

25+
## [4.102.0](https://github.com/coder/code-server/releases/tag/v4.102.0) - 2025-07-16
26+
27+
Code v1.102.0
28+
29+
### Changed
30+
31+
- Update to Code 1.102.0.
32+
33+
### Added
34+
35+
- Custom strings can be configured using the `--i18n` flag set to a JSON
36+
file. This can be used for either translation (and can be used alongside
37+
`--locale`) or for customizing the strings. See
38+
[./src/node/i18n/locales/en.json](./src/node/i18n/locales/en.json) for the
39+
available keys.
40+
2541
## [4.101.2](https://github.com/coder/code-server/releases/tag/v4.101.2) - 2025-06-25
2642

2743
Code v1.101.2

ci/helm-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 3.28.1
18+
version: 3.29.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 4.101.2
23+
appVersion: 4.102.0

ci/helm-chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: codercom/code-server
9-
tag: '4.101.2'
9+
tag: '4.102.0'
1010
pullPolicy: Always
1111

1212
# Specifies one or more secrets to be used when pulling images from a

docs/guide.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,8 @@ through the proxy without authentication, use `--skip-auth-preflight`.
464464

465465
## Internationalization and customization
466466

467-
code-server allows you to provide a JSON file to configure certain strings. This can be used for both internationalization and customization.
467+
code-server allows you to provide a JSON file to configure certain strings. This
468+
can be used for both internationalization and customization.
468469

469470
Create a JSON file with your custom strings:
470471

@@ -489,13 +490,19 @@ Or this can be done in the config file:
489490
i18n: /path/to/custom-strings.json
490491
```
491492
492-
You can combine this with the `--locale` flag to configure language support for both code-server and VS Code in cases where code-server has no support but VS Code does. If you are using this for internationalization, please consider sending us a pull request to contribute it to `src/node/i18n/locales`.
493+
You can combine this with the `--locale` flag to configure language support for
494+
both code-server and VS Code in cases where code-server has no support but VS
495+
Code does. If you are using this for internationalization, please consider
496+
sending us a pull request to contribute it to `src/node/i18n/locales`.
493497

494498
### Available keys and placeholders
495499

496-
Refer to [../src/node/i18n/locales/en.json](../src/node/i18n/locales/en.json) for a full list of the available keys for translations. Note that the only placeholders supported for each key are the ones used in the default string.
500+
Refer to [../src/node/i18n/locales/en.json](../src/node/i18n/locales/en.json)
501+
for a full list of the available keys for translations. Note that the only
502+
placeholders supported for each key are the ones used in the default string.
497503

498-
The `--app-name` flag controls the `{{app}}` placeholder in templates. If you want to change the name, you can either:
504+
The `--app-name` flag controls the `{{app}}` placeholder in templates. If you
505+
want to change the name, you can either:
499506

500507
1. Set `--app-name` (potentially alongside `--i18n`)
501508
2. Use `--i18n` and hardcode the name in your strings

0 commit comments

Comments
 (0)