Dax T. Games
19fe75cbbe
Merge branch 'master' into windows_terminal
2023-09-25 11:45:49 -04:00
Dax T. Games
3b8e87de84
Merge branch 'master' of https://github.com/cmderdev/cmder
2023-09-25 11:45:19 -04:00
Dax T. Games
2728f36302
fix
2023-09-25 11:44:09 -04:00
Dax T. Games
74c183c2a7
Add initial Windows Terminal support
2023-09-25 11:26:42 -04:00
Dax T. Games
d75ba7bce2
Merge branch 'master' of https://github.com/cmderdev/cmder into windows_terminal
2023-09-25 11:15:06 -04:00
Dax T. Games
968beb8a27
Add initial Windows Terminal support
2023-09-25 11:14:54 -04:00
Dax T. Games
7c04ee9f6a
fixes
2023-09-22 17:15:23 -04:00
Dax T. Games
94ea2da567
make it work with windows terminal
2023-09-22 17:07:56 -04:00
DRSDavidSoft
faf66542b4
⬆️ Update dependencies (git-for-windows v2.42.0.windows.2, clink v1.5.6)
2023-09-22 13:40:52 +00:00
DRSDavidSoft
d3497f5eb0
Merge branch 'master' into development
2023-09-21 17:28:35 +00:00
David Refoua
98a1e9621e
Bump actions/checkout from 3 to 4
2023-09-21 20:58:21 +03:30
dependabot[bot]
4f32d23c30
Bump actions/checkout from 3 to 4
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-09-04 15:47:52 +00:00
Dax T. Games
e52fa81fbb
Merge branch 'more_speed_2' of https://github.com/daxgames/cmder into more_speed_2
2023-08-11 10:45:03 -04:00
Dax T. Games
6b330b81f2
allow launching windows terminal w/cmder from cmder
2023-08-11 10:44:33 -04:00
Dax T. Games
bd857bae2d
Merge remote-tracking branch 'origin/more_speed_2' into more_speed_2
2023-08-11 09:32:20 -04:00
Dax T. Games
52e1a02224
Merge remote-tracking branch 'upstream/master' into more_speed_2
2023-08-11 09:31:47 -04:00
Dax T. Games
ad5c80bcd2
Merge remote-tracking branch 'upstream/master'
2023-08-11 09:31:24 -04:00
Dax T. Games
9b446b31d5
Merge remote-tracking branch 'upstream/master' into more_speed_2
2023-07-28 09:53:34 -04:00
DRSDavidSoft
9a135947af
Merge branch 'master' into development
2023-07-27 21:28:50 +00:00
David Refoua
1b9a1e5b6f
improve markdown (SECURITY.md)
...
use bullet points to render the list correctly; improve sentences
2023-07-28 00:58:39 +03:30
MartiUK
1adaab963b
Merge branch 'master' into development
2023-07-27 18:32:18 +00:00
Martin Kemp
29650960aa
Create SECURITY.md ( #2866 )
2023-07-27 19:32:04 +01:00
DRSDavidSoft
41f0454b05
Merge branch 'master' into development
2023-07-25 13:48:37 +00:00
David Refoua
3ea9728ffd
Merge pull request #2861 from chrisant996/chrisant_fix_2859
...
Fix #2859 ; script error when cwd name contains `%`
2023-07-25 17:18:22 +03:30
DRSDavidSoft
a01fb4c444
Merge branch 'master' into development
2023-07-25 10:17:37 +00:00
David Refoua
4b0344172a
ignore github-related and markdown for tests and codeql
2023-07-25 13:47:22 +03:30
Dax T Games
b47cf43d4c
Merge pull request #14 from cmderdev/master
...
Sync with master
2023-07-24 20:45:28 -04:00
MartiUK
4104a5612f
Merge branch 'master' into development
2023-07-24 14:04:30 +00:00
Martin Kemp
5e219fe34e
Update build.yml
2023-07-24 15:04:16 +01:00
MartiUK
ff7621c1da
Merge branch 'master' into development
2023-07-24 13:56:12 +00:00
github-actions[bot]
9be28807cb
⬆️ Update dependencies (conemu-maximus5 v23.07.24) ( #2863 )
...
Co-authored-by: DRSDavidSoft <DRSDavidSoft@users.noreply.github.com>
2023-07-24 14:55:59 +01:00
MartiUK
5d4c45d099
Merge branch 'master' into development
2023-07-24 08:30:03 +00:00
github-actions[bot]
e2168a361c
⬆️ Update dependencies (git-for-windows v2.41.0.windows.3, clink v1.5.1, conemu-maximus5 v23.07.23, clink-completions v0.4.10) ( #2850 )
...
Co-authored-by: DRSDavidSoft <DRSDavidSoft@users.noreply.github.com>
2023-07-24 09:29:50 +01:00
MartiUK
f517494dc4
Merge branch 'master' into development
2023-07-20 12:57:05 +00:00
Martin Kemp
7542376213
Remove appveyor config ( #2805 )
...
This should be merged after #2804
Signed-off-by: Martin Kemp <me@martinke.mp>
2023-07-20 13:56:52 +01:00
Chris Antos
84ee96c64f
Fix #2859 ; script error when cwd name contains %
...
The `string.gsub()` function in Lua always uses Lua patterns (which are
similar to regular expressions). Cmder's custom prompt wants to perform
simple plain text find/replace operations on strings. `string.gsub()`
is the right Lua function for that, but since it always uses Lua
patterns it's necessary to apply escaping to the input strings otherwise
they can get misinterpreted and cause runtime errors.
For example, if the current working directory name contains a percent
sign, such as literally "My%20Home".
This change fixes that. It introduces a helper function `gsub_plain()`
which behaves like `string.gsub()` but applies appropriate escaping to
convert the plain text input strings into the corresponding Lua
patterns so that it can achieve plain text find/replace operations.
It also introduces separate helper functions for escaping the `find` and
`replace` parameters for `string.gsub()`, since they have different
escaping rules.
2023-07-10 18:07:53 -07:00
Dax T. Games
4129084494
add comment to clink.lua explaining /c [folderpath]
2023-07-08 13:09:10 -07:00
Dax T. Games
ad804eda44
Merge remote-tracking branch 'upstream/master'
2023-07-04 13:01:27 -04:00
Dax T. Games
3ced7a2a1b
'.gitignore
2023-07-04 11:07:33 -04:00
Dax T. Games
5311b25d9f
Merge remote-tracking branch 'upstream/master' into more_speed_2
2023-07-04 11:03:08 -04:00
DRSDavidSoft
15addb87ee
Merge branch 'master' into development
2023-07-04 08:40:45 +00:00
David Refoua
e9750ab73d
avoid erroneous messages, skip clink if injection fails fatally
2023-07-04 12:10:32 +03:30
Dax T. Games
cd92c9fa74
cleanup
2023-07-03 17:51:02 -04:00
Dax T. Games
3ca03795d3
sync
2023-07-03 16:36:57 -04:00
Dax T. Games
294f85e33c
fixes
2023-07-03 16:23:45 -04:00
Dax T. Games
4bf659833c
fix multiuser user_init.cmd creation
2023-07-03 16:19:07 -04:00
Dax T. Games
ea0a9bb062
Merge branch 'master' into more_speed_2
2023-06-05 16:02:12 -04:00
Dax T. Games
47258fbd2b
Merge branch 'master' of https://github.com/cmderdev/cmder
2023-06-05 16:01:37 -04:00
Dax T. Games
86b9fb25ab
Add ability to launch git bash from external Installed git whwen using Cmder - Mini
2023-06-05 13:22:28 -04:00
Dax T. Games
7b55dab79e
Merge remote-tracking branch 'upstream/master' into more_speed_2
2023-05-30 11:18:38 -04:00