@brftech/filex-core 0.27.6 → 0.29.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brftech/filex-core",
3
- "version": "0.27.6",
3
+ "version": "0.29.0",
4
4
  "description": "filex core — Vue 3 source of truth for the filex file manager (FileExplorer + ConnectionsPanel SFCs, composables, types)",
5
5
  "type": "module",
6
6
  "main": "./dist/filex-core.umd.cjs",
@@ -19,14 +19,22 @@ export function stripAdapter(p: string): string {
19
19
 
20
20
  /**
21
21
  * Hide system/internal entries the user must never see as files:
22
- * thumbnails, version history, the soft-delete store, keepdir markers
23
- * and the E2E marker. Shared by both panes' listing filters.
22
+ * thumbnails, version history, the soft-delete store, keepdir markers,
23
+ * the desktop app's open-with scratch area and the E2E marker. Shared by
24
+ * both panes' listing filters.
24
25
  */
25
26
  export function filterInternalEntries(files: FileNode[]): FileNode[] {
26
27
  return (files || []).filter((f) => {
27
28
  if (f.path.includes('.thumbs')) return false;
28
29
  if (f.path.includes('.versions') || f.basename === '.versions') return false;
29
30
  if (f.basename === '.trash') return false;
31
+ // The desktop app's "open this document with filex" scratch area. Real
32
+ // files live in it for the length of one editing session, but they are the
33
+ // app's plumbing, not the user's documents -- and a user who has switched
34
+ // hidden files on is asking to see their OWN dotfiles, not ours. Hidden
35
+ // absolutely, like .filex-trash and .versions; stale copies are swept by
36
+ // the desktop app itself, not by hand.
37
+ if (f.basename === '.filex-open') return false;
30
38
  if (f.basename === '.keepdir') return false;
31
39
  if (f.basename === E2E_MARKER_NAME) return false;
32
40
  return true;
package/src/locales/en.ts CHANGED
@@ -3,7 +3,7 @@ export const en: Record<string, string> = {
3
3
  'toolbar.new_folder': 'New Folder',
4
4
  'toolbar.upload': 'Upload',
5
5
  'toolbar.search': 'Search',
6
- 'toolbar.search.placeholder': 'File name',
6
+ 'toolbar.search.placeholder': 'Search by name or tag:…',
7
7
  'toolbar.view.list': 'List',
8
8
  'toolbar.view.grid': 'Grid',
9
9
  'toolbar.refresh': 'Refresh',
@@ -342,7 +342,7 @@ export const en: Record<string, string> = {
342
342
  'Pick files with this button — or simply drag & drop them anywhere in the window.',
343
343
  'tour.step.search.title': 'Search',
344
344
  'tour.step.search.desc':
345
- 'This box filters the current folder. The Ctrl+K command palette searches across all storages and runs commands.',
345
+ 'This box searches the whole storage by name — separators and one typo are forgiven, so "invoice 2026" finds invoice_2026.pdf. Add tag:invoice to filter by tag. The Ctrl+K command palette also runs commands.',
346
346
  'tour.step.view.title': 'Switch views',
347
347
  'tour.step.view.desc':
348
348
  'Toggle between the list and grid layout; your choice is remembered.',
package/src/locales/tr.ts CHANGED
@@ -3,7 +3,7 @@ export const tr: Record<string, string> = {
3
3
  'toolbar.new_folder': 'Yeni Klasör',
4
4
  'toolbar.upload': 'Yükle',
5
5
  'toolbar.search': 'Ara',
6
- 'toolbar.search.placeholder': 'Dosya adı…',
6
+ 'toolbar.search.placeholder': 'Ada ya da tag: ile ara…',
7
7
  'toolbar.view.list': 'Liste',
8
8
  'toolbar.view.grid': 'Izgara',
9
9
  'toolbar.refresh': 'Yenile',
@@ -342,7 +342,7 @@ export const tr: Record<string, string> = {
342
342
  'Bu düğmeyle dosya seçebilirsin; dosyaları doğrudan pencereye sürükleyip bırakmak da çalışır.',
343
343
  'tour.step.search.title': 'Arama',
344
344
  'tour.step.search.desc':
345
- 'Bu kutu bulunduğun klasörü filtreler. Ctrl+K komut paleti ile tüm depolarda arama yapabilir ve komut çalıştırabilirsin.',
345
+ 'Bu kutu deponun tamamında ada göre arar; ayraçları ve bir harflik yazım hatasını affeder, yani "fatura 2026" yazdığında fatura_2026.pdf gelir. tag:fatura yazarak etikete göre süzebilirsin. Ctrl+K komut paleti ayrıca komut da çalıştırır.',
346
346
  'tour.step.view.title': 'Görünümü değiştir',
347
347
  'tour.step.view.desc':
348
348
  'Liste ve ızgara görünümü arasında geçiş yapabilirsin; seçimin hatırlanır.',