Compare commits
2 Commits
0.7.4
...
0.5.2-alph
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e99e990b13 | ||
|
|
83d53c3dfb |
29
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
@@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
name: Bug report
|
|
||||||
about: Create a report to help us improve
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Describe the bug**
|
|
||||||
A clear and concise description of what the bug is.
|
|
||||||
|
|
||||||
**To Reproduce**
|
|
||||||
Steps to reproduce the behavior:
|
|
||||||
1. Go to '...'
|
|
||||||
2. Click on '....'
|
|
||||||
3. Scroll down to '....'
|
|
||||||
4. See error
|
|
||||||
|
|
||||||
**Expected behavior**
|
|
||||||
A clear and concise description of what you expected to happen.
|
|
||||||
|
|
||||||
**Screenshots**
|
|
||||||
If applicable, add screenshots to help explain your problem.
|
|
||||||
|
|
||||||
**Desktop (please complete the following information):**
|
|
||||||
- macOS: [e.g. 10.12.1]
|
|
||||||
- Version [e.g. 0.7.3]
|
|
||||||
|
|
||||||
|
|
||||||
**Additional context**
|
|
||||||
Add any other context about the problem here.
|
|
||||||
17
.github/ISSUE_TEMPLATE/Feature_request.md
vendored
@@ -1,17 +0,0 @@
|
|||||||
---
|
|
||||||
name: Feature request
|
|
||||||
about: Suggest an idea for this project
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Is your feature request related to a problem? Please describe.**
|
|
||||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
||||||
|
|
||||||
**Describe the solution you'd like**
|
|
||||||
A clear and concise description of what you want to happen.
|
|
||||||
|
|
||||||
**Describe alternatives you've considered**
|
|
||||||
A clear and concise description of any alternative solutions or features you've considered.
|
|
||||||
|
|
||||||
**Additional context**
|
|
||||||
Add any other context or screenshots about the feature request here.
|
|
||||||
12
.gitignore
vendored
@@ -13,14 +13,4 @@ build/*
|
|||||||
xcuserdata
|
xcuserdata
|
||||||
profile
|
profile
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
Assets/MacPass Icons Grayscale V3.ai
|
|
||||||
Assets/MacPass Icons Grayscale V4.ai
|
|
||||||
MacPass.xcodeproj/xcshareddata/xcbaselines
|
|
||||||
Carthage
|
|
||||||
.DS_store
|
|
||||||
Docs/Acknowlegements/*.aux
|
|
||||||
Docs/Acknowlegements/*.fdb_latexmk
|
|
||||||
Docs/Acknowlegements/*.fls
|
|
||||||
Docs/Acknowlegements/*.log
|
|
||||||
Docs/Acknowlegements/*.synctex.gz
|
|
||||||
docs/acknowledgement/*.lb
|
|
||||||
|
|||||||
15
.gitmodules
vendored
@@ -1,6 +1,21 @@
|
|||||||
|
[submodule "KissXML"]
|
||||||
|
path = KissXML
|
||||||
|
url = https://github.com/robbiehanson/KissXML.git
|
||||||
|
[submodule "HNHUi"]
|
||||||
|
path = HNHUi
|
||||||
|
url = https://mstarke@github.com/mstarke/HNHUi.git
|
||||||
|
[submodule "CocoaHTTPServer"]
|
||||||
|
path = CocoaHTTPServer
|
||||||
|
url = git://github.com/robbiehanson/CocoaHTTPServer.git
|
||||||
|
[submodule "KeePassKit"]
|
||||||
|
path = KeePassKit
|
||||||
|
url = https://mstarke@github.com/mstarke/KeePassKit
|
||||||
[submodule "DDHotKey"]
|
[submodule "DDHotKey"]
|
||||||
path = DDHotKey
|
path = DDHotKey
|
||||||
url = https://github.com/mstarke/DDHotKey.git
|
url = https://github.com/mstarke/DDHotKey.git
|
||||||
|
[submodule "Sparkle"]
|
||||||
|
path = Sparkle
|
||||||
|
url = https://github.com/mstarke/Sparkle.git
|
||||||
[submodule "TransformerKit"]
|
[submodule "TransformerKit"]
|
||||||
path = TransformerKit
|
path = TransformerKit
|
||||||
url = https://github.com/mattt/TransformerKit.git
|
url = https://github.com/mattt/TransformerKit.git
|
||||||
|
|||||||
39
.travis.yml
@@ -1,39 +0,0 @@
|
|||||||
osx_image: xcode10.2
|
|
||||||
xcode_project: MacPass.xcodeproj
|
|
||||||
xcode_scheme: MacPass
|
|
||||||
language: objective-c
|
|
||||||
|
|
||||||
before_install:
|
|
||||||
- carthage bootstrap --platform macOS
|
|
||||||
- gem install xcpretty --no-document --quiet
|
|
||||||
|
|
||||||
after_success:
|
|
||||||
- cd ./build/Build/Products/Release
|
|
||||||
- zip -9ry MacPass-continuous.zip MacPass.app
|
|
||||||
- shasum -a 256 MacPass-continuous.zip > MacPass-continuous.zip.sha256
|
|
||||||
- cd -
|
|
||||||
- mv ./build/Build/Products/Release/MacPass-continuous.zip .
|
|
||||||
- mv ./build/Build/Products/Release/MacPass-continuous.zip.sha256 .
|
|
||||||
|
|
||||||
script: |
|
|
||||||
set -o pipefail
|
|
||||||
xcodebuild clean
|
|
||||||
xcodebuild build -configuration release -project MacPass.xcodeproj -scheme MacPass CODE_SIGNING_REQUIRED=NO -derivedDataPath ./build | xcpretty -c
|
|
||||||
|
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- /^(?i:continuous)$/
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
skip_cleanup: true
|
|
||||||
provider: releases
|
|
||||||
api_key:
|
|
||||||
secure: AEb7fgi29S3aXFt5bXz+lq1KHISumny6bf4j06JBC5gUrSs+dW0/tmVFq68XRAqigeOQU31wwv20f7OHiy+GRYDXM2xBsX9ZBQ2IilnaXlDy/mPsNcJJJsZ2gyodi3KnU0rZtTb93me2YyU86H4Na/gtaZZUKjLwCFtGGziExD8=
|
|
||||||
file:
|
|
||||||
- MacPass-continuous.zip
|
|
||||||
- MacPass-continuous.zip.sha256
|
|
||||||
overwrite: true
|
|
||||||
on:
|
|
||||||
tags: true
|
|
||||||
repo: MacPass/MacPass
|
|
||||||
branch: continuous
|
|
||||||
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 132 KiB After Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 82 KiB |