Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["audio", "sequencer", "lua", "live_coding", "renoise"]
license = "GNU AFFERO"
name = "pattrns"
readme = "README.md"
repository = "https://github.com/emuell/pattrns"
repository = "https://github.com/renoise/pattrns"
version = "0.9.1"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ By separating the rhythmical from the tonal part of a musical sequence, each par

## Documentation & Guides

Read the [Scripting Book](https://emuell.github.io/pattrns/).
Read the [Scripting Book](https://renoise.github.io/pattrns/).
It contains an introduction, guides, full Lua API documentation and bunch of script examples.

The Rust backend uses standard Rust documentation features. The docs are currently not hosted online (yet), but you can generate them locally via `cargo doc --open`.
Expand Down
2 changes: 1 addition & 1 deletion docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ max-level = 3
[output.html]
default-theme = "dark"
preferred-dark-theme = "ayu"
git-repository-url = "https://github.com/emuell/pattrns"
git-repository-url = "https://github.com/renoise/pattrns"
git-repository-icon = "fa-github"
edit-url-template = "https://github.com/emuell/pattrns/edit/master/docs/{path}"
additional-css = [ "src/styles.css" ]
Expand Down
2 changes: 1 addition & 1 deletion docs/generate/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pattrns API Documentation Generator

This app generates the API definition chapters in the [pattrns book](https://emuell.github.io/pattrns/) from the [Lua API definition](../../types/pattrns/) files using [luals-docs-gen](https://github.com/emuell/luals-docs-gen).
This app generates the API definition chapters in the [pattrns book](https://renoise.github.io/pattrns/) from the [Lua API definition](../../types/pattrns/) files using [luals-docs-gen](https://github.com/emuell/luals-docs-gen).

## Requirements

Expand Down
4 changes: 2 additions & 2 deletions docs/src/API/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Lua API Reference

The following chapters contain a complete listing of the pattrns Lua scripting API. The content has been auto-generated from the [LuaLS Type Definitions](https://github.com/emuell/pattrns/tree/master/types/pattrns), so you can read and use the definition files directly too.
The following chapters contain a complete listing of the pattrns Lua scripting API. The content has been auto-generated from the [LuaLS Type Definitions](https://github.com/renoise/pattrns/tree/master/types/pattrns), so you can read and use the definition files directly too.

---

Expand All @@ -14,4 +14,4 @@ Then download a copy of the pattrns type definitions folder (`./types/pattrns`)
{
"Lua.workspace.library": ["PATH/TO/NERDO_DEFINITION_FOLDER"]
}
```
```
6 changes: 3 additions & 3 deletions docs/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

... to the pattrns scripting guide! **pattrns** is an experimental imperative music sequence generator engine that lets you create musical patterns programmatically using Lua scripts for algorithmic or [live music coding](https://github.com/pjagielski/awesome-live-coding-music).

This guide focuses on the Lua scripting API. For Rust development, see the [pattrns crate docs](https://github.com/emuell/pattrns).
This guide focuses on the Lua scripting API. For Rust development, see the [pattrns crate docs](https://github.com/renoise/pattrns).


## Key Features
Expand Down Expand Up @@ -31,7 +31,7 @@ This guide focuses on the Lua scripting API. For Rust development, see the [patt
: Experiment with pattrns scripts directly in your browser.<br>
[Renoise](https://www.renoise.com)
: Use patterns in Renoise's phrase editor.<br>
[Rust Examples](https://github.com/emuell/pattrns/tree/master/examples)
[Rust Examples](https://github.com/renoise/pattrns/tree/master/examples)
: Write or test scripts in Rust or Lua with a basic sample player.<br>

## Documentation
Expand All @@ -43,4 +43,4 @@ This guide focuses on the Lua scripting API. For Rust development, see the [patt
[Examples](./examples/)
: More advanced examples, created and explained step by step.<br>
[Reference](./API/)
: Read raw technical specifications of the Lua API.
: Read raw technical specifications of the Lua API.
Loading