New remotes format
Dependencies
- [2]
3FBABWSMAdd remotes view on the SCM panel - [3]
TPJNM4C4Show only the changes which are not in the current channel on the channel view - [4]
ZI7ORD4PAdd iconv dependency - [5]
L44OILGKAdd reset command to resource state context menu - [6]
NCBEWRYEInitialize Repository - [*]
ZGMIJNFVCreate pijul.ts for executing commands using the Pijul CLI
Change contents
- replacement in src/pijul.ts at line 514
return (await this._pijul.exec(this.repositoryRoot, ['remote'])).stdout.split(/\r?\n/).map(l => new PijulRemote(l.trim()));const remotes = (await this._pijul.exec(this.repositoryRoot, ['remote'])).stdout;let result = [];for(let l of remotes.split(/\r?\n/)) {const i = l.search(':');result.push(new PijulRemote(l.slice(i+1).trim()));}return result - replacement in package.json at line 602
"set-operations": "^1.2.1""set-operations": "^1.2.1","vsce": "^1.95.1"