Skip to content

Commit 097ab87

Browse files
Switch remaining mentions of console_pp -> swift-toolbox. (#213)
1 parent 9b97911 commit 097ab87

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ rm ./py39-dist/pythonw.exe
505505
'''
506506

507507
[tasks.compress-dist]
508-
env = { ARCHIVE_NAME = "console_pp" }
508+
env = { ARCHIVE_NAME = "swift-toolbox" }
509509
script_runner = "@duckscript"
510510
script = '''
511511
output = exec --fail-on-error date +%Y-%m-%d

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ To this end the prototype attempts to impose these constraints:
157157
+ Minimal dependencies in Python: only Qt (PySide2) and Capnproto (pycapnp)
158158
+ All other necessary external libraries should be include via Rust libraries
159159

160-
[ui-javascript]: https://github.com/swift-nav/console_pp/blob/main/src/main/resources/base/view.qml#L57
160+
[ui-javascript]: https://github.com/swift-nav/swift-toolbox/blob/main/src/main/resources/base/view.qml#L57
161161

162162
### QML - a path to mobile
163163

console_backend/src/common_constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,6 @@ pub enum ApplicationMetadata {
313313
ORGANIZATION_NAME,
314314
#[strum(serialize = "swiftnav.com")]
315315
ORGANIZATION_DOMAIN,
316-
#[strum(serialize = "console_pp")]
316+
#[strum(serialize = "swift-toolbox")]
317317
APPLICATION_NAME,
318318
}

console_backend/src/fileio.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,14 @@ impl<'a> Fileio<'a> {
155155

156156
/// Deletes `filename` on the remote device (if it exists) and writes the contents of `data` to the file.
157157
/// This operation is NOT atomic. If the write fails and `filename` existed, it is gone forever.
158-
/// For more context see: https://github.com/swift-nav/console_pp/pull/72#discussion_r654751414
158+
/// For more context see: https://github.com/swift-nav/swift-toolbox/pull/72#discussion_r654751414
159159
pub fn overwrite(&mut self, filename: String, data: impl Read) -> Result<()> {
160160
self.overwrite_with_progress(filename, data, |_| ())
161161
}
162162

163163
/// Deletes `filename` on the remote device (if it exists) and writes the contents of `data` to the file.
164164
/// This operation is NOT atomic. If the write fails and `filename` existed, it is gone forever.
165-
/// For more context see: https://github.com/swift-nav/console_pp/pull/72#discussion_r654751414
165+
/// For more context see: https://github.com/swift-nav/swift-toolbox/pull/72#discussion_r654751414
166166
pub fn overwrite_with_progress<'b, F>(
167167
&mut self,
168168
filename: String,

swiftnav_console/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ class QTKeys(str, Enum):
152152
class ApplicationMetadata(str, Enum):
153153
ORGANIZATION_NAME = "Swift Navigation"
154154
ORGANIZATION_DOMAIN = "swiftnav.com"
155-
APPLICATION_NAME = "console_pp"
155+
APPLICATION_NAME = "swift-toolbox"

0 commit comments

Comments
 (0)