Skip to content

Commit a533de0

Browse files
committed
[release]
1 parent 34ff540 commit a533de0

File tree

4 files changed

+49
-7
lines changed

4 files changed

+49
-7
lines changed

dist/changelogs/1.7.12.md

-5
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,3 @@
4040
- Fix text field when showing askpass window not being focused automatically
4141
- Fix combobox selections not working well with keyboard-only workflows
4242
- Fix many possible small NullPointerExceptions
43-
44-
## Preview pro features
45-
46-
For anyone interested in giving any new professional features a try without having to commit to buying a full license,
47-
there is now a special preview mode available: Simply enter the license key `D18D1C9F-D3CB-49CA-A909-FF385DECD948` and get full access to newly released professional features for two weeks after their initial release date. In fact, you can try it out right now to get access to the new vscode file browser integration.

dist/changelogs/1.7.12_augmented.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
## New professional features
2+
3+
- Add ability to open files and directories in VSCode SSH remote environment in file browser
4+
- Added support for fully offline licenses. You can obtain them via email request
5+
in case you're running it on a system without internet connectivity or restricted proxy settings
6+
7+
## Changes
8+
9+
- Make current default shell also show up in shell environments to prevent confusion about missing bash environment
10+
- Improve error messages when an additional password was requested by the connection
11+
when none was provided instead of just showing permission denied
12+
- Make SSH connection starting from a WSL environment use the native Windows key helper for FIDO2 keys
13+
- Rework insights button for connection creation across the board
14+
15+
## Additions
16+
17+
- Add warning message if git vault URL was an HTTP URL and you are trying to use an SSH identity
18+
- Add ability to clone existing connections to make the process of adding similar connections easier
19+
- Add ability to debug local background shell in developer options
20+
- Add notice when a professional feature is available in preview mode
21+
- Add some more OS logos
22+
- Add check to verify whether font loading with fontconfig works on Linux on startup
23+
- Add more extensive note on first startup for potential issues when Malwarebytes, McAfee, or Bitdefender are installed
24+
25+
## Fixes
26+
27+
- Fix application not starting on Asahi Linux due to executable page size issue
28+
- Fix file existence check for SSH key files reporting wrong results on Windows in directory links/junctions
29+
- Fix k8s integration not working when user did not have permission to list nodes
30+
- Fix rare error when switching to tray operation mode on Linux
31+
- Fix connection state not being preserved when being added the first time
32+
- Fix application failing to start up if OS reported invalid screen size bounds
33+
- Fix VMware VM not being able to be parsed if configuration file did not specify an encoding or name
34+
- Fix startup failing when installation was located on a ramdisk
35+
- Fix some miscellaneous cache data being stored in the user home directory
36+
- Fix error handling when jump host chain formed a loop
37+
- Fix PowerShell remote sessions being blocked by execution policy
38+
- Fix race condition when locking user data directory
39+
- Fix some CLI commands not starting daemon correctly if it is not already running
40+
- Fix text field when showing askpass window not being focused automatically
41+
- Fix combobox selections not working well with keyboard-only workflows
42+
- Fix many possible small NullPointerExceptions
43+
44+
## Preview pro features
45+
46+
For anyone interested in giving any new professional features a try without having to commit to buying a full license,
47+
there is now a special preview mode available: Simply enter the license key `D18D1C9F-D3CB-49CA-A909-FF385DECD948` and get full access to newly released professional features for two weeks after their initial release date. In fact, you can try it out right now to get access to the new vscode file browser integration.

ext/base/src/main/java/io/xpipe/ext/base/script/SimpleScriptStoreProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public String createInsightsMarkdown(DataStore store) {
5252
}
5353

5454
if (s.getCommands() != null) {
55-
builder.addParagraph("with command contents").addCodeBlock(s.getCommands());
55+
builder.add(" with command contents").addCodeBlock(s.getCommands());
5656
}
5757

5858
return builder.build();

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.12-5
1+
1.7.12

0 commit comments

Comments
 (0)