New remotes format

pmeunier
Jul 11, 2021, 9:23 PM
MWB5VXBVO6DP4FDEROKDRQIRWL2YTWOCJHDE2VXNL75CK3XALVSQC

Dependencies

  • [2] 3FBABWSM Add remotes view on the SCM panel
  • [3] TPJNM4C4 Show only the changes which are not in the current channel on the channel view
  • [4] ZI7ORD4P Add iconv dependency
  • [5] L44OILGK Add reset command to resource state context menu
  • [6] NCBEWRYE Initialize Repository
  • [*] ZGMIJNFV Create pijul.ts for executing commands using the Pijul CLI

Change contents

  • replacement in src/pijul.ts at line 514
    [2.1919][2.1919:2047]()
    return (await this._pijul.exec(this.repositoryRoot, ['remote'])).stdout.split(/\r?\n/).map(l => new PijulRemote(l.trim()));
    [2.1919]
    [3.763]
    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
    [3.1183][3.1183:1212]()
    "set-operations": "^1.2.1"
    [3.1183]
    [3.109588]
    "set-operations": "^1.2.1",
    "vsce": "^1.95.1"