Skip to content

Commit

Permalink
Release v2.0.5(19)
Browse files Browse the repository at this point in the history
Minor fixes.
  • Loading branch information
UeharaYou committed Apr 25, 2024
1 parent 57baf13 commit 0c5d4a8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build and Release macOS App
on:
workflow_dispatch:

# push:
# tags:
# - '*'
push:
tags:
- 'release'

jobs:
build_and_release:
Expand Down Expand Up @@ -49,10 +49,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ github.ref_name }}
release_name: ${{ github.event.head_commit.title }}
body: |
WARNING: THIS IS A TEST RELEASE!!!
${{ github.event.head_commit.message }}
draft: true
prerelease: false

Expand Down
4 changes: 2 additions & 2 deletions Hidden Bar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = 2.0.4;
MARKETING_VERSION = 2.0.5;
PRODUCT_BUNDLE_IDENTIFIER = moe.ueharayou.MinimalBar;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -596,7 +596,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = 2.0.4;
MARKETING_VERSION = 2.0.5;
PRODUCT_BUNDLE_IDENTIFIER = moe.ueharayou.MinimalBar;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion HiddenBar/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<key>LSUIElement</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2023 UeharaYou. All rights reserved.</string>
<string>Copyright © 2024 UeharaYou. All rights reserved.</string>
<key>NSMainStoryboardFile</key>
<string>Main</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion HiddenBar/en.lproj/InfoPlist.strings
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/* Copyright (human-readable) */
"NSHumanReadableCopyright" = "Copyright © 2023 UeharaYou. All rights reserved.";
"NSHumanReadableCopyright" = "Copyright © 2024 UeharaYou. All rights reserved.";
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ Original Version (v1.8): [![AppStore](img/appstore.svg)](https://itunes.apple.co

### Pre-built Packages

This version of Hidden Bar is NOT notarized. The GateKeeper will flag any non-notarized App as Untrusted and therefore prevent it from opening. Although you can override GateKeeper's decision, it is considered a bad habit while using your computer. Besides notarizing an app requires enrollments of Apple Developer Program, which currently is not the case for me. Therefore NO pre-built packages available.
Pre-built packages of Hidden Bar can be found [here](https://github.com/UeharaYou/HiddenBar/releases).

To test this version of Hidden Bar, you have to build it from source, which means you might also inspect the code yourself.
Notice: This version of Hidden Bar is NOT notarized. The GateKeeper will flag any non-notarized App as Untrusted and therefore prevent it from opening. Although you can override GateKeeper's decision, it is considered a bad habit while using your computer. Besides notarizing an app requires enrollments of Apple Developer Program, which currently is not the case for me.

For security reasons, it is STRONGLY RECOMMENDED to build your own copies from source, which means you might also inspect the code yourself.

For packages of the original Hidden Bar (up to v1.9), check out the original repo [here](https://github.com/dwarvesf/hidden).

Expand All @@ -45,7 +47,7 @@ To build this version of Hidden Bar, you have to have Xcode installed.

## 🕹 Usage

CAUTION: The usage of version of Hidden Bar is slightly different from the original one.
The usage of version of Hidden Bar is slightly different from the original one.

* `` + drag to move the Hidden icons around in the menu bar.
* Click the Arrow icon to hide menu bar items.
Expand Down

0 comments on commit 0c5d4a8

Please sign in to comment.