Skip to content

Commit

Permalink
Merge pull request #18 from BC-SECURITY/dev
Browse files Browse the repository at this point in the history
v1.1.1
  • Loading branch information
vinnybod authored Apr 16, 2020
2 parents 2513df8 + 9775ff7 commit efbff82
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "starkiller",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
7 changes: 6 additions & 1 deletion src/store/electron-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ export let namespacedElectronStore = null;

export default store;

/**
* create an electron store namespaced to the current url.
* The url is hashed since windows is more picky and doesn't allow :
* @param {string} url empire url
*/
export function initNamespacedStore(url) {
namespacedElectronStore = new Store({ name: url });
namespacedElectronStore = new Store({ name: btoa(url) });
}
3 changes: 3 additions & 0 deletions src/views/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2020-04-15
- Corrected an issue with writing to electron-store in Windows [@vinnybod](https://github.com/vinnybod) [#17](https://github.com/BC-SECURITY/Starkiller/pull/17)

## [1.1.0] - 2020-04-13
- Added Module Descriptions to the Modules tab [@logicsec](https://github.com/logicsec) [#13](https://github.com/BC-SECURITY/Starkiller/pull/13)
- Added a reporting tab based on Empire's 3.1.5 reporting endpoint [@vinnybod](https://github.com/vinnybod) [#14](https://github.com/BC-SECURITY/Starkiller/pull/14)
Expand Down

0 comments on commit efbff82

Please sign in to comment.