File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 " }
509509script_runner = " @duckscript"
510510script = '''
511511output = exec --fail-on-error date +%Y-%m-%d
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -152,4 +152,4 @@ class QTKeys(str, Enum):
152152class ApplicationMetadata (str , Enum ):
153153 ORGANIZATION_NAME = "Swift Navigation"
154154 ORGANIZATION_DOMAIN = "swiftnav.com"
155- APPLICATION_NAME = "console_pp "
155+ APPLICATION_NAME = "swift-toolbox "
You can’t perform that action at this time.
0 commit comments