Skip to content

Commit b02a2bb

Browse files
committed
v0.1.25: add World Cup + more soccer leagues to new-tab Sports
- worldcup/fifa -> soccer/fifa.world, plus wwc, wcq, euro, uel, laliga, bundesliga, seriea, ligue1 (ESPN public scoreboard, keyless) - update Settings help text
1 parent e70466e commit b02a2bb

26 files changed

Lines changed: 41 additions & 28 deletions

File tree

apps/desktop/extensions/ai-sidebar/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "TronBrowser",
4-
"version": "0.1.24",
4+
"version": "0.1.25",
55
"description": "TronBrowser — privacy-first, AI-native. Branded new tab, DuckDuckGo search, CoinPay login, and a bring-your-own-keys AI sidebar.",
66
"icons": {
77
"16": "icons/icon-16.png",

apps/desktop/extensions/ai-sidebar/markets.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export async function fetchQuotes(symbols) {
3131
}));
3232
}
3333

34-
// ESPN league key -> sport/league path.
34+
// ESPN league key -> sport/league path. Several aliases map to the same comp
35+
// (e.g. fifa/worldcup) so common names just work.
3536
export const LEAGUES = {
3637
nfl: 'football/nfl',
3738
ncaaf: 'football/college-football',
@@ -40,9 +41,20 @@ export const LEAGUES = {
4041
ncaam: 'basketball/mens-college-basketball',
4142
mlb: 'baseball/mlb',
4243
nhl: 'hockey/nhl',
44+
// Soccer / football
45+
worldcup: 'soccer/fifa.world',
46+
fifa: 'soccer/fifa.world',
47+
wwc: 'soccer/fifa.wwc',
48+
wcq: 'soccer/fifa.worldq.uefa',
49+
euro: 'soccer/uefa.euro',
50+
ucl: 'soccer/uefa.champions',
51+
uel: 'soccer/uefa.europa',
4352
mls: 'soccer/usa.1',
4453
epl: 'soccer/eng.1',
45-
ucl: 'soccer/uefa.champions',
54+
laliga: 'soccer/esp.1',
55+
bundesliga: 'soccer/ger.1',
56+
seriea: 'soccer/ita.1',
57+
ligue1: 'soccer/fra.1',
4658
};
4759

4860
export async function fetchScores(leagueKey) {

apps/desktop/extensions/ai-sidebar/options.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ <h2>Markets &amp; Sports</h2>
7474
<label for="tickers">Stock / crypto tickers (comma-separated)</label>
7575
<input id="tickers" placeholder="SPY, AAPL, NVDA, BTC-USD, TSLA" />
7676
<label for="leagues">Sports leagues (comma-separated)</label>
77-
<input id="leagues" placeholder="nfl, nba, mlb, nhl, epl" />
78-
<p class="hint">Leagues: nfl, ncaaf, nba, wnba, ncaam, mlb, nhl, mls, epl, ucl.</p>
77+
<input id="leagues" placeholder="worldcup, nfl, nba, epl" />
78+
<p class="hint">US: nfl, ncaaf, nba, wnba, ncaam, mlb, nhl.
79+
Soccer: worldcup (or fifa), wwc, wcq, euro, ucl, uel, mls, epl, laliga, bundesliga, seriea, ligue1.</p>
7980
<div><button id="saveMarkets">Save markets &amp; sports</button><span id="savedMarkets" class="saved"></span></div>
8081

8182
<h2>RSS feeds</h2>

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/desktop",
3-
"version": "0.1.24",
3+
"version": "0.1.25",
44
"private": true,
55
"description": "Desktop shell for the TronBrowser Chromium fork",
66
"type": "module",

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/docs",
3-
"version": "0.1.24",
3+
"version": "0.1.25",
44
"private": true,
55
"description": "Documentation site",
66
"type": "module",

apps/mobile/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"slug": "tronbrowserdev",
55
"owner": "profullstack",
66
"scheme": "tronbrowser",
7-
"version": "0.1.24",
7+
"version": "0.1.25",
88
"orientation": "portrait",
99
"userInterfaceStyle": "dark",
1010
"platforms": [

apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/mobile",
3-
"version": "0.1.24",
3+
"version": "0.1.25",
44
"private": true,
55
"description": "TronBrowser mobile (Expo / React Native) — Phase 2",
66
"type": "module",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/web",
3-
"version": "0.1.24",
3+
"version": "0.1.25",
44
"private": true,
55
"description": "TronBrowser marketing site + web dashboard",
66
"type": "module",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tronbrowser",
3-
"version": "0.1.24",
3+
"version": "0.1.25",
44
"private": true,
55
"description": "TronBrowser.dev — open-source, privacy-first, AI-native browser",
66
"packageManager": "pnpm@9.12.0",

packages/agent-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/agent-runtime",
3-
"version": "0.1.24",
3+
"version": "0.1.25",
44
"private": true,
55
"description": "Agent runtime: planner, executor, validator, memory, tools",
66
"type": "module",

0 commit comments

Comments
 (0)