truememory-mirror 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/mirror.js +2 -2
  2. package/package.json +1 -1
package/bin/mirror.js CHANGED
@@ -258,11 +258,11 @@ async function main() {
258
258
  if (displayPct < serverPct) {
259
259
  displayPct += Math.max(1, (serverPct - displayPct) * 0.3);
260
260
  } else if (displayPct < 95) {
261
- displayPct += 0.4;
261
+ displayPct += 0.7;
262
262
  }
263
263
  displayPct = Math.min(displayPct, 99);
264
264
  renderProgress();
265
- }, 600);
265
+ }, 500);
266
266
 
267
267
  try {
268
268
  await pollStatus(result.profile_id, args.apiUrl, (status) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "truememory-mirror",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Behavioral prediction engine for how you think, decide, and react",
5
5
  "bin": {
6
6
  "truememory-mirror": "./bin/mirror.js"