Skip to content

Commit

Permalink
Merge branch 'refs/heads/releases/v1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Conventional Changelog Action committed Jul 25, 2024
2 parents 815a595 + a261b3f commit 195a829
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [1.3.0](https://github.com/leoli0605/npm-env-setup/compare/v1.2.5...v1.3.0) (2024-07-25)


### Features

* add new software entries for IINA, Ice, Rclone, and stats with installation instructions ([f27a208](https://github.com/leoli0605/npm-env-setup/commit/f27a2089d700ec8e02cda454c2c6baac0fd7bc27)), closes [#21](https://github.com/leoli0605/npm-env-setup/issues/21)



## [1.2.5](https://github.com/leoli0605/npm-env-setup/compare/v1.2.4...v1.2.5) (2024-05-15)


Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Additionally, it sets up some useful programming tools and utilities, ensuring t
| Revo Uninstaller | Windows 的軟體卸載工具 | **enable** |
| Spotify | - | **enable** |
| Telegram | - | **enable** |
| VLC | - | **enable** |
| VLC | - | disable |
| ffmepg | 影片處理 CLI 工具 | **enable** |
| yt-dlp | YouTube 影片下載 CLI 工具 | **enable** |
<!-- WINDOWS_LISTS_END -->
Expand Down Expand Up @@ -193,18 +193,22 @@ Additionally, it sets up some useful programming tools and utilities, ensuring t
| Fira Code | 好看的程式碼字型 | `force` |
| Google Drive | - | **enable** |
| Hugo | 靜態網站產生器 | **enable** |
| IINA | macOS 的影片播放器 | **enable** |
| Ice | Ice is a powerful menu bar management tool for macOS | **enable** |
| Inkscape | 免費向量繪圖軟體,類似 Adobe Illustrator | disable |
| Krita | 免費的數位繪圖軟體,類似 Adobe Photoshop | disable |
| Logi Options+ | - | disable |
| Logitech G HUB | - | **enable** |
| Microsoft Edge | - | **enable** |
| Notion | - | disable |
| OBS Studio | 開源的串流軟體 | **enable** |
| Rclone | 雲端檔案同步工具 | disable |
| Spotify | - | **enable** |
| Telegram | - | **enable** |
| The Unarchiver | macOS 的壓縮/解壓縮軟體 | **enable** |
| VLC | - | **enable** |
| VLC | - | disable |
| ffmepg | 影片處理 CLI 工具 | **enable** |
| stats | macOS system monitor in your menu bar | **enable** |
| ttc-source-han-serif | 思源宋體 | **enable** |
| yt-dlp | YouTube 影片下載 CLI 工具 | **enable** |
<!-- MACOS_LISTS_END -->
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leoli0605/env-setup",
"version": "1.2.5",
"version": "1.3.0",
"description": "\"\"",
"main": "./src/index.mjs",
"files": [
Expand Down
38 changes: 37 additions & 1 deletion packageData.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,24 @@
},
"type": "enable"
},
"IINA": {
"description": "macOS 的影片播放器",
"install": {
"linux": "",
"mac": "brew install --cask iina",
"windows": ""
},
"type": "enable"
},
"Ice": {
"description": "Ice is a powerful menu bar management tool for macOS",
"install": {
"linux": "",
"mac": "brew install jordanbaird-ice",
"windows": ""
},
"type": "enable"
},
"Inkscape": {
"description": "免費向量繪圖軟體,類似 Adobe Illustrator",
"install": {
Expand Down Expand Up @@ -632,6 +650,15 @@
},
"type": "enable"
},
"Rclone": {
"description": "雲端檔案同步工具",
"install": {
"linux": "",
"mac": "brew install rclone",
"windows": ""
},
"type": "disable"
},
"Revo Uninstaller": {
"description": "Windows 的軟體卸載工具",
"install": {
Expand Down Expand Up @@ -675,7 +702,7 @@
"mac": "brew install --cask vlc",
"windows": "choco install vlc -y"
},
"type": "enable"
"type": "disable"
},
"ffmepg": {
"description": "影片處理 CLI 工具",
Expand All @@ -686,6 +713,15 @@
},
"type": "enable"
},
"stats": {
"description": "macOS system monitor in your menu bar",
"install": {
"linux": "",
"mac": "brew install stats",
"windows": ""
},
"type": "enable"
},
"ttc-source-han-serif": {
"description": "思源宋體",
"install": {
Expand Down
10 changes: 10 additions & 0 deletions scripts/macos/macsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,13 @@ defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Show path bar in Finder
# //////////////////////////////////////////////////
defaults write com.apple.finder ShowPathbar -bool true

# DON'T Show hidden files in Finder
# //////////////////////////////////////////////////
defaults write com.apple.finder AppleShowAllFiles -bool false

killall Finder

# Allow apps from anywhere
# //////////////////////////////////////////////////
sudo spctl --master-disable

0 comments on commit 195a829

Please sign in to comment.