File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,8 @@ pub struct WolframApp {
112
112
#[ non_exhaustive]
113
113
#[ cfg_attr( feature = "cli" , derive( clap:: ValueEnum ) ) ]
114
114
pub enum WolframAppType {
115
+ /// Unified Wolfram App
116
+ WolframApp ,
115
117
/// [Wolfram Mathematica](https://www.wolfram.com/mathematica/)
116
118
Mathematica ,
117
119
/// [Wolfram Engine](https://wolfram.com/engine)
@@ -447,6 +449,7 @@ impl WolframAppType {
447
449
use WolframAppType :: * ;
448
450
449
451
vec ! [
452
+ WolframApp ,
450
453
Mathematica ,
451
454
Desktop ,
452
455
Engine ,
@@ -476,6 +479,7 @@ impl WolframAppType {
476
479
477
480
match self {
478
481
// Unrestricted | with a front end
482
+ WolframApp => 110 ,
479
483
Desktop => 100 ,
480
484
Mathematica => 99 ,
481
485
FinancePlatform => 98 ,
@@ -499,6 +503,7 @@ impl WolframAppType {
499
503
#[ allow( dead_code) ]
500
504
fn app_name ( & self ) -> & ' static str {
501
505
match self {
506
+ WolframAppType :: WolframApp => "Wolfram" ,
502
507
WolframAppType :: Mathematica => "Mathematica" ,
503
508
WolframAppType :: Engine => "Wolfram Engine" ,
504
509
WolframAppType :: Desktop => "Wolfram Desktop" ,
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ impl WolframAppType {
38
38
use WolframAppType :: * ;
39
39
40
40
match self {
41
+ WolframApp => "com.wolfram.WolframApp" ,
41
42
Mathematica => "com.wolfram.Mathematica" ,
42
43
PlayerPro => "com.wolfram.Mathematica.PlayerPro" ,
43
44
Player => "com.wolfram.Mathematica.Player" ,
You can’t perform that action at this time.
0 commit comments