tsoft-cli 3.9.2 → 3.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to T-Soft CLI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.9.4] - 2026-06-25
9
+
10
+ ### Fixed
11
+ - `theme push` now shows the deep link to the pushed theme again. The partner panel link moved to a `/r/{organizationUuid}/themes/{slug}` redirect format, but the CLI only recognised the older `/organization/{id}/themes/` path and fell back to the themes index. Both formats are now accepted.
12
+
13
+ ## [3.9.3] - 2026-05-21
14
+
15
+ ### Fixed
16
+ - Corrected the Turkish translation for `org switch` when the user belongs to no organization ("Hiçbir organizasyona üyesiniz değil." → "Hiçbir organizasyona üye değilsiniz.").
17
+
8
18
  ## [3.9.2] - 2026-05-21
9
19
 
10
20
  ### Changed
package/locales/tr.json CHANGED
@@ -294,7 +294,7 @@
294
294
  "org.switch.no_store": "Aktif mağaza bulunamadı. Lütfen önce \"tsoft login\" komutunu çalıştırın.",
295
295
  "org.switch.no_token": "Token bulunamadı. Lütfen önce \"tsoft login\" komutunu çalıştırın.",
296
296
  "org.switch.loading": "Organizasyonlar yükleniyor...",
297
- "org.switch.no_orgs": "Hiçbir organizasyona üyesiniz değil.",
297
+ "org.switch.no_orgs": "Hiçbir organizasyona üye değilsiniz.",
298
298
  "org.switch.select_prompt": "Hangi organizasyonda çalışacaksınız?",
299
299
  "org.switch.select_title": "Organizasyon Seçimi",
300
300
  "org.switch.selecting": "{{name}} seçiliyor...",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsoft-cli",
3
- "version": "3.9.2",
3
+ "version": "3.9.4",
4
4
  "description": "Command-line tool for tsoft360 theme development and management",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -19,7 +19,7 @@ const PARTNERS_BASE = 'https://partners.tsoft360.com';
19
19
  const PARTNERS_THEMES_INDEX = `${PARTNERS_BASE}/themes`;
20
20
 
21
21
  function resolvePanelLink(partnerUrl) {
22
- if (typeof partnerUrl === 'string' && partnerUrl.includes('/organization/')) {
22
+ if (typeof partnerUrl === 'string' && /\/(r|organization)\/[^/]+\/themes\//.test(partnerUrl)) {
23
23
  return { url: partnerUrl, hintKey: 'push.partner_hint_theme' };
24
24
  }
25
25
  return { url: PARTNERS_THEMES_INDEX, hintKey: 'push.partner_hint' };