Skip to content

Commit 200ccc6

Browse files
authored
[Release] v1.3 (#47)
- Bump version to 1.3 - Update about window - Update README.md - Add CONTRIBUTING.md
1 parent d732a8b commit 200ccc6

File tree

12 files changed

+343
-138
lines changed

12 files changed

+343
-138
lines changed

CONTRIBUTING.md

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
# Contributing
2+
3+
When contributing to this repository, please first discuss the change you wish to make via issue,
4+
email, or any other method with the owners of this repository before making a change.
5+
6+
Please note we have a code of conduct, please follow it in all your interactions with the project.
7+
8+
## Pull Request Process
9+
10+
1. Ensure any install or build dependencies are removed before the end of the layer when doing a
11+
build.
12+
2. Please fully test whether the existing features are affected by your modifications.
13+
3. Follow the git-flow workflow. You can see more about git-flow [here](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)
14+
15+
### Branch name convention
16+
17+
The branch name meaning should be clear and follow these conventions:
18+
- Feature branch should be `feature/add-something`
19+
- Bugfix branch should be `bugfix/fix-something`
20+
21+
## Code of Conduct
22+
23+
### Our Pledge
24+
25+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
26+
27+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
28+
29+
### Our Standards
30+
31+
Examples of behavior that contributes to a positive environment for our community include:
32+
33+
* Demonstrating empathy and kindness toward other people
34+
* Being respectful of differing opinions, viewpoints, and experiences
35+
* Giving and gracefully accepting constructive feedback
36+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
37+
* Focusing on what is best not just for us as individuals, but for the overall community
38+
39+
Examples of unacceptable behavior include:
40+
41+
* The use of sexualized language or imagery, and sexual attention or
42+
advances of any kind
43+
* Trolling, insulting or derogatory comments, and personal or political attacks
44+
* Public or private harassment
45+
* Publishing others' private information, such as a physical or email
46+
address, without their explicit permission
47+
* Other conduct which could reasonably be considered inappropriate in a
48+
professional setting
49+
50+
### Enforcement Responsibilities
51+
52+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
53+
54+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
55+
56+
### Scope
57+
58+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
59+
60+
### Enforcement
61+
62+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [INSERT CONTACT METHOD]. All complaints will be reviewed and investigated promptly and fairly.
63+
64+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
65+
66+
### Enforcement Guidelines
67+
68+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
69+
70+
#### 1. Correction
71+
72+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
73+
74+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
75+
76+
#### 2. Warning
77+
78+
**Community Impact**: A violation through a single incident or series of actions.
79+
80+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
81+
82+
#### 3. Temporary Ban
83+
84+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
85+
86+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
87+
88+
#### 4. Permanent Ban
89+
90+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
91+
92+
**Consequence**: A permanent ban from any sort of public interaction within the project community.
93+
94+
### Attribution
95+
96+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
97+
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
98+
99+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
100+
101+
[homepage]: https://www.contributor-covenant.org
102+
103+
For answers to common questions about this code of conduct, see the FAQ at
104+
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.

Hidden Bar.xcodeproj/project.pbxproj

+14-4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
08A5F86123AA085B00981CA5 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08A5F86023AA085B00981CA5 /* Preferences.swift */; };
1515
08A5F86423AA09F300981CA5 /* UserDefault+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08A5F86323AA09F300981CA5 /* UserDefault+Extension.swift */; };
1616
08C20FDE23AABDD10035D978 /* HyperlinkTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C20FDD23AABDD10035D978 /* HyperlinkTextField.swift */; };
17+
08C20FE023AB44E60035D978 /* Bundle+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C20FDF23AB44E60035D978 /* Bundle+Extension.swift */; };
18+
08C20FE223AB452C0035D978 /* AboutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C20FE123AB452C0035D978 /* AboutViewController.swift */; };
1719
3CF14C82221FA49D0083D42B /* PreferencesWindowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CF14C81221FA49D0083D42B /* PreferencesWindowController.swift */; };
1820
9220587E2212A7C0008A8B03 /* LauncherApplication.app in Copy Files */ = {isa = PBXBuildFile; fileRef = 92C5054E21FEC03B0084719A /* LauncherApplication.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
1921
929113F521F9D04100173149 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 929113F421F9D04100173149 /* AppDelegate.swift */; };
@@ -54,6 +56,8 @@
5456
08A5F86023AA085B00981CA5 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
5557
08A5F86323AA09F300981CA5 /* UserDefault+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserDefault+Extension.swift"; sourceTree = "<group>"; };
5658
08C20FDD23AABDD10035D978 /* HyperlinkTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HyperlinkTextField.swift; sourceTree = "<group>"; };
59+
08C20FDF23AB44E60035D978 /* Bundle+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extension.swift"; sourceTree = "<group>"; };
60+
08C20FE123AB452C0035D978 /* AboutViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AboutViewController.swift; sourceTree = "<group>"; };
5761
3CF14C81221FA49D0083D42B /* PreferencesWindowController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferencesWindowController.swift; sourceTree = "<group>"; };
5862
9220587D22127050008A8B03 /* Hidden.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = Hidden.entitlements; path = Hidden/Hidden.entitlements; sourceTree = "<group>"; };
5963
929113F121F9D04100173149 /* Hidden Bar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Hidden Bar.app"; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -139,13 +143,15 @@
139143
isa = PBXGroup;
140144
children = (
141145
08A5F86323AA09F300981CA5 /* UserDefault+Extension.swift */,
146+
08C20FDF23AB44E60035D978 /* Bundle+Extension.swift */,
142147
);
143148
path = Extensions;
144149
sourceTree = "<group>";
145150
};
146151
08C20FDC23AABC440035D978 /* About */ = {
147152
isa = PBXGroup;
148153
children = (
154+
08C20FE123AB452C0035D978 /* AboutViewController.swift */,
149155
);
150156
path = About;
151157
sourceTree = "<group>";
@@ -342,6 +348,7 @@
342348
buildActionMask = 2147483647;
343349
files = (
344350
92C97B8F220147FE0007559C /* Constant.swift in Sources */,
351+
08C20FE023AB44E60035D978 /* Bundle+Extension.swift in Sources */,
345352
08A5F85C23AA013100981CA5 /* SelectedSecond.swift in Sources */,
346353
08A5F86123AA085B00981CA5 /* Preferences.swift in Sources */,
347354
92C97B9122018C1F0007559C /* StatusBarController.swift in Sources */,
@@ -354,6 +361,7 @@
354361
92C97B8B220049D20007559C /* NSBarButtonItem+Extension.swift in Sources */,
355362
92C97B8D220058740007559C /* NSView+Extension.swift in Sources */,
356363
0842CDFB23A9FDD000D14BD4 /* GlobalKeybindingPreferences.swift in Sources */,
364+
08C20FE223AB452C0035D978 /* AboutViewController.swift in Sources */,
357365
08A5F86423AA09F300981CA5 /* UserDefault+Extension.swift in Sources */,
358366
);
359367
runOnlyForDeploymentPostprocessing = 0;
@@ -515,13 +523,14 @@
515523
CODE_SIGN_IDENTITY = "Mac Developer";
516524
CODE_SIGN_STYLE = Automatic;
517525
COMBINE_HIDPI_IMAGES = YES;
518-
DEVELOPMENT_TEAM = VGURA84Q2L;
526+
DEVELOPMENT_TEAM = W777S7V8TN;
519527
INFOPLIST_FILE = hidden/Info.plist;
520528
LD_RUNPATH_SEARCH_PATHS = (
521529
"$(inherited)",
522530
"@executable_path/../Frameworks",
523531
);
524532
MACOSX_DEPLOYMENT_TARGET = 10.13;
533+
MARKETING_VERSION = 1.3;
525534
PRODUCT_BUNDLE_IDENTIFIER = com.dwarvesv.minimalbar;
526535
PRODUCT_NAME = "$(TARGET_NAME)";
527536
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -537,13 +546,14 @@
537546
CODE_SIGN_IDENTITY = "Mac Developer";
538547
CODE_SIGN_STYLE = Automatic;
539548
COMBINE_HIDPI_IMAGES = YES;
540-
DEVELOPMENT_TEAM = "";
549+
DEVELOPMENT_TEAM = W777S7V8TN;
541550
INFOPLIST_FILE = hidden/Info.plist;
542551
LD_RUNPATH_SEARCH_PATHS = (
543552
"$(inherited)",
544553
"@executable_path/../Frameworks",
545554
);
546555
MACOSX_DEPLOYMENT_TARGET = 10.13;
556+
MARKETING_VERSION = 1.3;
547557
PRODUCT_BUNDLE_IDENTIFIER = com.dwarvesv.minimalbar;
548558
PRODUCT_NAME = "$(TARGET_NAME)";
549559
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -559,7 +569,7 @@
559569
CODE_SIGN_IDENTITY = "Mac Developer";
560570
CODE_SIGN_STYLE = Automatic;
561571
COMBINE_HIDPI_IMAGES = YES;
562-
DEVELOPMENT_TEAM = VGURA84Q2L;
572+
DEVELOPMENT_TEAM = W777S7V8TN;
563573
INFOPLIST_FILE = LauncherApplication/Info.plist;
564574
LD_RUNPATH_SEARCH_PATHS = (
565575
"$(inherited)",
@@ -582,7 +592,7 @@
582592
CODE_SIGN_IDENTITY = "Mac Developer";
583593
CODE_SIGN_STYLE = Automatic;
584594
COMBINE_HIDPI_IMAGES = YES;
585-
DEVELOPMENT_TEAM = VGURA84Q2L;
595+
DEVELOPMENT_TEAM = W777S7V8TN;
586596
INFOPLIST_FILE = LauncherApplication/Info.plist;
587597
LD_RUNPATH_SEARCH_PATHS = (
588598
"$(inherited)",

README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@
1515
## Hidden Bar
1616
Hidden Bar lets you hide menu bar items to give your Mac a cleaner look.
1717

18-
## Install
18+
<p align="center">
19+
<img width="500" src="img/screen1.png">
20+
<img width="500" src="img/screen2.png">
21+
</p>
22+
23+
24+
## 🚀 Install
1925

2026
[![AppStore](/img/appstore.png)](https://itunes.apple.com/app/hidden-bar/id1452453066)
2127

@@ -25,7 +31,7 @@ Hidden Bar lets you hide menu bar items to give your Mac a cleaner look.
2531
- Open and drag the app to the Applications folder.
2632
- Launch Hidden and drag the icon in your menu bar (hold CMD) to the right so it is between some other icons.
2733

28-
## Usage
34+
## 🕹 Usage
2935

3036
* `` + drag to move the Hidden icons around in the menu bar.
3137
* Click the Arrow icon to hide menu bar items.
@@ -34,6 +40,13 @@ Hidden Bar lets you hide menu bar items to give your Mac a cleaner look.
3440
<img src="img/tutorial.gif">
3541
</p>
3642

43+
## ✨<a href="https://github.com/dwarvesf/hidden/graphs/contributors">Contributors</a>
44+
45+
This project exists thanks to all the people who contribute. Thank you guys so much 👏
46+
[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/0)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/0)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/1)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/1)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/2)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/2)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/3)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/3)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/4)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/4)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/5)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/5)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/6)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/6)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/7)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/7)
47+
48+
Please read [this](CONTRIBUTING.md) before you make a contribution.
49+
3750
## Requirements
3851
macOS version >= 10.13
3952

0 commit comments

Comments
 (0)