Skip to content

Commit

Permalink
Merge pull request #356 from hannobraun/app
Browse files Browse the repository at this point in the history
Rename `fj-host` to `fj-app`
  • Loading branch information
hannobraun authored Mar 16, 2022
2 parents 7ab068a + 9cf6bc7 commit 51a118d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

# Name of the crate from Cargo.toml
# used to rename and upload the binaries
PROJ_NAME: fj-host
PROJ_NAME: fj-app

jobs:
binaries:
Expand Down
12 changes: 6 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"cargo": {
"args": [
"build",
"--bin=fj-host",
"--package=fj-host"
"--bin=fj-app",
"--package=fj-app"
],
"filter": {
"name": "fj-host",
"name": "fj-app",
"kind": "bin"
}
},
Expand All @@ -30,11 +30,11 @@
"args": [
"test",
"--no-run",
"--bin=fj-host",
"--package=fj-host"
"--bin=fj-app",
"--package=fj-app"
],
"filter": {
"name": "fj-host",
"name": "fj-app",
"kind": "bin"
}
},
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "fj-host"
name = "fj-app"
version = "0.5.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ https://github.com/hannobraun/Fornjot/pulls?q=is%3Apr+is%3Aclosed+merged%3A%3E20
Replace `2022-01-27` at the end of that URL with the day before the previous release.

For the version after `0.5.0`, add the following to the changelog:
- Replace "Host Application" title with crate name: `fj-host`
- Replace "Host Application" title with crate name: `fj-app`
- Convert title of each crate section into link to crate on crates.io.
- Add one-sentence description of the respective crate to each section.
- Link to all Weekly Dev Logs that cover the release.
Expand Down
4 changes: 2 additions & 2 deletions fj/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
//! here to define a CAD model.
//!
//! To actually display the CAD model, or export it to another file format, you
//! need the host application. Please refer to the [Fornjot repository] for
//! usage examples.
//! need the Fornjot app. Please refer to the [Fornjot repository] for usage
//! examples.
//!
//! [Fornjot repository]: https://github.com/hannobraun/Fornjot
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::path::PathBuf;

/// Fornjot - Experimental CAD System - Host Application
/// Fornjot - Experimental CAD System
#[derive(clap::Parser)]
pub struct Args {
/// The model to open
Expand Down

0 comments on commit 51a118d

Please sign in to comment.