Rise Radiant
Rise Radiant is the fifth studio album by Australian progressive metal band Caligula's Horse, released through Inside Out Music on May 22, 2020.[1] It is the first album to feature bassist Dale Prinsse, who joined the band in 2019.
Rise Radiant | ||||
---|---|---|---|---|
Studio album by | ||||
Released | May 22, 2020 | |||
Recorded | Studio Circuit in Burleigh Heads, Queensland and Machine Lab Recording in Gold Coast, Queensland | |||
Genre | Progressive metal, progressive rock | |||
Length | 47:46 | |||
Label | Inside Out Music | |||
Producer | Sam Vallen | |||
Caligula's Horse chronology | ||||
| ||||
Singles from Rise Radiant | ||||
|
Track listing
No. | Title | Writer(s) | Length |
---|---|---|---|
1. | "The Tempest" | Vallen, Grey, Prinsse | 4:48 |
2. | "Slow Violence" | Vallen, Grey | 4:30 |
3. | "Salt" | Vallen, Grey, Goleby | 7:41 |
4. | "Resonate" | Grey, Vallen | 2:37 |
5. | "Oceanrise" | Vallen, Grey, Griffin | 4:34 |
6. | "Valkyrie" | Vallen, Grey | 5:09 |
7. | "Autumn" | Vallen, Grey | 7:44 |
8. | "The Ascent" | Vallen, Grey | 10:43 |
Total length: | 47:46 |
Bonus tracks
No. | Title | Writer(s) | Length |
---|---|---|---|
9. | "Don't Give Up" (Peter Gabriel cover) | Peter Gabriel | 5:10 |
10. | "Message to My Girl" (Split Enz cover) | Neil Finn | 3:54 |
Total length: | 56:50 |
Personnel
Caligula's Horse
- Jim Grey – lead vocals
- Sam Vallen – lead guitar, "everything else"
- Adrian Goleby – guitar
- Dale Prinsse – bass
- Josh Griffin – drums
Production
- Sam Vallen – production, engineering
- Jens Bogren – mixing, mastering
- Jared Adlam – engineering
- Dale Prinsse – additional engineering
- Rory Cavanagh – additional engineering
- Chris Stevenson-Mangos – artwork, design
Production credits taken from album liner notes.
Charts
Chart (2020) | Peak position |
---|---|
Australian Albums (ARIA)[2] | 23 |
German Albums (Offizielle Top 100)[3] | 43 |
Scottish Albums (OCC)[4] | 100 |
Swiss Albums (Schweizer Hitparade)[5] | 25 |
gollark: Makes sense.
gollark: Hmm, so what extra features are needed?
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
References
- Luke Parsons (8 May 2020). "Caligula's Horse – Rise Radiant (Album Review)". Abrasive Noise. Retrieved 25 May 2020.
- "Australiancharts.com – Caligula's Horse – Rise Radiant". Hung Medien. Retrieved 27 June 2020.
- "Offiziellecharts.de – Caligula's Horse – Rise Radiant" (in German). GfK Entertainment Charts. Retrieved 29 May 2020.
- "Official Scottish Albums Chart Top 100". Official Charts Company. Retrieved 29 May 2020.
- "Swisscharts.com – Caligula's Horse – Rise Radiant". Hung Medien. Retrieved 3 June 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.