File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,31 @@ pub fn main() -> anyhow::Result<()> {
1717 ) ?;
1818 do_switch ( & [ "Cargo.toml" ] , "Emil Ernerfeldt" , "{{ author }}" ) ?;
1919 do_switch ( & [ "Cargo.toml" ] , "emil.ernerfeldt@gmail.com" , "{{ email }}" ) ?;
20+ do_switch (
21+ & [ "src/main.rs" , "index.html" ] ,
22+ "eframe template" ,
23+ "{{ crate_display_name }}" ,
24+ ) ?;
25+ do_switch (
26+ & [ "assets/sw.js" ] ,
27+ "egui-template-pwa" ,
28+ "{{ pwa_short_name }}" ,
29+ ) ?;
30+ do_switch (
31+ & [ "src/app.rs" , "src/lib.rs" , "src/main.rs" ] ,
32+ "TemplateApp" ,
33+ "{{ app_struct_identifier }}" ,
34+ ) ?;
35+ do_switch (
36+ & [ "assets/manifest.json" ] ,
37+ "egui-template-pwa" ,
38+ "{{ pwa_short_name }}" ,
39+ ) ?;
40+ do_switch (
41+ & [ "assets/manifest.json" ] ,
42+ "egui Template PWA" ,
43+ "{{ pwa_name }}" ,
44+ ) ?;
2045 println ! ( "Completed" ) ;
2146 Ok ( ( ) )
2247}
You can’t perform that action at this time.
0 commit comments