-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47e6b61
commit 64ea08e
Showing
7 changed files
with
185 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# pastebar-app | ||
|
||
## 0.5.0 | ||
|
||
### Minor Changes | ||
|
||
- Free and Open Source Release | ||
|
||
## 0.3.0 | ||
|
||
### Minor Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
# pastebar-app | ||
|
||
## 0.5.0 | ||
|
||
### Minor Changes | ||
|
||
- Free and Open Source Release | ||
|
||
## 0.3.0 | ||
|
||
### Minor Changes | ||
|
||
- New: Integrated Audio Player with playlist support for both local and remote MP3 files. | ||
New: Clipboard history now accessible in a separate window from the main interface. | ||
New: Automatically generate card links in clipboard history. | ||
New: Auto preview for X.com (Twitter) links in clips. | ||
New: Auto preview for Instagram links in clips. | ||
New: Auto preview for YouTube links in clipboard history and clips. | ||
Fixed: Issue with clearing clipboard history, now includes option to delete recent items. | ||
|
||
## 0.2.5 | ||
|
||
### Patch Changes | ||
|
||
- Added Application Submission Error Report Page | ||
|
||
## 0.2.4 | ||
|
||
### Patch Changes | ||
|
||
- Added Application Submission Error Report Page | ||
|
||
## 0.2.3 | ||
|
||
### Patch Changes | ||
|
||
- New Version Release Notes Markdown View | ||
|
||
## 0.2.2 | ||
|
||
### Patch Changes | ||
|
||
- React compiler added to build frontend ui | ||
|
||
## 0.2.1 | ||
|
||
### Patch Changes | ||
|
||
- Contact Form and Pro Support Form added | ||
|
||
## 0.2.0 | ||
|
||
### Minor Changes | ||
|
||
- Added Application Guided Tours | ||
|
||
### Patch Changes | ||
|
||
- Window size auto update in min size detection | ||
- Move to position added to context menu for clips and boards | ||
- Updated hardware uuid detection for Mac and Windows | ||
|
||
## 0.0.22 | ||
|
||
### Patch Changes | ||
|
||
- Larger view for board with expand/collapse functionality | ||
|
||
## 0.0.21 | ||
|
||
### Patch Changes | ||
|
||
- Code viewer for markdown added render HTML view | ||
|
||
## 0.0.20 | ||
|
||
### Patch Changes | ||
|
||
- Save clip saves clip name if edit active | ||
|
||
## 0.0.19 | ||
|
||
### Patch Changes | ||
|
||
- Added user preferences for clip notes hover delay | ||
- Edit clip name direct context menu | ||
- Auto check for system permissions in accessibility preferences on Mac OSX | ||
|
||
## 0.0.18 | ||
|
||
### Patch Changes | ||
|
||
- Code viewer for markdown added render HTML view | ||
- Clip notes popup maximum dimensions user preferences | ||
|
||
## 0.0.15 | ||
|
||
### Patch Changes | ||
|
||
- Added user preferences for clip notes hover delay | ||
|
||
## 0.0.14 | ||
|
||
### Patch Changes | ||
|
||
- Prioritized languages list settings | ||
- History and Menu panel size adaptive change | ||
|
||
## 0.0.13 | ||
|
||
### Patch Changes | ||
|
||
- Prioritized languages list settings | ||
|
||
## 0.0.12 | ||
|
||
### Patch Changes | ||
|
||
- History and Menu panel size adaptive change | ||
|
||
## 0.0.8 | ||
|
||
### Patch Changes | ||
|
||
- Update to Dark Theme for Global Search | ||
|
||
## 0.0.5 | ||
|
||
### Patch Changes | ||
|
||
- Added Lock Screen and Security Settings for Applcation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
const fs = require('fs') | ||
const path = require('path') | ||
|
||
// Read the submodule's package.json | ||
const submodulePath = path.join( | ||
__dirname, | ||
'..', | ||
'packages', | ||
'pastebar-app-ui', | ||
'package.json' | ||
) | ||
const submodulePackage = JSON.parse(fs.readFileSync(submodulePath, 'utf8')) | ||
|
||
// Read the root package.json | ||
const rootPath = path.join(__dirname, '..', 'package.json') | ||
const rootPackage = JSON.parse(fs.readFileSync(rootPath, 'utf8')) | ||
|
||
// Update the version in the root package.json | ||
rootPackage.version = submodulePackage.version | ||
|
||
// Write the updated root package.json | ||
fs.writeFileSync(rootPath, JSON.stringify(rootPackage, null, 2)) | ||
|
||
// Sync CHANGELOG.md if it exists | ||
const submoduleChangelogPath = path.join( | ||
__dirname, | ||
'..', | ||
'packages', | ||
'pastebar-app-ui', | ||
'CHANGELOG.md' | ||
) | ||
const rootChangelogPath = path.join(__dirname, '..', 'CHANGELOG.md') | ||
|
||
if (fs.existsSync(submoduleChangelogPath)) { | ||
fs.copyFileSync(submoduleChangelogPath, rootChangelogPath) | ||
console.log('CHANGELOG.md synced') | ||
} | ||
|
||
console.log(`Version synced to ${submodulePackage.version}`) |