Skip to content

Commit

Permalink
Merge pull request #174 from agustinschilling/update-chromium-version
Browse files Browse the repository at this point in the history
Update chromium version
  • Loading branch information
agustinschilling authored Aug 8, 2024
2 parents bedb686 + 71c4064 commit d54bf82
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ VER_JUNIT=5.10.1
VER_ASSERTJ=3.24.2
VER_SNAPSHOT_TESTING=4.0.6
VER_DURIAN_SWT=4.3.0
VER_EQUO_CHROMIUM=106.0.8
VER_EQUO_CHROMIUM=116.0.15
4 changes: 4 additions & 0 deletions plugin-gradle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format.

## [Unreleased]
### Changed
- Bump `equoChromium` default version `106.0.22` -> `116.0.15`.
### Fixed
- Resolve error in ChatGPT integration.

## [1.7.6] - 2023-12-20
### Changed
Expand Down
4 changes: 4 additions & 0 deletions plugin-maven/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format.

## [Unreleased]
### Changed
- Bump `equoChromium` default version `106.0.22` -> `116.0.15`.
### Fixed
- Resolve error in ChatGPT integration.

## [1.5.5] - 2023-12-20
### Changed
Expand Down
4 changes: 4 additions & 0 deletions solstice/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format.

## [Unreleased]
### Changed
- Bump `equoChromium` default version `106.0.22` -> `116.0.15`.
### Fixed
- Resolve error in ChatGPT integration.

## [1.7.6] - 2023-12-20
### Changed
Expand Down
5 changes: 3 additions & 2 deletions solstice/src/main/java/dev/equo/ide/EquoChromium.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@
*/
public class EquoChromium extends Catalog.PureMaven {

private static final String EQUO_CHROMIUM_VERSION = "106.0.22";
private static final String EQUO_CHROMIUM_VERSION = "116.0.15";
private static final String EQUO_CHROMIUM_CEF_VERSION = "116.0.13";

EquoChromium() {
super(
"equoChromium",
jre11(EQUO_CHROMIUM_VERSION),
List.of(
"com.equo:com.equo.chromium:" + V,
"com.equo:com.equo.chromium.cef." + SwtPlatform.getRunning() + ":" + V),
"com.equo:com.equo.chromium.cef." + SwtPlatform.getRunning() + ":" + EQUO_CHROMIUM_CEF_VERSION),
PLATFORM);
}

Expand Down

0 comments on commit d54bf82

Please sign in to comment.