new username uwu

pull/357/head
nyanpasu64 2020-03-20 07:44:07 -07:00
rodzic 790610461c
commit 734afb2658
8 zmienionych plików z 15 dodań i 15 usunięć

Wyświetl plik

@ -122,7 +122,7 @@ This is a bugfix release, since master has regressions in pitch tracking.
- Add pitch-tracking trigger checkbox
- Waves should no longer jump around when pitch changes.
- Rapidly repeating pitch changes (less than 6 frames apart) are skipped for performance.
- Pitch tracking may increase CPU usage on noise channels. See https://github.com/nyanpasu64/corrscope/issues/213 for details
- Pitch tracking may increase CPU usage on noise channels. See https://github.com/corrscope/corrscope/issues/213 for details
- Add stereo rendering support
- Located in stereo tab in GUI
- Add per-channel amplification support
@ -138,4 +138,4 @@ This is a bugfix release, since master has regressions in pitch tracking.
## 0.2.0 and before
See https://github.com/nyanpasu64/corrscope/releases.
See https://github.com/corrscope/corrscope/releases.

Wyświetl plik

@ -1,6 +1,6 @@
BSD 2-Clause License
Copyright (c) 2018, nyanpasu64
Copyright (c) 2018-2020+, nyanpasu64
All rights reserved.
Redistribution and use in source and binary forms, with or without

Wyświetl plik

@ -1,9 +1,9 @@
# Corrscope
[![Appveyor build status](https://ci.appveyor.com/api/projects/status/awiajnwd6a4uhu37/branch/master?svg=true)](https://ci.appveyor.com/project/nyanpasu64/ovgenpy/branch/master)
[![Latest release](https://img.shields.io/github/release-pre/nyanpasu64/corrscope.svg)](https://github.com/nyanpasu64/corrscope/releases)
![PyPI release](https://img.shields.io/pypi/v/corrscope.svg)
[![codecov](https://codecov.io/gh/nyanpasu64/corrscope/branch/master/graph/badge.svg)](https://codecov.io/gh/nyanpasu64/corrscope)
[![Appveyor build status](https://ci.appveyor.com/api/projects/status/awiajnwd6a4uhu37/branch/master?svg=true)](https://ci.appveyor.com/project/nyanpasu64/corrscope/branch/master)
[![Latest release](https://img.shields.io/github/v/release/corrscope/corrscope?include_prereleases)](https://github.com/corrscope/corrscope/releases)
[![PyPI release](https://img.shields.io/pypi/v/corrscope.svg)](https://pypi.org/project/corrscope/)
[![codecov](https://codecov.io/gh/corrscope/corrscope/branch/master/graph/badge.svg)](https://codecov.io/gh/corrscope/corrscope)
Corrscope renders oscilloscope views of WAV files recorded from chiptune (game music from retro sound chips).
@ -11,7 +11,7 @@ Corrscope uses "waveform correlation" to track complex waves (including SNES and
Sample results can be found on my Youtube channel at https://www.youtube.com/nyanpasu64/videos.
Documentation is available at https://nyanpasu64.github.io/corrscope/.
Documentation is available at https://corrscope.github.io/corrscope/.
![Screenshot of Corrscope and video preview](docs/images/corrscope-screenshot.png?raw=true)
@ -21,8 +21,8 @@ Documentation is available at https://nyanpasu64.github.io/corrscope/.
## Installation
- Releases (recommended): https://github.com/nyanpasu64/corrscope/releases
- Dev Builds: https://ci.appveyor.com/project/nyanpasu64/ovgenpy/history
- Releases (recommended): https://github.com/corrscope/corrscope/releases
- Dev Builds: https://ci.appveyor.com/project/nyanpasu64/corrscope/history
Instructions:

Wyświetl plik

@ -635,7 +635,7 @@ class MainWindow(qw.QMainWindow, Ui_MainWindow):
# Misc.
@qc.pyqtSlot()
def on_action_help(self):
help_url = r"https://nyanpasu64.github.io/corrscope/"
help_url = r"https://corrscope.github.io/corrscope/"
QDesktopServices.openUrl(qc.QUrl(help_url))

Wyświetl plik

@ -368,7 +368,7 @@ class CorrelationTrigger(MainTrigger):
def _calc_lag_prevention(self) -> np.ndarray:
""" Returns input-data window,
which zeroes out all data older than 1-ish frame old.
See https://github.com/nyanpasu64/corrscope/wiki/Correlation-Trigger
See https://github.com/corrscope/corrscope/wiki/Correlation-Trigger
"""
N = self._buffer_nsamp
halfN = N // 2

Wyświetl plik

@ -1,6 +1,6 @@
# Corrscope Help
Homepage at <https://github.com/nyanpasu64/corrscope>. Report bugs at https://github.com/nyanpasu64/corrscope/issues/ or https://discord.gg/CCJZCjc.
Homepage at <https://github.com/corrscope/corrscope>. Report bugs at https://github.com/corrscope/corrscope/issues/ or https://discord.gg/CCJZCjc.
*Corrscope is named because it cross-correlates the input wave and a history buffer, to maximize wave alignment between frames.*

2
poetry.lock wygenerowano
Wyświetl plik

@ -532,7 +532,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["pathlib2", "contextlib2", "unittest2"]
[metadata]
content-hash = "73c834ecb9c640a11558eb7b2c1d42d960ead3bdfeb111e9d2671452172b808a"
content-hash = "ae44a40e4ce4457a285cb2ca2885ac134b7191410c983e6318e85d45012765b2"
python-versions = "^3.6"
[metadata.files]

Wyświetl plik

@ -506,7 +506,7 @@ def test_unicode_dump_load():
https://bitbucket.org/ruamel/yaml/issues/316/unicode-encoding-decoding-errors-on
And affects real users when they save "most recent files" containing Unicode.
https://github.com/nyanpasu64/corrscope/issues/308
https://github.com/corrscope/corrscope/issues/308
Workaround in MyYAML.dump(), to encode as UTF-8 instead of locale.
"""