Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue1091 #1279

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ We are following the [Keep a Changelog](https://keepachangelog.com/) format.

## [Unreleased](https://github.com/FredrikNoren/ungit/compare/v1.5.3...master)

### Changed
- Make Textdiff depend on unprioritized-signals instead of signals, significantly improving performance on repositories containing tens of thousands of files [#1091](https://github.com/FredrikNoren/ungit/issues/1091)

## [1.5.3](https://github.com/FredrikNoren/ungit/compare/v1.5.2...v1.5.3)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ module.exports = (grunt) => {
b.require('moment', { expose: 'moment' });
b.require('blueimp-md5', { expose: 'blueimp-md5' });
b.require('color', { expose: 'color' });
b.require('signals', { expose: 'signals' });
b.require('unprioritized-signals', { expose: 'unprioritized-signals' });
b.require('util', { expose: 'util' });
b.require('path', { expose: 'path' });
b.require('diff2html', { expose: 'diff2html' });
Expand Down
2 changes: 1 addition & 1 deletion components/login/login.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

const ko = require('knockout');
const components = require('ungit-components');
const signals = require('signals');
const signals = require('unprioritized-signals');

components.register('login', args => new LoginViewModel(args.server));

Expand Down
7 changes: 6 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ungit",
"author": "Fredrik Norén <[email protected]>",
"description": "Git made easy",
"version": "1.5.3",
"version": "1.5.4",
"ungitPluginApiVersion": "0.2.0",
"scripts": {
"start": "node ./bin/ungit",
Expand Down Expand Up @@ -58,11 +58,11 @@
"rimraf": "~2.6.3",
"semver": "~6.0.0",
"serve-static": "~1.13.2",
"signals": "~1.0.0",
"snapsvg": "~0.5.1",
"socket.io": "~2.2.0",
"superagent": "~5.0.5",
"temp": "~0.9.0",
"unprioritized-signals": "~1.0.2",
"winston": "2.4.0",
"yargs": "~13.2.2"
},
Expand Down
2 changes: 1 addition & 1 deletion public/source/program-events.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

var signals = require('signals');
var signals = require('unprioritized-signals');

var programEvents = new signals.Signal();
module.exports = programEvents;
Expand Down
2 changes: 1 addition & 1 deletion source/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const LocalStrategy = require('passport-local').Strategy;
const semver = require('semver');
const path = require('path');
const fs = require('./utils/fs-async');
const signals = require('signals');
const signals = require('unprioritized-signals');
const os = require('os');
const cache = require('./utils/cache');
const UngitPlugin = require('./ungit-plugin');
Expand Down