@felan-ai/ext-powerline 0.1.0-alpha.2 → 0.1.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/LICENSE CHANGED
@@ -1,6 +1,8 @@
1
1
  MIT License
2
2
 
3
3
  Copyright (c) 2026 Felan contributors
4
+ Copyright (c) 2026 Marc Krenn
5
+ Copyright (c) 2026 Milko Slavov
4
6
 
5
7
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
8
  of this software and associated documentation files (the "Software"), to deal
package/NOTICE CHANGED
@@ -1,10 +1,13 @@
1
1
  @felan-ai/ext-powerline
2
2
 
3
- Portions of this package are adapted from the MIT-licensed pi-powerline source
4
- by Milko Slavov.
3
+ Portions of this package are adapted from packages/pi-powerline in
4
+ https://github.com/mslavov/pi-extensions at commit
5
+ 7e72e509fe45a5a87c4c2e176cb711de994a8c1d.
6
+ Copyright (c) 2026 Milko Slavov.
5
7
 
6
- The pi-powerline source credits marckrenn/pi-sub packages/sub-core, licensed
7
- under the MIT License, for subscription provider and usage logic. Felan does
8
- not include the credential loading or subscription network implementation.
8
+ The pi-powerline source credits packages/sub-core from
9
+ https://github.com/marckrenn/pi-sub, licensed under the MIT License, for
10
+ subscription provider and usage logic. Copyright (c) 2026 Marc Krenn. Felan
11
+ does not include the credential loading or subscription network implementation.
9
12
 
10
13
  All adaptations remain available under the MIT License in LICENSE.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @felan-ai/ext-powerline
2
2
 
3
- Default local TUI footer extension for Felan, targeting Pi 0.82.1.
3
+ Default local TUI footer extension for Felan, targeting Pi 0.83.0.
4
4
 
5
5
  The footer displays:
6
6
 
@@ -43,7 +43,11 @@ private environment conventions.
43
43
 
44
44
  ## Development
45
45
 
46
+ Source: `packages/ext-powerline` in <https://github.com/felan-ai/felan>.
47
+
46
48
  ```sh
49
+ corepack enable
50
+ pnpm install --frozen-lockfile
47
51
  pnpm --filter @felan-ai/ext-powerline build
48
52
  pnpm --filter @felan-ai/ext-powerline type-check
49
53
  pnpm --filter @felan-ai/ext-powerline test
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@felan-ai/ext-powerline",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0",
4
4
  "description": "Terminal powerline extension for Felan",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "repository": "github:felan-ai/felan",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/felan-ai/felan.git",
10
+ "directory": "packages/ext-powerline"
11
+ },
8
12
  "engines": {
9
13
  "node": ">=22.19.0"
10
14
  },
@@ -21,8 +25,8 @@
21
25
  }
22
26
  },
23
27
  "dependencies": {
24
- "@earendil-works/pi-tui": "0.82.1",
25
- "@felan-ai/agent-core": "0.1.0-alpha.2"
28
+ "@earendil-works/pi-tui": "0.83.0",
29
+ "@felan-ai/agent-core": "0.1.0"
26
30
  },
27
31
  "publishConfig": {
28
32
  "access": "public",