Skip to content

Commit 5c89893

Browse files
committed
Minor UI display changes and repo file organization.
Fix positioning of "copy to" dialog on iPad when exporting spectrum, as well as fix export menu item. For shielding/fit tool, add check if invalid best answer is found, and if so, try again a couple more times (seems to fix common cases where model fit wouldnt converge first time) Add in app logo SVGs.
1 parent 3611c30 commit 5c89893

19 files changed

+1379
-76
lines changed

.gitignore

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11
data/sandia.decay.xml
2+
InterSpec/InterSpec.entitlements
23
target/ios/InterSpec/InterSpec.xcodeproj
34
target/electron/app/node_modules
4-
*OUO*
5+
target/electron/app/data
6+
target/electron/app/InterSpec_resources
7+
target/electron/app/example_spectra
8+
target/electron/app/resources
9+
target/electron/app/release-builds
10+
target/ios/boost*
11+
target/ios/prefix
12+
target/ios/wt
13+
target/ios/libs
14+
*OUO*
15+
.svn
16+
.vscode
17+
.idea
18+
.DS_Store
19+
.cproject
20+
.project
21+
.svnignore
22+
XcodeFiles
23+
build
24+
build_*
25+
documentation
26+
testing
27+
README.txt
28+
*.tmp
29+
*.zip
30+
*.tgz
31+
*.bz2
32+
*.log

InterSpec/InterSpecApp.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ class InterSpecApp : public Wt::WApplication
8989
int priority = 1 );
9090

9191
InterSpec *viewer();
92+
9293

9394
//userNameFromOS(): Caution, will return 'apache' if being served, from
9495
// an apache server, 'mobile' if on a iOS device, or blank upon failure.

data/default_preferences.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
<pref name="SpecFileQueryCacheParse" type="Boolean">true</pref>
3434
<pref name="SpecFileQueryMaxSize" type="Integer">32</pref>
3535
<pref name="SpecFileQueryUnique" type="Boolean">true</pref>
36-
<pref name="GadrasDRFPath" type="String">data/OUO_GadrasDetectors;data/GenericGadrasDetectors;C:\GADRAS\Detector</pref>
37-
<pref name="RelativeEffDRFPaths" type="String">data/OUO_lanl_simplemass_detectors.tsv</pref>
36+
<pref name="GadrasDRFPath" type="String">data/GenericGadrasDetectors;C:\GADRAS\Detector</pref>
37+
<pref name="RelativeEffDRFPaths" type="String">data/rel_eff_drfs.tsv</pref>
3838
<pref name="ColorThemeIndex" type="Integer">-1</pref>
3939
<pref name="FileQueryEventQmlyFieldsFile" type="String">data/file_query_event_xml_fields.json</pref>
4040
</preferences>

0 commit comments

Comments
 (0)