Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename fj-host to fj-app #356

Merged
merged 6 commits into from
Mar 16, 2022
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 .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