Skip to content

Commit 9ef666f

Browse files
committed
Merge branch 'Release-v0.1.13'
2 parents dc21fed + 1f8adbf commit 9ef666f

101 files changed

Lines changed: 13530 additions & 7263 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.angular-cli.json

Lines changed: 0 additions & 59 deletions
This file was deleted.

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@
1515
*.PDF diff=astextplain
1616
*.rtf diff=astextplain
1717
*.RTF diff=astextplain
18+
19+
# ensures font files are loaded as binary not text
20+
*.ttf binary
21+
*.eot binary
22+
*.woff binary
23+
*.woff2 binary

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ $RECYCLE.BIN/
2222
/bower_components
2323

2424
# IDEs and editors
25-
/.idea
2625
.project
2726
.classpath
2827
*.launch
@@ -41,11 +40,15 @@ testem.log
4140
/e2e/*.js
4241
/e2e/*.map
4342

43+
# build
44+
/dist
45+
4446
# local env variable
4547
/src/environments/environment.local.ts
4648
/src/environments/environment.prod.ts
4749
/src/environments/environment.dev.ts
4850
/src/environments/environment.ci.ts
51+
/src/environments/environments.tar
4952

5053
# =========================
5154
# Operating System Files

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,24 @@ addons:
22
chrome: stable
33
language: node_js
44
node_js:
5-
- 8
5+
- node
66
before_install:
7-
- openssl aes-256-cbc -K $encrypted_9d2af3734b6c_key -iv $encrypted_9d2af3734b6c_iv -in src/environments/environment.ci.ts.enc -out src/environments/environment.ci.ts -d
7+
- openssl aes-256-cbc -K $encrypted_17157b34afc7_key -iv $encrypted_17157b34afc7_iv -in src/environments/environments.tar.enc -out src/environments/environments.tar -d
8+
- tar xf src/environments/environments.tar -C src/environments
89
before_script:
9-
- export DISPLAY=:99.0
10-
- sh -e /etc/init.d/xvfb start
1110
- npm config set spin false
1211
install:
13-
- npm install
12+
- npm install
1413
script:
15-
- npm run ci
14+
- npm run ci
15+
before_deploy:
16+
- ./bin/build-releases
17+
deploy:
18+
provider: releases
19+
api_key:
20+
secure: "Ke27Qm16uRgfX+ZVAq92Suu0ZpLOG9TGXDD8ndKNQZ4zl80DOmePoKvVpk/5Ip3H57Me2seqtCwgjeUCfW0dX3KayPoNmGVxWXCsZCH3MZWuaMnGk/Zc1Ef8P3L1sTEG4LD6+59RaOiMwIrMtLPjSlzvV2gc+002O7MHoudx/qZl47L+T01B0Ovh1AueSVN224Q79NrBnbgTtMqaS3x2avLkJmdZpneafqeO5OusOFcvsHvBr7ca0qKv5yIpn4eotK2bo6TFuaC9e9i7gUgPKHb1/GXAK1DcteUDF3AzK/b7T+dqTS+1vowuNKjMZ+ecyB8VDXQlWnBcv/IGn/C3nBmtp2oN97BFQtHguCY42Qk9LZxIu9o0mpOt6aMRiIsfbWstgONKaLzgt4Ce3DFlJ7YR5BFRaoKDdGHoCW+tcucQ/o9vFCbBVZ8sol2aYJOiNHYxlC8A7NLs6YEjyckVAa3q1l6CddnSjrFA5oe9fsLdzUDGhJ57Nv7kF9v6jjsTlZtucrzf8ix9+vNKNfWLQ6K86UIeBT40pPYHLBmWEsiGai+s4IWrYjTscT4zQDHcfQCMuQbbb3NTEfy9Fwv0VQdIR/cKsQgUCZwwlv3RBImryuDFqY2pNOqvnGIcr/OJ/MmY9bbCYEp55dxrZ50dNBbtR4O8IyUDte/ycU4OKbE="
21+
file_glob: true
22+
file: "../WebApp-Releases/*"
23+
skip_cleanup: true
24+
on:
25+
tags: true

CHANGELOG.md

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,109 @@
22

33
# Next Release
44

5+
# 0.1.13
6+
7+
* Added new graphs for organisation view, for better breakdown of spending
8+
* Added Suppliers spend search page
9+
* Updated and fixes numerous graphs on dashboard
10+
11+
## Minor
12+
13+
* *Dev Fixes* Updated Travis config
14+
15+
16+
# 0.1.12
17+
18+
* Fixed accidentally added app-root
19+
20+
# 0.1.11
21+
22+
* Bumped Angular to version 6 and upgraded packages to match
23+
* Converted RxJS 5 syntax to RxJS 6
24+
* Removed extraneous console logs
25+
* Changed dashboard sector list to category all time list & tweaked layout
26+
27+
# 0.1.10
28+
29+
* Allowed for creation of yearly recurring transactions
30+
* Added google analytics
31+
32+
# 0.1.9
33+
34+
* Made layout change to make it neater when chart doesn't show
35+
* Made hotfix
36+
37+
# 0.1.8
38+
39+
* Amended how category is pulled from server
40+
* Added chart on essential purchase numbers as a whole
41+
* Added bar chart of category purchases in the month
42+
* Added pie chart of purchases by category in the week
43+
* Added hint for closing the burger menu while in mobile view
44+
45+
# v0.1.7
46+
47+
* Fixed category on upload highlighting
48+
49+
# v0.1.6
50+
51+
* Changed layout of category choosing on upload
52+
* Added ability to edit and remove recurring transactions
53+
* Fixed HttpClient error log viewing
54+
* Made transaction validation more lenient
55+
56+
# v0.1.5
57+
58+
* Fixed category viewing on purchase
59+
* Changed category view from radio buttons to full label buttons
60+
* Amended local validation of submit
61+
* Changed recurring purchase selection view
62+
63+
# v0.1.4
64+
65+
* Amended category list on transaction submission
66+
* Added budget view for weekly breakdown of spend by category
67+
* Added flag to make purchases essential
68+
* Fixed budget view issues and amended it to show essential purchases that week
69+
* Added ability to make purchases recurring
70+
* Updated Moment dependency due to security issue
71+
* Fixed category uploading in upload
72+
73+
# v0.1.3
74+
75+
* Made fix to Travis config
76+
77+
# v0.1.2
78+
79+
* Removed unused button
80+
* Added ability to choose category for transaction
81+
* Added version bump on Angular
82+
83+
# v0.1.1
84+
85+
* Redid layout on circle customer view
86+
* Renamed customer dashboard headers
87+
88+
# v0.1.0
89+
90+
* Changed Story Trail choosing to modals
91+
* Revamped snippets and graph widgets on customer dashboard
92+
* Added local purchase pie chart for customer dashboard
93+
* Added week by week purchase list for customer dashboard
94+
* Added sector purchase amount list for customer dashboard
95+
* Added sector U to available ones
96+
* Fixed snippet layout
97+
98+
# v0.0.7
99+
100+
* Added ESTA to Story Trail
101+
* Reverted Story Trail naming to LIS
102+
* Changed Trail map code to make it flexible based on association
103+
104+
# v0.0.6
105+
106+
* Fix typo in Map Titles
107+
5108
# v0.0.5
6109

7110
* Change page name from Story Trail to Lancaster Independent Story

Foodloop-Web.iml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="WEB_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<excludeFolder url="file://$MODULE_DIR$/dist" />
7+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
8+
</content>
9+
<orderEntry type="inheritedJdk" />
10+
<orderEntry type="sourceFolder" forTests="false" />
11+
</component>
12+
</module>

0 commit comments

Comments
 (0)